| version 1.15, 2003/08/18 11:59:56 |
version 1.19, 2003/12/05 13:51:31 |
|
|
| /* $OpenXM: OpenXM/src/kan96xx/Kan/kanExport0.c,v 1.14 2003/07/14 12:49:52 takayama Exp $ */ |
/* $OpenXM: OpenXM/src/kan96xx/Kan/kanExport0.c,v 1.18 2003/08/26 12:46:05 takayama Exp $ */ |
| #include <stdio.h> |
#include <stdio.h> |
| #include "datatype.h" |
#include "datatype.h" |
| #include "stackm.h" |
#include "stackm.h" |
| Line 19 int SerialCurrent = -1; /* Current Serial number of t |
|
| Line 19 int SerialCurrent = -1; /* Current Serial number of t |
|
| |
|
| int ReverseOutputOrder = 1; |
int ReverseOutputOrder = 1; |
| int WarningNoVectorVariable = 1; |
int WarningNoVectorVariable = 1; |
| |
extern int QuoteMode; |
| |
|
| /** :arithmetic **/ |
/** :arithmetic **/ |
| struct object KooAdd(ob1,ob2) |
struct object KooAdd(ob1,ob2) |
| Line 142 struct object KooAdd(ob1,ob2) |
|
| Line 143 struct object KooAdd(ob1,ob2) |
|
| |
|
| |
|
| default: |
default: |
| warningKan("KooAdd() has not supported yet these objects.\n"); |
if (QuoteMode) { |
| |
rob = addTree(ob1,ob2); |
| |
}else{ |
| |
warningKan("KooAdd() has not supported yet these objects.\n"); |
| |
} |
| break; |
break; |
| } |
} |
| return(rob); |
return(rob); |
| Line 2242 struct object KgbExtension(struct object obj) |
|
| Line 2247 struct object KgbExtension(struct object obj) |
|
| POLY f; |
POLY f; |
| int m,i; |
int m,i; |
| struct pairOfPOLY pf; |
struct pairOfPOLY pf; |
| |
struct coeff *cont; |
| |
|
| if (obj.tag != Sarray) errorKan1("%s\n","KgbExtension(): The argument must be an array."); |
if (obj.tag != Sarray) errorKan1("%s\n","KgbExtension(): The argument must be an array."); |
| size = getoaSize(obj); |
size = getoaSize(obj); |
| Line 2321 struct object KgbExtension(struct object obj) |
|
| Line 2327 struct object KgbExtension(struct object obj) |
|
| errorKan1("%s\n","The datatype of the argument mismatch: [(isConstant) polynomial] gbext"); |
errorKan1("%s\n","The datatype of the argument mismatch: [(isConstant) polynomial] gbext"); |
| } |
} |
| return(KpoInteger(isConstant(KopPOLY(obj1)))); |
return(KpoInteger(isConstant(KopPOLY(obj1)))); |
| |
}else if (strcmp(key,"isConstantAll")==0) { |
| |
if (size != 2) errorKan1("%s\n","[(isConstantAll) poly ] gbext bool"); |
| |
obj1 = getoa(obj,1); |
| |
if (obj1.tag != Spoly) { |
| |
errorKan1("%s\n","The datatype of the argument mismatch: [(isConstantAll) polynomial] gbext"); |
| |
} |
| |
return(KpoInteger(isConstantAll(KopPOLY(obj1)))); |
| }else if (strcmp(key,"schreyerSkelton") == 0) { |
}else if (strcmp(key,"schreyerSkelton") == 0) { |
| if (size != 2) errorKan1("%s\n","[(schreyerSkelton) array_of_poly ] gbext array"); |
if (size != 2) errorKan1("%s\n","[(schreyerSkelton) array_of_poly ] gbext array"); |
| obj1 = getoa(obj,1); |
obj1 = getoa(obj,1); |
| Line 2355 struct object KgbExtension(struct object obj) |
|
| Line 2368 struct object KgbExtension(struct object obj) |
|
| obj1 = getoa(obj,1); |
obj1 = getoa(obj,1); |
| if (obj1.tag != Spoly) errorKan1("%s\n","[(isOrdered) poly] gbext poly"); |
if (obj1.tag != Spoly) errorKan1("%s\n","[(isOrdered) poly] gbext poly"); |
| return(KisOrdered(obj1)); |
return(KisOrdered(obj1)); |
| |
}else if (strcmp(key,"reduceContent")==0) { |
| |
if (size != 2) errorKan1("%s\n","[(reduceContent) poly1 ] gbext."); |
| |
obj1 = getoa(obj,1); |
| |
if (obj1.tag != Spoly) |
| |
errorKan1("%s\n","[(reduceContent) poly1 ] gbext."); |
| |
f1 = KopPOLY(obj1); |
| |
rob = newObjectArray(2); |
| |
f1 = reduceContentOfPoly(f1,&cont); |
| |
putoa(rob,0,KpoPOLY(f1)); |
| |
if (f1 == POLYNULL) { |
| |
putoa(rob,1,KpoPOLY(f1)); |
| |
}else{ |
| |
putoa(rob,1,KpoPOLY(newCell(cont,newMonomial(f1->m->ringp)))); |
| |
} |
| |
}else if (strcmp(key,"ord_ws_all")==0) { |
| |
if (size != 3) errorKan1("%s\n","[(ord_ws_all) fv wv] gbext"); |
| |
obj1 = getoa(obj,1); |
| |
obj2 = getoa(obj,2); |
| |
rob = KordWsAll(obj1,obj2); |
| }else { |
}else { |
| errorKan1("%s\n","gbext : unknown tag."); |
errorKan1("%s\n","gbext : unknown tag."); |
| } |
} |