version 1.7, 2011/10/05 05:46:14 |
version 1.8, 2020/10/06 11:33:46 |
|
|
/* $OpenXM: OpenXM/src/kan96xx/Kan/output.c,v 1.6 2006/12/21 05:29:49 takayama Exp $ */ |
/* $OpenXM: OpenXM/src/kan96xx/Kan/output.c,v 1.7 2011/10/05 05:46:14 takayama Exp $ */ |
#include <stdio.h> |
#include <stdio.h> |
#include <stdlib.h> |
#include <stdlib.h> |
#include <string.h> |
#include <string.h> |
Line 229 char *KPOLYToString(f) |
|
Line 229 char *KPOLYToString(f) |
|
return(POLYToString(f,OutputStyle,0)); |
return(POLYToString(f,OutputStyle,0)); |
} |
} |
|
|
isOne(c) |
int isOne(c) |
struct coeff *c; |
struct coeff *c; |
{ |
{ |
switch(c->tag) { |
switch(c->tag) { |
|
|
errorCoeff("not yet"); |
errorCoeff("not yet"); |
} |
} |
} |
} |
isMinusOne(c) |
int isMinusOne(c) |
struct coeff *c; |
struct coeff *c; |
{ |
{ |
switch(c->tag) { |
switch(c->tag) { |
|
|
} |
} |
|
|
} |
} |
isNegative(c) |
int isNegative(c) |
struct coeff *c; |
struct coeff *c; |
{ |
{ |
switch(c->tag) { |
switch(c->tag) { |
|
|
} |
} |
} |
} |
|
|
isConstant(f) |
int isConstant(f) |
POLY f; |
POLY f; |
{ |
{ |
int i; |
int i; |