Changeset c5e0e1 in git
- Timestamp:
- Aug 2, 2010, 10:46:59 AM (13 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'ad2543eab51733612ba7d118afc77edca719600e')
- Children:
- 020ef9577e1202a9c5d75f1cffa517df435f9d24
- Parents:
- f0f2fea8b20a86e32a25ab7e9948aca2111645da
- Location:
- kernel
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/hdegree.cc
rf0f2fea rc5e0e1 21 21 22 22 int hCo, hMu, hMu2; 23 struct omBin_s*indlist_bin = omGetSpecBin(sizeof(indlist));23 omBin indlist_bin = omGetSpecBin(sizeof(indlist)); 24 24 25 25 /*0 implementation*/ -
kernel/hutil.h
rf0f2fea rc5e0e1 30 30 #define LEN_MON (sizeof(scfmon) + sizeof(int)) 31 31 32 extern struct omBin_s*indlist_bin;32 extern omBin indlist_bin; 33 33 34 34 extern scfmon hexist, hstc, hrad, hwork; -
kernel/p_Procs.h
rf0f2fea rc5e0e1 17 17 typedef poly (*p_Copy_Proc_Ptr)(poly p, const ring r); 18 18 typedef void (*p_Delete_Proc_Ptr)(poly *p, const ring r); 19 typedef poly (*p_ShallowCopyDelete_Proc_Ptr)(poly p, const ring r, omBin _s*dest_bin);19 typedef poly (*p_ShallowCopyDelete_Proc_Ptr)(poly p, const ring r, omBin dest_bin); 20 20 typedef poly (*p_Mult_nn_Proc_Ptr)(poly p, const number n, const ring r); 21 21 typedef poly (*pp_Mult_nn_Proc_Ptr)(poly p, const number n, const ring r); -
kernel/ring.cc
rf0f2fea rc5e0e1 1536 1536 //memset: res->firstwv=NULL; 1537 1537 1538 //struct omBin _s*PolyBin; /* Bin from where monoms are allocated */1538 //struct omBin PolyBin; /* Bin from where monoms are allocated */ 1539 1539 //memset: res->PolyBin=NULL; // rComplete 1540 1540 res->ch=r->ch; /* characteristic */ -
kernel/ring.h
rf0f2fea rc5e0e1 466 466 void rDelete(ring r); 467 467 468 extern struct omBin_s*sip_sring_bin;469 #endif 468 extern omBin sip_sring_bin; 469 #endif -
kernel/sparsmat.cc
rf0f2fea rc5e0e1 63 63 static number smCleardenom(ideal); 64 64 65 struct omBin_s*smprec_bin = omGetSpecBin(sizeof(smprec));65 omBin smprec_bin = omGetSpecBin(sizeof(smprec)); 66 66 67 67 static poly pp_Mult_Coeff_mm_DivSelect_MultDiv(poly p, int &lp, poly m, -
kernel/structs.h
rf0f2fea rc5e0e1 11 11 /* for memset: */ 12 12 #include <string.h> 13 /* for omBin */ 14 #include <omalloc.h> 13 15 #ifdef HAVE_RINGS 14 16 #include <kernel/si_gmp.h> … … 354 356 typedef struct sro_ISTemp sro_ISTemp; 355 357 356 #ifndef OM_ALLOC_H357 struct omBin_s;358 #endif359 360 358 struct sro_ord 361 359 { … … 519 517 int* firstwv; 520 518 521 struct omBin_s*PolyBin; /* Bin from where monoms are allocated */519 omBin PolyBin; /* Bin from where monoms are allocated */ 522 520 #ifdef HAVE_RINGS 523 521 unsigned int ringtype; /* cring = 0 => coefficient field, cring = 1 => coeffs from Z/2^m */ … … 659 657 #endif 660 658 661 extern struct omBin_s*char_ptr_bin;662 extern struct omBin_s*sleftv_bin;663 664 #endif 665 659 extern omBin char_ptr_bin; 660 extern omBin sleftv_bin; 661 662 #endif 663 -
kernel/tgb_internal.h
rf0f2fea rc5e0e1 239 239 //end for F4 240 240 #ifdef HEAD_BIN 241 struct omBin_s*HeadBin;241 omBin HeadBin; 242 242 #endif 243 243 unsigned int reduction_steps;
Note: See TracChangeset
for help on using the changeset viewer.