version 1.3, 2003/11/05 08:26:57 |
version 1.31, 2004/01/15 07:20:31 |
|
|
load("solve")$
|
load("solve")$ |
load("gr")$
|
load("gr")$ |
|
|
def nonposdegchk(Res){
|
#define EPS 1E-6 |
|
#define TINY 1E-20 |
for(I=0;I<length(Res);I++)
|
#define MAX_ITER 100 |
if(Res[I][1]<=0)
|
#define ROUND_THRESHOLD 0.4 |
return 0$
|
|
|
def rotate(A,I,J,K,L,C,S){ |
return 1$
|
|
}
|
X=A[I][J]; |
|
Y=A[K][L]; |
def resvars(Res,Vars){
|
A[I][J]=X*C-Y*S; |
|
A[K][L]=X*S+Y*C; |
ResVars=newvect(length(Vars),Vars)$
|
|
|
return 1; |
for(I=0;I<length(Res);I++){
|
} |
|
|
for(J=0;J<size(ResVars)[0];J++)
|
def jacobi(N,A,W){ |
if(Res[I][0]==ResVars[J])
|
|
break$
|
S=OFFDIAG=0.0; |
|
|
ResVars[J]=Res[I][1]$
|
for(J=0;J<N;J++){ |
}
|
|
|
for(K=0;K<N;K++) |
return(ResVars)$
|
W[J][K]=0.0; |
}
|
|
|
W[J][J]=1.0; |
def makeret1(Res,Vars){
|
S+=A[J][J]*A[J][J]; |
|
|
VarsNum=length(Vars)$
|
for(K=J+1;K<N;K++) |
|
OFFDIAG+=A[J][K]*A[J][K]; |
ResVec=newvect(VarsNum,Vars)$
|
} |
|
|
for(I=0,M=0;I<length(Res);I++){
|
TOLERANCE=EPS*EPS*(S/2+OFFDIAG); |
|
|
for(J=0;J<VarsNum;J++)
|
for(ITER=1;ITER<=MAX_ITER;ITER++){ |
if(Res[I][0]==Vars[J])
|
|
break$
|
OFFDIAG=0.0; |
|
for(J=0;J<N-1;J++) |
if(J<VarsNum){
|
for(K=J+1;K<N;K++) |
ResVec[J]=Res[I][1]$
|
OFFDIAG+=A[J][K]*A[J][K]; |
|
|
if(type(ResVec[J])==1){
|
if(OFFDIAG < TOLERANCE) |
if(M==0)
|
break; |
M=ResVec[J]$
|
|
else
|
for(J=0;J<N-1;J++){ |
if(ResVec[J]<M)
|
for(K=J+1;K<N;K++){ |
M=ResVec[J]$
|
|
}
|
if(dabs(A[J][K])<TINY) |
}
|
continue; |
|
|
}
|
T=(A[K][K]-A[J][J])/(2.0*A[J][K]); |
|
|
for(F=0,I=0;I<VarsNum;I++)
|
if(T>=0.0) |
if(type(ResVec[I])!=1){
|
T=1.0/(T+dsqrt(T*T+1)); |
F=1$
|
else |
break$
|
T=1.0/(T-dsqrt(T*T+1)); |
}
|
|
|
C=1.0/dsqrt(T*T+1); |
if(F==0)
|
|
for(I=0;I<VarsNum;I++)
|
S=T*C; |
ResVec[I]=ResVec[I]/M*1.0$
|
|
|
T*=A[J][K]; |
for(I=0;I<VarsNum;I++)
|
|
for(J=0;J<length(Vars);J++)
|
A[J][J]-=T; |
ResVec[I]=subst(ResVec[I],Vars[J],
|
A[K][K]+=T; |
strtov(rtostr(Vars[J])+"_deg"))$
|
A[J][K]=0.0; |
|
|
ResVec=cons(F,vtol(ResVec))$
|
for(I=0;I<J;I++) |
return ResVec$
|
rotate(A,I,J,I,K,C,S); |
}
|
|
|
for(I=J+1;I<K;I++) |
def junban1(A,B){
|
rotate(A,J,I,I,K,C,S); |
return (nmono(A)<nmono(B) ? -1:(nmono(A)>nmono(B) ? 1:0))$
|
|
}
|
for(I=K+1;I<N;I++) |
|
rotate(A,J,I,K,I,C,S); |
def junban2(A,B){
|
|
|
for(I=0;I<N;I++) |
for(I=0;I<size(A)[0];I++){
|
rotate(W,J,I,K,I,C,S); |
if(A[I]<B[I])
|
|
return 1$
|
} |
|
} |
if(A[I]>B[I])
|
} |
return -1$
|
|
}
|
if (ITER > MAX_ITER) |
|
return 0; |
return 0$
|
|
}
|
for(I=0;I<N-1;I++){ |
|
|
def roundret(V){
|
K=I; |
|
|
VN=length(V)$
|
T=A[K][K]; |
RET0=newvect(VN,V)$
|
|
|
for(J=I+1;J<N;J++) |
for(I=1;I<1000;I++){
|
if(A[J][J]>T){ |
RET1=I*RET0$
|
K=J; |
for(J=0;J<VN;J++){
|
T=A[K][K]; |
X=drint(RET1[J])$
|
} |
if(dabs(X-RET1[J])<0.2)
|
|
RET1[J]=X$
|
A[K][K]=A[I][I]; |
else
|
|
break$
|
A[I][I]=T; |
}
|
|
if(J==VN)
|
V=W[K]; |
break$
|
|
}
|
W[K]=W[I]; |
|
|
if(I==1000)
|
W[I]=V; |
return []$
|
} |
else
|
|
return RET1$
|
return 1; |
}
|
} |
|
|
def chkou(L,ExpMat,CHAGORD){
|
def interval2value(A,Vars){ |
|
|
P=1$
|
B=atl(A)$ |
F=ExpMat[L]$
|
|
|
if(length(B)>2){ |
for(I=0;I<L;I++){
|
print("bug")$ |
Q=ExpMat[L][CHAGORD[I]]$
|
return []$ |
for(J=0;J<size(ExpMat[0])[0];J++){
|
} |
ExpMat[L][CHAGORD[J]]=red((ExpMat[I][CHAGORD[I]]
|
else if(length(B)==0){ |
*ExpMat[L][CHAGORD[J]]-
|
if(fop(A)==0) |
Q*ExpMat[I][CHAGORD[J]])/P)$
|
return [Vars,1]$ |
}
|
else |
|
return []$ |
P=ExpMat[I][CHAGORD[I]]$
|
} |
}
|
else if(length(B)==1){ |
|
|
for(J=0;J<size(ExpMat[0])[0];J++)
|
C=fargs(B[0])$ |
if(ExpMat[L][CHAGORD[J]]!=0)
|
D=vars(C)$ |
break$
|
E=solve(C,D)$ |
|
|
if(J==size(ExpMat[0])[0])
|
if(fop(B[0])==15) |
return L$
|
return [Vars,E[0][1]+1]$ |
else{
|
else if(fop(B[0])==11) |
TMP=CHAGORD[L]$
|
return [Vars,E[0][1]-1]$ |
CHAGORD[L]=CHAGORD[J]$
|
else if(fop(B[0])==8) |
CHAGORD[J]=TMP$
|
return [Vars,E[0][1]]$ |
return (L+1)$
|
else |
}
|
return []$ |
}
|
} |
|
else{ |
def qcheck0(PolyList,Vars){
|
|
|
C=fargs(B[0])$ |
RET=[]$
|
D=vars(C)$ |
PolyListNum=length(PolyList)$
|
E=solve(C,D)$ |
VarsNum=length(Vars)$
|
|
|
C=fargs(B[1])$ |
ExpMat=newvect(VarsNum)$
|
D=vars(C)$ |
CHAGORD=newvect(VarsNum)$
|
F=solve(C,D)$ |
for(I=0;I<VarsNum;I++)
|
|
CHAGORD[I]=I$
|
return [Vars,(E[0][1]+F[0][1])/2]$ |
|
} |
L=0$
|
|
for(I=0;I<PolyListNum;I++){
|
} |
Poly=dp_ptod(PolyList[I],Vars)$
|
|
BASE0=dp_etov(dp_ht(Poly))$
|
def fixpointmain(F,Vars){ |
Poly=dp_rest(Poly)$
|
|
for(;Poly!=0;Poly=dp_rest(Poly)){
|
RET=[]$ |
ExpMat[L]=dp_etov(dp_ht(Poly))-BASE0$
|
for(I=length(Vars)-1;I>=1;I--){ |
L=chkou(L,ExpMat,CHAGORD)$
|
|
if(L==VarsNum-1){
|
for(H=[],J=0;J<I;J++) |
RET=cons(ExpMat,RET)$
|
H=cons(Vars[J],H)$ |
RET=cons(CHAGORD,RET)$
|
|
RET=cons(L,RET)$
|
G=interval2value(qe(ex(H,F)),Vars[I])$ |
return RET$
|
|
}
|
if(G==[]) |
}
|
return RET$ |
}
|
else |
|
RET=cons(G,RET)$ |
RET=cons(ExpMat,RET)$
|
|
RET=cons(CHAGORD,RET)$
|
F=subf(F,G[0],G[1])$ |
RET=cons(L,RET)$
|
} |
return RET$
|
|
}
|
G=interval2value(simpl(F),Vars[0])$ |
|
|
def inner(A,B){
|
if(G==[]) |
|
return RET$ |
SUM=0$
|
else |
for(I=0;I<size(A)[0];I++)
|
RET=cons(G,RET)$ |
SUM+=A[I]*B[I]$
|
|
|
return RET$ |
return SUM$
|
} |
}
|
|
|
|
def checktd(PolyList,Vars,ResVars){
|
def fixedpoint(A,FLAG){ |
|
|
PolyListNum=length(PolyList)$
|
Vars=vars(A)$ |
VarsNum=length(Vars)$
|
|
|
N=length(A)$ |
L=0$
|
|
for(I=0;I<PolyListNum;I++){
|
if (FLAG==0) |
Poly=dp_ptod(PolyList[I],Vars)$
|
for(F=@true,I=0;I < N; I++ ) { F = F @&& A[I] @> 0$ } |
J0=inner(dp_etov(dp_ht(Poly)),ResVars)$
|
else if (FLAG==1) |
Poly=dp_rest(Poly)$
|
for(F=@true,I=0;I < N; I++ ) { F = F @&& A[I] @< 0$ } |
for(;Poly!=0;Poly=dp_rest(Poly))
|
|
if(J0!=inner(dp_etov(dp_ht(Poly)),ResVars))
|
return fixpointmain(F,Vars)$ |
return 0$
|
} |
}
|
|
|
def junban(A,B){ |
return 1$
|
return (A<B ? 1:(A>B ? -1:0))$ |
}
|
} |
|
|
def getgcd(A,B){
|
def bsort(A){ |
|
|
VarsNumA=length(A)$
|
K=size(A)[0]-1$ |
VarsNumB=length(B)$
|
while(K>=0){ |
|
J=-1$ |
C=newvect(VarsNumB,B)$
|
for(I=1;I<=K;I++) |
|
if(A[I-1][0]<A[I][0]){ |
for(I=0;I<VarsNumA;I++){
|
J=I-1$ |
|
X=A[J]$ |
for(J=0;J<VarsNumB;J++)
|
A[J]=A[I]$ |
if(C[J]==A[I][0])
|
A[I]=X$ |
break$
|
} |
|
K=J$ |
C[J]=A[I][1]$
|
} |
}
|
return A$ |
|
} |
D=0$
|
|
for(I=0;I<VarsNumB;I++)
|
def wsort(A,B,C,ID){ |
D=gcd(D,C[I])$
|
|
|
D=newvect(length(B))$ |
if(D!=0){
|
for(I=0;I<length(B);I++) |
|
D[I]=[A[I],B[I],C[I]]$ |
for(I=0;I<VarsNumB;I++)
|
|
C[I]=red(C[I]/D)$
|
D=bsort(D)$ |
|
|
}
|
for(E=[],I=0;I<length(B);I++) |
|
E=cons(D[I][1],E)$ |
for(L=1,D=0,I=0;I<VarsNumB;I++){
|
E=reverse(E)$ |
|
|
if(type(C[I])==1){
|
for(F=[],I=0;I<length(B);I++) |
L=ilcm(L,dn(C[I]))$
|
F=cons(D[I][2],F)$ |
D=igcd(D,nm(C[I]))$
|
F=reverse(F)$ |
}
|
|
else
|
return [[ID,E,F]]$ |
break$
|
} |
|
|
}
|
def nonposdegchk(Res){ |
|
|
if(I==VarsNumB)
|
for(I=0;I<length(Res);I++) |
for(I=0;I<VarsNumB;I++)
|
if(Res[I][1]<=0) |
C[I]=C[I]*L/D$
|
return 0$ |
|
|
RET=newvect(VarsNumB)$
|
return 1$ |
for(I=0;I<VarsNumB;I++){
|
} |
RET[I]=newvect(2)$
|
|
RET[I][0]=B[I]$
|
def getgcd(A,B){ |
RET[I][1]=C[I]$
|
|
}
|
Anum=length(A)$ |
|
|
return vtol(map(vtol,RET))$
|
TMP=[]$ |
}
|
for(I=0;I<length(B);I++){ |
|
|
def qcheck(PolyList,Vars){
|
for(J=0;J<Anum;J++) |
|
if(B[I]==A[J][0]) |
RET=[]$
|
break; |
Res=qcheck0(PolyList,Vars)$
|
|
VarsNum=length(Vars)$
|
if(J==Anum) |
|
TMP=cons([B[I],B[I]],TMP)$ |
IndNum=Res[0]$
|
} |
CHAGORD=Res[1]$
|
A=append(A,TMP)$ |
ExpMat=Res[2]$
|
|
|
Anum=length(A)$ |
SolveList=[]$
|
A=map(ltov,A)$ |
for(I=0;I<IndNum;I++){
|
|
TMP=0$
|
for(D=0,I=0;I<Anum;I++) |
for(J=0;J<VarsNum;J++)
|
D=gcd(D,A[I][1])$ |
TMP+=ExpMat[I][CHAGORD[J]]*Vars[CHAGORD[J]]$
|
|
|
if(D!=0){ |
SolveList=cons(TMP,SolveList)$
|
for(I=0;I<Anum;I++) |
}
|
A[I][1]=red(A[I][1]/D)$ |
|
} |
VarsList=[]$
|
|
for(I=0;I<VarsNum;I++)
|
for(L=1,D=0,I=0;I<Anum;I++){ |
VarsList=cons(Vars[CHAGORD[I]],VarsList)$
|
if(type(TMP=dn(A[I][1]))==1) |
|
L=ilcm(L,TMP)$ |
Rea=vars(SolveList)$
|
|
Res=solve(reverse(SolveList),reverse(VarsList))$
|
if(type(TMP=nm(A[I][1]))==1) |
|
D=igcd(D,TMP)$ |
if(nonposdegchk(Res)){
|
} |
|
|
Res=getgcd(Res,Rea)$
|
for(I=0;I<Anum;I++) |
ResVars=resvars(Res,Vars)$
|
A[I][1]=A[I][1]*L$ |
|
|
if(checktd(PolyList,Vars,ResVars)==1){
|
if(D!=0){ |
|
|
for(J=0;J<length(Vars);J++)
|
for(I=0;I<Anum;I++) |
ResVars=map(subst,ResVars,Vars[J],
|
A[I][1]=A[I][1]/D$ |
strtov(rtostr(Vars[J])+"_deg"))$
|
} |
|
|
RET=cons([vtol(ResVars),ResVars,[]],RET)$
|
return map(vtol,A)$ |
return cons(1,RET)$
|
} |
}
|
|
else
|
def makeret(Res,Vars,FLAG){ |
return cons(0,RET)$
|
|
}
|
ResNum=length(Res)$ |
else
|
VarsNum=length(Vars)$ |
return cons(0,RET)$
|
|
|
ResVec=newvect(ResNum)$ |
}
|
|
|
if(FLAG) |
def weight(PolyList,Vars){
|
M=0$ |
|
else |
Vars0=vars(PolyList)$
|
M=-1$ |
Vars1=[]$
|
|
for(I=0;I<length(Vars);I++)
|
for(I=0;I<ResNum;I++){ |
if(member(Vars[I],Vars0))
|
if(member(Res[I][0],Vars)){ |
Vars1=cons(Vars[I],Vars1)$
|
ResVec[I]=Res[I][1]$ |
|
|
Vars=reverse(Vars1)$
|
if(FLAG){ |
|
if(type(ResVec[I])==1){ |
RET=[]$
|
if(M==0) |
|
M=ResVec[I]$ |
TMP=qcheck(PolyList,Vars)$
|
else |
|
if(ResVec[I]<M) |
if(car(TMP)==1){
|
M=ResVec[I]$ |
RET=cdr(TMP)$
|
} |
RET=cons(Vars,RET)$
|
else |
RET=cons(1,RET)$
|
M=-1$ |
return RET$
|
} |
}
|
} |
|
} |
dp_ord(2)$
|
|
|
|
PolyListNum=length(PolyList)$
|
if(M!=-1) |
VPolyList=qsort(newvect(PolyListNum,PolyList),junban1)$
|
ResVec=ResVec/M; |
VPolyList=vtol(VPolyList)$
|
|
|
RET=newvect(VarsNum,Vars)$ |
ExpMat=[]$
|
|
for(I=0;I<PolyListNum;I++)
|
for(I=0;I<ResNum;I++){ |
for(Poly=dp_ptod(VPolyList[I],Vars);Poly!=0;Poly=dp_rest(Poly))
|
for(J=0;J<VarsNum;J++) |
ExpMat=cons(dp_etov(dp_ht(Poly)),ExpMat)$
|
if(Vars[J]==Res[I][0]) |
|
break$ |
ExpMat=reverse(ExpMat)$
|
|
ExpMat=newvect(length(ExpMat),ExpMat)$
|
if(J<VarsNum) |
|
RET[J]=ResVec[I]$ |
|
} |
/* first */
|
|
|
for(I=0;I<VarsNum;I++) |
ExpMatRowNum=size(ExpMat)[0]$
|
if(type(RET[I])!=1) |
ExpMatColNum=size(ExpMat[0])[0]$
|
return [1,RET]$ |
ExtMatColNum=ExpMatColNum+PolyListNum$
|
|
|
return [0,RET]$ |
OneMat=newvect(PolyListNum+1,[0])$
|
} |
for(I=0,SUM=0;I<PolyListNum;I++){
|
|
SUM+=nmono(VPolyList[I])$
|
def roundret(V){ |
OneMat[I+1]=SUM$
|
|
}
|
VN=size(V)[0]$ |
|
|
RevOneMat=newvect(ExpMatRowNum)$
|
RET0=V$ |
for(I=0;I<PolyListNum;I++)
|
for(I=1;I<1000;I++){ |
for(J=OneMat[I];J<OneMat[I+1];J++)
|
RET1=I*RET0$ |
RevOneMat[J]=I$
|
for(J=0;J<VN;J++){ |
|
X=drint(RET1[J])$ |
NormMat=newmat(ExpMatColNum,ExtMatColNum)$
|
if(dabs(X-RET1[J])<ROUND_THRESHOLD) |
|
RET1[J]=X$ |
for(I=0;I<ExpMatColNum;I++)
|
else |
for(J=0;J<ExpMatColNum;J++)
|
break$ |
for(K=0;K<ExpMatRowNum;K++)
|
} |
NormMat[I][J]+=ExpMat[K][I]*ExpMat[K][J]$
|
if(J==VN) |
|
break$ |
for(I=0;I<ExpMatColNum;I++)
|
} |
for(J=0;J<PolyListNum-1;J++)
|
|
for(K=OneMat[J];K<OneMat[J+1];K++)
|
if(I==1000) |
NormMat[I][J+ExpMatColNum]-=ExpMat[K][I]$
|
return []$ |
|
else |
for(I=0;I<ExpMatColNum;I++)
|
return RET1$ |
for(J=OneMat[PolyListNum-1];J<OneMat[PolyListNum];J++)
|
} |
NormMat[I][ExtMatColNum-1]+=ExpMat[J][I]$
|
|
|
def chkou(L,ExpMat,CHAGORD){ |
NormMat2=newmat(PolyListNum-1,ExpMatColNum+1)$
|
|
|
for(P=1,I=0;I<L;I++){ |
for(I=0;I<PolyListNum-1;I++)
|
Q=ExpMat[L][CHAGORD[I]]$ |
for(J=0;J<ExpMatColNum;J++)
|
for(J=0;J<size(ExpMat[0])[0];J++){ |
for(K=OneMat[I];K<OneMat[I+1];K++)
|
ExpMat[L][CHAGORD[J]]=red((ExpMat[I][CHAGORD[I]] |
NormMat2[I][J]-=ExpMat[K][J]$
|
*ExpMat[L][CHAGORD[J]]- |
|
Q*ExpMat[I][CHAGORD[J]])/P)$ |
for(I=0;I<PolyListNum-1;I++)
|
} |
NormMat2[I][ExpMatColNum]=OneMat[I+1]-OneMat[I]$
|
|
|
P=ExpMat[I][CHAGORD[I]]$ |
ExtVars=Vars$
|
} |
for(I=0;I<PolyListNum-1;I++)
|
|
ExtVars=append(ExtVars,[uc()])$
|
for(J=0;J<size(ExpMat[0])[0];J++) |
|
if(ExpMat[L][CHAGORD[J]]!=0) |
SolveList=[]$
|
break$ |
for(I=0;I<ExpMatColNum;I++){
|
|
TMP=0$
|
if(J==size(ExpMat[0])[0]) |
for(J=0;J<ExtMatColNum-1;J++)
|
return L$ |
TMP+=NormMat[I][J]*ExtVars[J]$
|
else{ |
|
TMP=CHAGORD[L]$ |
TMP-=NormMat[I][ExtMatColNum-1]$
|
CHAGORD[L]=CHAGORD[J]$ |
SolveList=cons(TMP,SolveList)$
|
CHAGORD[J]=TMP$ |
}
|
return (L+1)$ |
|
} |
for(I=0;I<PolyListNum-1;I++){
|
} |
TMP=0$
|
|
for(J=0;J<ExpMatColNum;J++)
|
def qcheckmain(PolyList,Vars){ |
TMP+=NormMat2[I][J]*ExtVars[J]$
|
|
|
RET=[]$ |
TMP+=NormMat2[I][ExpMatColNum]*ExtVars[I+ExpMatColNum]$
|
PolyListNum=length(PolyList)$ |
|
VarsNum=length(Vars)$ |
SolveList=cons(TMP,SolveList)$
|
|
}
|
ExpMat=newvect(VarsNum)$ |
|
CHAGORD=newvect(VarsNum)$ |
Rea=vars(SolveList)$
|
for(I=0;I<VarsNum;I++) |
Res=solve(SolveList,reverse(ExtVars))$
|
CHAGORD[I]=I$ |
|
|
if(nonposdegchk(Res)){
|
L=0$ |
Res=getgcd(Res,Rea)$
|
for(I=0;I<PolyListNum;I++){ |
TMP1=makeret1(Res,Vars);
|
Poly=dp_ptod(PolyList[I],Vars)$ |
if(car(TMP1)==0){
|
BASE0=dp_etov(dp_ht(Poly))$ |
TMP2=roundret(cdr(TMP1));
|
Poly=dp_rest(Poly)$ |
TMP3=map(drint,cdr(TMP1))$
|
for(;Poly!=0;Poly=dp_rest(Poly)){ |
RET=cons([cdr(TMP1),newvect(length(TMP3),TMP3),TMP2],RET)$
|
ExpMat[L]=dp_etov(dp_ht(Poly))-BASE0$ |
}
|
L=chkou(L,ExpMat,CHAGORD)$ |
else
|
if(L==VarsNum-1) |
RET=cons([cdr(TMP1),[],[]],RET)$
|
return [L,CHAGORD,ExpMat]$ |
}
|
} |
|
} |
/* second */
|
|
|
return [L,CHAGORD,ExpMat]$ |
NormMat=newmat(ExpMatColNum,ExpMatColNum+1)$
|
} |
|
|
for(I=0;I<ExpMatColNum;I++)
|
def inner(A,B){ |
for(J=0;J<ExpMatColNum;J++)
|
|
for(K=0;K<ExpMatRowNum;K++)
|
SUM=0$ |
NormMat[I][J]+=ExpMat[K][I]*ExpMat[K][J]$
|
for(I=0;I<size(A)[0];I++) |
|
SUM+=A[I]*B[I]$ |
for(I=0;I<ExpMatColNum;I++)
|
|
for(J=0;J<ExpMatRowNum;J++)
|
return SUM$ |
NormMat[I][ExpMatColNum]+=ExpMat[J][I]$
|
} |
|
|
SolveList=[]$
|
def checktd(PolyList,Vars,ResVars){ |
for(I=0;I<ExpMatColNum;I++){
|
|
TMP=0$
|
PolyListNum=length(PolyList)$ |
for(J=0;J<ExpMatColNum;J++)
|
VarsNum=length(Vars)$ |
TMP+=NormMat[I][J]*Vars[J]$
|
|
|
L=0$ |
TMP-=NormMat[I][ExpMatColNum]$
|
for(I=0;I<PolyListNum;I++){ |
SolveList=cons(TMP,SolveList)$
|
Poly=dp_ptod(PolyList[I],Vars)$ |
}
|
J0=inner(dp_etov(dp_ht(Poly)),ResVars)$ |
|
Poly=dp_rest(Poly)$ |
Rea=vars(SolveList)$
|
for(;Poly!=0;Poly=dp_rest(Poly)) |
Res=solve(SolveList,Vars)$
|
if(J0!=inner(dp_etov(dp_ht(Poly)),ResVars)) |
|
return 0$ |
if(nonposdegchk(Res)){
|
} |
Res=getgcd(Res,Rea)$
|
|
TMP1=makeret1(Res,Vars);
|
return 1$ |
if(car(TMP1)==0){
|
} |
TMP2=roundret(cdr(TMP1));
|
|
TMP3=map(drint,cdr(TMP1))$
|
def value2(Vars,Ans){ |
RET=cons([cdr(TMP1),newvect(length(TMP3),TMP3),TMP2],RET)$
|
|
}
|
N=length(Vars)$ |
else
|
Res=newvect(N)$ |
RET=cons([cdr(TMP1),[],[]],RET)$
|
for(I=0;I<N;I++){ |
}
|
Res[I]=newvect(2)$ |
|
Res[I][0]=Vars[I]$ |
/* third */
|
Res[I][1]=Ans[I]$ |
|
} |
ExpMat=qsort(ExpMat,junban2)$
|
Res=map(vtol,Res)$ |
ExpMat2=[]$
|
Res=vtol(Res)$ |
for(I=0;I<size(ExpMat)[0];I++)
|
|
if(car(ExpMat2)!=ExpMat[I])
|
Res=getgcd(Res,Vars)$ |
ExpMat2=cons(ExpMat[I],ExpMat2)$
|
|
|
if(nonposdegchk(Res)){ |
ExpMat=newvect(length(ExpMat2),ExpMat2)$
|
TMP1=makeret(Res,Vars,1)$ |
ExpMatRowNum=size(ExpMat)[0]$
|
return vtol(TMP1[1])$ |
ExpMatColNum=size(ExpMat[0])[0]$
|
} |
|
else |
NormMat=newmat(ExpMatColNum,ExpMatColNum+1)$
|
return []$ |
|
} |
for(I=0;I<ExpMatColNum;I++)
|
|
for(J=0;J<ExpMatColNum;J++)
|
def qcheck(PolyList,Vars,FLAG){ |
for(K=0;K<ExpMatRowNum;K++)
|
|
NormMat[I][J]+=ExpMat[K][I]*ExpMat[K][J]$
|
RET=[]$ |
|
Res=qcheckmain(PolyList,Vars)$ |
for(I=0;I<ExpMatColNum;I++)
|
VarsNum=length(Vars)$ |
for(J=0;J<ExpMatRowNum;J++)
|
|
NormMat[I][ExpMatColNum]+=ExpMat[J][I]$
|
IndNum=Res[0]$ |
|
CHAGORD=Res[1]$ |
SolveList=[]$
|
ExpMat=Res[2]$ |
for(I=0;I<ExpMatColNum;I++){
|
|
TMP=0$
|
SolveList=[]$ |
for(J=0;J<ExpMatColNum;J++)
|
for(I=0;I<IndNum;I++){ |
TMP+=NormMat[I][J]*Vars[J]$
|
TMP=0$ |
|
for(J=0;J<VarsNum;J++) |
TMP-=NormMat[I][ExpMatColNum]$
|
TMP+=ExpMat[I][CHAGORD[J]]*Vars[CHAGORD[J]]$ |
SolveList=cons(TMP,SolveList)$
|
|
}
|
SolveList=cons(TMP,SolveList)$ |
|
} |
Rea=vars(SolveList)$
|
|
Res=solve(SolveList,Vars)$
|
Rea=vars(SolveList)$ |
|
|
if(nonposdegchk(Res)){
|
VarsList=[]$ |
Res=getgcd(Res,Rea)$
|
for(I=0;I<VarsNum;I++) |
TMP1=makeret1(Res,Vars);
|
if(member(TMP0=Vars[CHAGORD[I]],Rea)) |
if(car(TMP1)==0){
|
VarsList=cons(Vars[CHAGORD[I]],VarsList)$ |
TMP2=roundret(cdr(TMP1));
|
|
TMP3=map(drint,cdr(TMP1))$
|
Res=solve(reverse(SolveList),reverse(VarsList))$ |
RET=cons([cdr(TMP1),newvect(length(TMP3),TMP3),TMP2],RET)$
|
Res=getgcd(Res,Rea)$ |
}
|
|
else
|
if(nonposdegchk(Res)){ |
RET=cons([cdr(TMP1),[],[]],RET)$
|
|
}
|
TMP1=makeret(Res,Vars,0)$ |
|
|
RET=cons(Vars,reverse(RET))$
|
if(checktd(PolyList,Vars,TMP1[1])==1){ |
RET=cons(0,RET)$
|
|
return RET$
|
if(FLAG==0){ |
}
|
|
|
if(TMP1[0]==0) |
def average(PolyList,Vars){
|
RET=append(RET,wsort(TMP1[1],Vars,TMP1[1],0))$ |
|
else{ |
RET=[]$
|
|
dp_ord(2)$
|
TMP=vtol(TMP1[1])$ |
|
RET0=[]$ |
PolyListNum=length(PolyList)$
|
if((TMP0=fixedpoint(TMP,0))!=[]){ |
|
|
ExpMat=[]$
|
for(I=0;I<length(TMP0);I++) |
for(I=0;I<PolyListNum;I++)
|
TMP=map(subst,TMP,TMP0[I][0],TMP0[I][1])$ |
for(Poly=dp_ptod(PolyList[I],Vars);Poly!=0;Poly=dp_rest(Poly))
|
RET0=value2(Vars,TMP)$ |
ExpMat=cons(dp_etov(dp_ht(Poly)),ExpMat)$
|
if(RET0!=[]) |
|
RET0=wsort(RET0,Vars,RET0,1/10)$ |
ExpMat=reverse(ExpMat)$
|
} |
ExpMat=newvect(length(ExpMat),ExpMat)$
|
|
|
TMP=vtol(TMP1[1])$ |
ExpMat=qsort(ExpMat,junban2)$
|
if(RET0==[] && (TMP0=fixedpoint(TMP,1))!=[]){ |
ExpMat2=[]$
|
|
for(I=0;I<size(ExpMat)[0];I++)
|
for(I=0;I<length(TMP0);I++) |
if(car(ExpMat2)!=ExpMat[I])
|
TMP=map(subst,TMP,TMP0[I][0],TMP0[I][1])$ |
ExpMat2=cons(ExpMat[I],ExpMat2)$
|
RET0=value2(Vars,TMP)$ |
|
|
ExpMat=newvect(length(ExpMat2),ExpMat2)$
|
if(RET0!=[]) |
ExpMatRowNum=size(ExpMat)[0]$
|
RET0=wsort(RET0,Vars,RET0,1/10)$ |
ExpMatColNum=size(ExpMat[0])[0]$
|
} |
|
RET=append(RET,RET0)$ |
Res=newvect(ExpMatColNum);
|
} |
for(I=0;I<ExpMatColNum;I++)
|
} |
Res[I]=newvect(2,[Vars[I]])$
|
else if(FLAG==1) |
|
RET=append(RET,[[0,Vars,vtol(TMP1[1])]])$ |
for(I=0;I<ExpMatRowNum;I++)
|
} |
for(J=0;J<ExpMatColNum;J++)
|
} |
Res[J][1]+=ExpMat[I][J]$
|
|
|
return RET$ |
for(I=0;I<ExpMatColNum;I++)
|
} |
if(Res[I][1]==0)
|
|
Res[I][1]=1$
|
def leastsq(NormMat,ExpMat,Vars,FLAG,ID){ |
else
|
|
Res[I][1]=1/Res[I][1]$
|
RET=[]$ |
|
|
RET=cons(makeret(vtol(Res),Vars,1),RET)$
|
ExpMatRowNum=size(ExpMat)[0]$ |
RET=cons(Vars,RET)$
|
ExpMatColNum=size(ExpMat[0])[0]$ |
|
|
return RET$
|
if(NormMat==0){ |
}
|
NormMat=newmat(ExpMatColNum,ExpMatColNum)$ |
|
|
end$
|
for(I=0;I<ExpMatColNum;I++) |
|
for(J=I;J<ExpMatColNum;J++) |
|
for(K=0;K<ExpMatRowNum;K++) |
|
NormMat[I][J]+= |
|
ExpMat[K][I]*ExpMat[K][J]$ |
|
} |
|
|
|
BVec=newvect(ExpMatColNum)$ |
|
|
|
for(I=0;I<ExpMatColNum;I++) |
|
for(J=0;J<ExpMatRowNum;J++) |
|
BVec[I]+=ExpMat[J][I]$ |
|
|
|
SolveList=[]$ |
|
for(I=0;I<ExpMatColNum;I++){ |
|
TMP=0$ |
|
for(J=0;J<I;J++) |
|
TMP+=NormMat[J][I]*Vars[J]$ |
|
|
|
for(J=I;J<ExpMatColNum;J++) |
|
TMP+=NormMat[I][J]*Vars[J]$ |
|
|
|
TMP-=BVec[I]$ |
|
SolveList=cons(TMP,SolveList)$ |
|
} |
|
|
|
Rea=vars(SolveList)$ |
|
|
|
VarsList=[]$ |
|
for(I=0;I<length(Vars);I++) |
|
if(member(Vars[I],Rea)) |
|
VarsList=cons(Vars[I],VarsList)$ |
|
|
|
Res=solve(SolveList,VarsList)$ |
|
Res=getgcd(Res,Rea)$ |
|
|
|
if(nonposdegchk(Res)){ |
|
|
|
TMP1=makeret(Res,Vars,1)$ |
|
|
|
if(FLAG==0){ |
|
|
|
if(TMP1[0]==0){ |
|
|
|
TMP=roundret(TMP1[1])$ |
|
|
|
RET=append(RET,wsort(TMP1[1],Vars,map(drint,TMP1[1]*1.0),ID))$ |
|
|
|
if(TMP!=[]) |
|
RET=append(RET,wsort(TMP1[1],Vars,TMP,ID+1))$ |
|
} |
|
else{ |
|
|
|
TMP=vtol(TMP1[1])$ |
|
RET0=[]$ |
|
if((TMP0=fixedpoint(TMP,0))!=[]){ |
|
|
|
for(I=0;I<length(TMP0);I++) |
|
TMP=map(subst,TMP,TMP0[I][0],TMP0[I][1])$ |
|
RET0=value2(Vars,TMP)$ |
|
if(RET0!=[]) |
|
RET0=wsort(RET0,Vars,RET0,ID+1/10)$ |
|
} |
|
|
|
TMP=vtol(TMP1[1])$ |
|
if(RET0==[] && (TMP0=fixedpoint(TMP,1))!=[]){ |
|
|
|
for(I=0;I<length(TMP0);I++) |
|
TMP=map(subst,TMP,TMP0[I][0],TMP0[I][1])$ |
|
RET0=value2(Vars,TMP)$ |
|
|
|
if(RET0!=[]) |
|
RET0=wsort(RET0,Vars,RET0,ID+1/10)$ |
|
} |
|
|
|
RET=append(RET,RET0)$ |
|
} |
|
|
|
} |
|
else if(FLAG==1) |
|
RET=append(RET,[[ID,Vars,vtol(TMP1[1])]])$ |
|
} |
|
|
|
return RET$ |
|
} |
|
|
|
def unitweight(ExpMat,Vars,PolyListNum,OneMat,FLAG){ |
|
|
|
RET=[]$ |
|
|
|
ExpMatRowNum=size(ExpMat)[0]$ |
|
ExpMatColNum=size(ExpMat[0])[0]$ |
|
ExtMatColNum=ExpMatColNum+PolyListNum$ |
|
|
|
ExtVars=reverse(Vars)$ |
|
for(I=0;I<PolyListNum;I++) |
|
ExtVars=cons(uc(),ExtVars)$ |
|
|
|
ExtVars=reverse(ExtVars)$ |
|
|
|
NormMat0=newvect(ExpMatColNum)$ |
|
for(I=0;I<ExpMatColNum;I++) |
|
NormMat0[I]=newvect(ExpMatColNum)$ |
|
|
|
for(I=0;I<ExpMatColNum;I++) |
|
for(J=I;J<ExpMatColNum;J++) |
|
for(K=0;K<ExpMatRowNum;K++) |
|
NormMat0[I][J]+= |
|
ExpMat[K][I]* |
|
ExpMat[K][J]$ |
|
|
|
NormMat1=newvect(ExtMatColNum)$ |
|
for(I=0;I<ExtMatColNum;I++) |
|
NormMat1[I]=newvect(ExtMatColNum)$ |
|
|
|
|
|
WorkMat=newvect(ExtMatColNum)$ |
|
for(I=0;I<ExtMatColNum;I++) |
|
WorkMat[I]=newvect(ExtMatColNum)$ |
|
|
|
|
|
for(I=0;I<ExpMatColNum;I++) |
|
for(J=I;J<ExpMatColNum;J++) |
|
NormMat1[I][J]=NormMat0[I][J]$ |
|
|
|
for(I=0;I<ExpMatColNum;I++) |
|
for(J=0;J<PolyListNum;J++) |
|
for(K=OneMat[J];K<OneMat[J+1];K++) |
|
NormMat1[I][J+ExpMatColNum]-=ExpMat[K][I]$ |
|
|
|
for(I=0;I<PolyListNum;I++) |
|
NormMat1[I+ExpMatColNum][I+ExpMatColNum]=OneMat[I+1]-OneMat[I]$ |
|
|
|
if(jacobi(ExtMatColNum,NormMat1,WorkMat)){ |
|
|
|
Res=newvect(ExtMatColNum)$ |
|
for(I=0;I<ExtMatColNum;I++){ |
|
Res[I]=newvect(2)$ |
|
Res[I][0]=ExtVars[I]$ |
|
Res[I][1]=WorkMat[ExtMatColNum-1][I]$ |
|
} |
|
|
|
if(nonposdegchk(Res)){ |
|
|
|
TMP1=makeret(Res,Vars,1)$ |
|
|
|
if(FLAG==0){ |
|
TMP=roundret(TMP1[1])$ |
|
|
|
RET=append(RET,wsort(TMP1[1],Vars,map(drint,TMP1[1]*1.0),1))$ |
|
|
|
if(TMP!=[]) |
|
RET=append(RET,wsort(TMP1[1],Vars,TMP,2))$ |
|
} |
|
else if(FLAG==1) |
|
RET=append(RET,[[1,Vars,vtol(TMP1[1])]])$ |
|
} |
|
} |
|
|
|
return [NormMat0,RET]$ |
|
} |
|
|
|
def weight(PolyList,Vars,FLAG){ |
|
|
|
Vars0=vars(PolyList)$ |
|
Vars1=[]$ |
|
for(I=0;I<length(Vars);I++) |
|
if(member(Vars[I],Vars0)) |
|
Vars1=cons(Vars[I],Vars1)$ |
|
|
|
Vars=reverse(Vars1)$ |
|
|
|
RET=[]$ |
|
|
|
TMP=qcheck(PolyList,Vars,FLAG)$ |
|
|
|
if(TMP!=[]){ |
|
RET=append(RET,TMP)$ |
|
return RET$ |
|
} |
|
|
|
dp_ord(2)$ |
|
|
|
PolyListNum=length(PolyList)$ |
|
|
|
OneMat=newvect(PolyListNum+1,[0])$ |
|
ExpMat=[]$ |
|
for(I=0;I<PolyListNum;I++){ |
|
for(Poly=dp_ptod(PolyList[I],Vars); |
|
Poly!=0;Poly=dp_rest(Poly)){ |
|
ExpMat=cons(dp_etov(dp_ht(Poly)),ExpMat)$ |
|
} |
|
OneMat[I+1]=length(ExpMat)$ |
|
} |
|
|
|
ExpMat=reverse(ExpMat)$ |
|
ExpMat=newvect(length(ExpMat),ExpMat)$ |
|
|
|
TMP=unitweight(ExpMat,Vars,PolyListNum,OneMat,FLAG)$ |
|
|
|
RET=append(RET,TMP[1])$ |
|
|
|
TMP0=leastsq(TMP[0],ExpMat,Vars,FLAG,3)$ |
|
|
|
RET=append(RET,TMP0)$ |
|
|
|
ExpMat=qsort(ExpMat,junban)$ |
|
|
|
ExpMat2=[]$ |
|
for(I=0;I<size(ExpMat)[0];I++) |
|
if(car(ExpMat2)!=ExpMat[I]) |
|
ExpMat2=cons(ExpMat[I],ExpMat2)$ |
|
|
|
if(size(ExpMat)[0]!=length(ExpMat2)){ |
|
ExpMat=newvect(length(ExpMat2),ExpMat2)$ |
|
RET=append(RET,leastsq(0,ExpMat,Vars,FLAG,5))$ |
|
} |
|
else{ |
|
TMP0=map(ltov,TMP0)$ |
|
|
|
for(I=0;I<length(TMP0);I++) |
|
if(TMP0[I][0]==3) |
|
TMP0[I][0]=5$ |
|
else if(TMP0[I][0]==4) |
|
TMP0[I][0]=6$ |
|
|
|
TMP0=map(vtol,TMP0)$ |
|
|
|
RET=append(RET,TMP0)$ |
|
} |
|
|
|
return RET$ |
|
} |
|
|
|
end$ |