source: git/Singular/ipshell.h @ dcd92d

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