Changeset 1550eca in git
- Timestamp:
- Jul 3, 2015, 11:57:11 AM (8 years ago)
- Branches:
- (u'spielwiese', '8e0ad00ce244dfd0756200662572aef8402f13d5')
- Children:
- a4698147758e1dabc111299150716127442050e9
- Parents:
- 43b04d2d8385c988fe1b69e545f48f527a9e2be1
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/combinatorics/hdegree.cc
r43b04d r1550eca 1031 1031 else 1032 1032 hNstc = hNexist; 1033 if (hNexist==0) 1034 { 1035 return; 1036 } 1033 assume(hNexist > 0); 1037 1034 hwork = (scfmon)omAlloc(hNexist * sizeof(scmon)); 1038 1035 hvar = (varset)omAlloc((hNvar + 1) * sizeof(int)); -
libpolys/polys/kbuckets.cc
r43b04d r1550eca 14 14 #include <coeffs/coeffs.h> 15 15 #include <polys/monomials/ring.h> 16 //#include <libpolys/polys/templates/p_Procs.h>17 16 //#include <kernel/GBEngine/kutil.h> 18 17 #include <polys/kbuckets.h> -
libpolys/polys/monomials/p_polys.cc
r43b04d r1550eca 4530 4530 unsigned long p_GetShortExpVector(const poly p, const ring r) 4531 4531 { 4532 assume(p != NULL); 4532 4533 if (p == NULL) return 0; 4533 assume(p != NULL);4534 4534 unsigned long ev = 0; // short exponent vector 4535 4535 unsigned int n = BIT_SIZEOF_LONG / r->N; // number of bits per exp
Note: See TracChangeset
for help on using the changeset viewer.