Changeset 15ff9a in git
- Timestamp:
- Aug 12, 2011, 5:44:15 PM (12 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'a800fe4b3e9d37a38c5a10cc0ae9dfa0c15a4ee6')
- Children:
- c10515350d72537c759f372977e1d69188eed976
- Parents:
- 6cc7f5d54a92bff33c3baf595af86929d31cd9d3
- git-author:
- Hans Schoenemann <hannes@mathematik.uni-kl.de>2011-08-12 17:44:15+02:00
- git-committer:
- Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2011-11-09 13:24:02+01:00
- Files:
-
- 1 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/iparith.cc
r6cc7f5 r15ff9a 60 60 #include <kernel/linearAlgebra.h> 61 61 #include <Singular/misc_ip.h> 62 #include <Singular/linearAlgebra_ip.h> 62 63 #ifdef HAVE_FACTORY 63 64 # include <polys/clapsing.h> … … 85 86 #ifdef HAVE_PLURAL 86 87 #include <kernel/ratgring.h> 88 #include <kernel/nc.h> 89 #include <polys/nc/nc.h> 87 90 #include <polys/nc/sca.h> 88 91 #define ALLOW_PLURAL 1 … … 216 219 217 220 int iiOp; /* the current operation*/ 221 222 /*=================== simple helpers =================*/ 223 poly pHeadProc(poly p) 224 { 225 return pHead(p); 226 } 218 227 219 228 /*=================== operations with 2 args.: static proc =================*/ … … 5047 5056 static BOOLEAN jjmpTrace(leftv res, leftv v) 5048 5057 { 5049 res->data = (char *)mp Trace((matrix)v->Data());5058 res->data = (char *)mp_Trace((matrix)v->Data(),currRing); 5050 5059 return FALSE; 5051 5060 } 5052 5061 static BOOLEAN jjmpTransp(leftv res, leftv v) 5053 5062 { 5054 res->data = (char *)mp Transp((matrix)v->Data());5063 res->data = (char *)mp_Transp((matrix)v->Data(),currRing); 5055 5064 return FALSE; 5056 5065 } … … 5101 5110 #define jjsyMinBase (proc1)syMinBase 5102 5111 #define jjpMaxComp (proc1)pMaxCompProc 5103 #define jjmpTrace (proc1)mpTrace5104 #define jjmpTransp (proc1)mpTransp5105 5112 #define jjrOrdStr (proc1)rOrdStr 5106 5113 #define jjrVarStr (proc1)rVarStr … … 5399 5406 BOOLEAN r=jjCOEFFS_Id(res,u,v); 5400 5407 if (r) return TRUE; 5401 mp Monomials((matrix)res->data, rank, pVar((poly)v->Data()),(matrix)w->Data());5408 mp_Monomials((matrix)res->data, rank, pVar((poly)v->Data()),(matrix)w->Data(),currRing); 5402 5409 return FALSE; 5403 5410 } … … 5432 5439 t.CleanUp(); 5433 5440 if (r) return TRUE; 5434 mp Monomials((matrix)res->data, rank, pVar((poly)v->Data()),(matrix)w->Data());5441 mp_Monomials((matrix)res->data, rank, pVar((poly)v->Data()),(matrix)w->Data(),currRing); 5435 5442 return FALSE; 5436 5443 } -
Singular/ipshell.h
r6cc7f5 r15ff9a 212 212 lists scIndIndset(ideal S, BOOLEAN all, ideal Q); 213 213 BOOLEAN mpKoszul(leftv res,leftv c/*ip*/, leftv b/*in*/, leftv id); 214 215 #endif 216 214 BOOLEAN mpJacobi(leftv res,leftv a); 215 BOOLEAN jjRESULTANT(leftv res, leftv u, leftv v, leftv w); 216 BOOLEAN kQHWeight(leftv res,leftv v); 217 BOOLEAN kWeight(leftv res,leftv id); 218 BOOLEAN loSimplex( leftv res, leftv args ); 219 BOOLEAN loNewtonP( leftv res, leftv arg1 ); 220 221 222 #endif 223 -
kernel/mod2.h
r6cc7f5 r15ff9a 28 28 #define TIME_WITH_SYS_TIME 1 29 29 #define HAVE_SYS_TIME_H 1 30 #define PROC_BUG 1 30 31 /* Default value for timer resolution in ticks per second */ 31 32 /* set to 10 for resolution of tenth of a second, etc */
Note: See TracChangeset
for help on using the changeset viewer.