1 | #ifndef IPSHELL_H |
---|
2 | #define IPSHELL_H |
---|
3 | /**************************************** |
---|
4 | * Computer Algebra System SINGULAR * |
---|
5 | ****************************************/ |
---|
6 | /* $Id$ */ |
---|
7 | /* |
---|
8 | * ABSTRACT |
---|
9 | */ |
---|
10 | #include <stdio.h> |
---|
11 | //#include <kernel/structs.h> |
---|
12 | #include <kernel/ideals.h> |
---|
13 | #include <Singular/lists.h> |
---|
14 | |
---|
15 | struct _ssubexpr; |
---|
16 | typedef struct _ssubexpr *Subexpr; |
---|
17 | |
---|
18 | BOOLEAN spectrumProc ( leftv,leftv ); |
---|
19 | BOOLEAN spectrumfProc( leftv,leftv ); |
---|
20 | BOOLEAN spaddProc ( leftv,leftv,leftv ); |
---|
21 | BOOLEAN spmulProc ( leftv,leftv,leftv ); |
---|
22 | BOOLEAN semicProc ( leftv,leftv,leftv ); |
---|
23 | BOOLEAN semicProc3 ( leftv,leftv,leftv,leftv ); |
---|
24 | |
---|
25 | extern leftv iiCurrArgs; |
---|
26 | extern idhdl iiCurrProc; |
---|
27 | extern int iiOp; /* the current operation*/ |
---|
28 | extern const char * currid; |
---|
29 | extern int iiRETURNEXPR_len; |
---|
30 | extern sleftv *iiRETURNEXPR; |
---|
31 | #ifdef USE_IILOCALRING |
---|
32 | extern ring *iiLocalRing; |
---|
33 | #endif |
---|
34 | //extern cmdnames cmds[]; |
---|
35 | extern const char *lastreserved; |
---|
36 | extern const char *singular_date; /* tesths.cc, set by final compile */ |
---|
37 | |
---|
38 | extern BOOLEAN yyInRingConstruction; /* 1: during ring construction */ |
---|
39 | |
---|
40 | int IsCmd(const char *n, int & tok); |
---|
41 | |
---|
42 | BOOLEAN iiPStart(idhdl pn, sleftv * sl); |
---|
43 | BOOLEAN iiEStart(char* example, procinfo *pi); |
---|
44 | BOOLEAN iiAllStart(procinfov pi, char *p,feBufferTypes t, int l); |
---|
45 | void type_cmd(leftv v); |
---|
46 | void test_cmd(int i); |
---|
47 | void list_cmd(int typ, const char* what, const char * prefix, |
---|
48 | BOOLEAN iterate, BOOLEAN fullname=FALSE); |
---|
49 | //char * iiStringMatrix(matrix im, int dim, char ch=','); |
---|
50 | void killlocals(int v); |
---|
51 | int exprlist_length(leftv v); |
---|
52 | const char * Tok2Cmdname(int i); |
---|
53 | const char * iiTwoOps(int t); |
---|
54 | int IsPrime(int i); |
---|
55 | |
---|
56 | BOOLEAN iiWRITE(leftv res,leftv exprlist); |
---|
57 | BOOLEAN iiExport(leftv v, int toLev); |
---|
58 | BOOLEAN iiExport(leftv v, int toLev, idhdl roothdl); |
---|
59 | BOOLEAN iiInternalExport (leftv v, int toLev, idhdl roothdl); |
---|
60 | char * iiGetLibName(procinfov v); |
---|
61 | char * iiGetLibProcBuffer( procinfov pi, int part=1 ); |
---|
62 | char * iiProcName(char *buf, char & ct, char* &e); |
---|
63 | char * iiProcArgs(char *e,BOOLEAN withParenth); |
---|
64 | BOOLEAN iiLibCmd( char *newlib, BOOLEAN autoexport, BOOLEAN tellerror, BOOLEAN force ); |
---|
65 | /* sees wheter library lib has already been loaded |
---|
66 | if yes, writes filename of lib into where and returns TRUE, |
---|
67 | if no, returns FALSE |
---|
68 | */ |
---|
69 | BOOLEAN iiLocateLib(const char* lib, char* where); |
---|
70 | leftv iiMap(map theMap, const char * what); |
---|
71 | void iiMakeResolv(resolvente r, int length, int rlen, char * name, int typ0, |
---|
72 | intvec ** weights=NULL); |
---|
73 | BOOLEAN jjMINRES(leftv res, leftv v); |
---|
74 | BOOLEAN jjBETTI(leftv res, leftv v); |
---|
75 | BOOLEAN jjBETTI2(leftv res, leftv u, leftv v); |
---|
76 | BOOLEAN jjBETTI2_ID(leftv res, leftv u, leftv v); |
---|
77 | BOOLEAN jjIMPORTFROM(leftv res, leftv u, leftv v); |
---|
78 | BOOLEAN jjLIST_PL(leftv res, leftv v); |
---|
79 | |
---|
80 | BOOLEAN jjVARIABLES_P(leftv res, leftv u); |
---|
81 | BOOLEAN jjVARIABLES_ID(leftv res, leftv u); |
---|
82 | |
---|
83 | int iiRegularity(lists L); |
---|
84 | leftv singular_system(sleftv h); |
---|
85 | BOOLEAN jjSYSTEM(leftv res, leftv v); |
---|
86 | void iiDebug(); |
---|
87 | BOOLEAN iiCheckRing(int i); |
---|
88 | poly iiHighCorner(ideal i, int ak); |
---|
89 | char * iiConvName(const char *libname); |
---|
90 | BOOLEAN iiLoadLIB(FILE *fp, char *libnamebuf, char *newlib, |
---|
91 | idhdl pl, BOOLEAN autoexport, BOOLEAN tellerror); |
---|
92 | |
---|
93 | // converts a resolution into a list of modules |
---|
94 | lists syConvRes(syStrategy syzstr,BOOLEAN toDel=FALSE,int add_row_shift=0); |
---|
95 | // converts a list of modules into a minimal resolution |
---|
96 | syStrategy syForceMin(lists li); |
---|
97 | // converts a list of modules into a resolution |
---|
98 | syStrategy syConvList(lists li,BOOLEAN toDel); |
---|
99 | |
---|
100 | void rSetHdl(idhdl h); |
---|
101 | |
---|
102 | |
---|
103 | /* ================================================================== */ |
---|
104 | /* Expressions : */ |
---|
105 | BOOLEAN iiExprArith1(leftv res, sleftv* a, int op); |
---|
106 | BOOLEAN iiExprArith2(leftv res, sleftv* a, int op, sleftv* b, |
---|
107 | BOOLEAN proccall=FALSE); |
---|
108 | BOOLEAN iiExprArith3(leftv res, int op, leftv a, leftv b, leftv c); |
---|
109 | BOOLEAN iiExprArithM(leftv res, sleftv* a, int op); |
---|
110 | |
---|
111 | typedef BOOLEAN (*proc1)(leftv,leftv); |
---|
112 | |
---|
113 | #ifdef __GNUC__ |
---|
114 | #if (__GNUC__ < 3) |
---|
115 | #define INIT_BUG 1 |
---|
116 | void jjInitTab1(); |
---|
117 | #endif |
---|
118 | #endif |
---|
119 | |
---|
120 | #ifdef GENTABLE |
---|
121 | typedef char * (*Proc1)(char *); |
---|
122 | struct sValCmd1 |
---|
123 | { |
---|
124 | proc1 p; |
---|
125 | short cmd; |
---|
126 | short res; |
---|
127 | short arg; |
---|
128 | short valid_for; |
---|
129 | }; |
---|
130 | |
---|
131 | typedef BOOLEAN (*proc2)(leftv,leftv,leftv); |
---|
132 | struct sValCmd2 |
---|
133 | { |
---|
134 | proc2 p; |
---|
135 | short cmd; |
---|
136 | short res; |
---|
137 | short arg1; |
---|
138 | short arg2; |
---|
139 | short valid_for; |
---|
140 | }; |
---|
141 | |
---|
142 | typedef BOOLEAN (*proc3)(leftv,leftv,leftv,leftv); |
---|
143 | struct sValCmd3 |
---|
144 | { |
---|
145 | proc3 p; |
---|
146 | short cmd; |
---|
147 | short res; |
---|
148 | short arg1; |
---|
149 | short arg2; |
---|
150 | short arg3; |
---|
151 | short valid_for; |
---|
152 | }; |
---|
153 | struct sValCmdM |
---|
154 | { |
---|
155 | proc1 p; |
---|
156 | short cmd; |
---|
157 | short res; |
---|
158 | short number_of_args; /* -1: any, -2: any >0, .. */ |
---|
159 | short valid_for; |
---|
160 | }; |
---|
161 | extern struct sValCmd2 dArith2[]; |
---|
162 | extern struct sValCmd1 dArith1[]; |
---|
163 | extern struct sValCmd3 dArith3[]; |
---|
164 | extern struct sValCmdM dArithM[]; |
---|
165 | #endif |
---|
166 | |
---|
167 | /* ================================================================== */ |
---|
168 | /* Assigments : */ |
---|
169 | BOOLEAN iiAssign(leftv left, leftv right); |
---|
170 | |
---|
171 | typedef BOOLEAN (*proci)(leftv,leftv,Subexpr); |
---|
172 | struct sValAssign_sys |
---|
173 | { |
---|
174 | proc1 p; |
---|
175 | short res; |
---|
176 | short arg; |
---|
177 | }; |
---|
178 | |
---|
179 | struct sValAssign |
---|
180 | { |
---|
181 | proci p; |
---|
182 | short res; |
---|
183 | short arg; |
---|
184 | }; |
---|
185 | |
---|
186 | BOOLEAN iiParameter(leftv p); |
---|
187 | BOOLEAN iiAlias(leftv p); |
---|
188 | /* ================================================================== */ |
---|
189 | int iiDeclCommand(leftv sy, leftv name, int lev, int t, idhdl* root, |
---|
190 | BOOLEAN isring = FALSE, BOOLEAN init_b=TRUE); |
---|
191 | sleftv * iiMake_proc(idhdl pn, package pack, sleftv* sl); |
---|
192 | // from misc.cc: |
---|
193 | char * showOption(); |
---|
194 | BOOLEAN setOption(leftv res, leftv v); |
---|
195 | /* ================================================================== */ |
---|
196 | char * versionString(); |
---|
197 | /* ================================================================== */ |
---|
198 | void singular_example(char *str); |
---|
199 | |
---|
200 | BOOLEAN iiTryLoadLib(leftv v, const char *id); |
---|
201 | |
---|
202 | int iiAddCproc(char *libname, char *procname, BOOLEAN pstatic, |
---|
203 | BOOLEAN(*func)(leftv res, leftv v)); |
---|
204 | |
---|
205 | void iiCheckPack(package &p); |
---|
206 | #ifndef NDEBUG |
---|
207 | void checkall(); |
---|
208 | #endif |
---|
209 | void rSetHdl(idhdl h); |
---|
210 | ring rInit(sleftv* pn, sleftv* rv, sleftv* ord); |
---|
211 | idhdl rFindHdl(ring r, idhdl n, idhdl w); |
---|
212 | void rKill(idhdl h); |
---|
213 | void rKill(ring r); |
---|
214 | |
---|
215 | #endif |
---|
216 | |
---|