Changeset 1550eca in git


Ignore:
Timestamp:
Jul 3, 2015, 11:57:11 AM (8 years ago)
Author:
Adi Popescu <adi_popescum@…>
Branches:
(u'spielwiese', '8e0ad00ce244dfd0756200662572aef8402f13d5')
Children:
a4698147758e1dabc111299150716127442050e9
Parents:
43b04d2d8385c988fe1b69e545f48f527a9e2be1
Message:
push cleaning
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • kernel/combinatorics/hdegree.cc

    r43b04d r1550eca  
    10311031  else
    10321032    hNstc = hNexist;
    1033   if (hNexist==0)
    1034   {
    1035     return;
    1036   }
     1033  assume(hNexist > 0);
    10371034  hwork = (scfmon)omAlloc(hNexist * sizeof(scmon));
    10381035  hvar = (varset)omAlloc((hNvar + 1) * sizeof(int));
  • libpolys/polys/kbuckets.cc

    r43b04d r1550eca  
    1414#include <coeffs/coeffs.h>
    1515#include <polys/monomials/ring.h>
    16 //#include <libpolys/polys/templates/p_Procs.h>
    1716//#include <kernel/GBEngine/kutil.h>
    1817#include <polys/kbuckets.h>
  • libpolys/polys/monomials/p_polys.cc

    r43b04d r1550eca  
    45304530unsigned long p_GetShortExpVector(const poly p, const ring r)
    45314531{
     4532  assume(p != NULL);
    45324533  if (p == NULL) return 0;
    4533   assume(p != NULL);
    45344534  unsigned long ev = 0; // short exponent vector
    45354535  unsigned int n = BIT_SIZEOF_LONG / r->N; // number of bits per exp
Note: See TracChangeset for help on using the changeset viewer.