version 1.3, 2001/05/04 01:06:24 |
version 1.5, 2005/07/03 11:08:54 |
|
|
/* $OpenXM: OpenXM/src/kan96xx/Kan/output.c,v 1.2 2000/01/16 07:55:40 takayama Exp $ */ |
/* $OpenXM: OpenXM/src/kan96xx/Kan/output.c,v 1.4 2003/08/26 12:46:05 takayama Exp $ */ |
#include <stdio.h> |
#include <stdio.h> |
|
#include <stdlib.h> |
|
#include <string.h> |
#include "datatype.h" |
#include "datatype.h" |
#include "stackm.h" |
#include "stackm.h" |
#include "extern.h" |
#include "extern.h" |
|
|
if (f->m->e[i].x || f->m->e[i].D) return(0); |
if (f->m->e[i].x || f->m->e[i].D) return(0); |
} |
} |
return(1); |
return(1); |
|
} |
|
|
|
int isConstantAll(POLY f) |
|
{ |
|
int i; |
|
int n; |
|
if (f == POLYNULL) return(1); |
|
while (f != POLYNULL) { |
|
if (!isConstant(f)) return 0; |
|
f = f->next; |
|
} |
|
return 1; |
} |
} |
|
|
void errorOutput(s) |
void errorOutput(s) |