Changeset 43b04d in git


Ignore:
Timestamp:
Jul 3, 2015, 9:57:43 AM (9 years ago)
Author:
Adi Popescu <adi_popescum@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
1550ecaad46efdce1c9032818b53259c1f6c108a
Parents:
74dcead93fa7d8032514e5919362facbb50b1c0e
Message:
Added rAssure_c_dp(ring r)
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • kernel/combinatorics/hdegree.cc

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

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

    r74dcead r43b04d  
    45304530unsigned long p_GetShortExpVector(const poly p, const ring r)
    45314531{
     4532  if (p == NULL) return 0;
    45324533  assume(p != NULL);
    4533   if (p == NULL) return 0;
    45344534  unsigned long ev = 0; // short exponent vector
    45354535  unsigned int n = BIT_SIZEOF_LONG / r->N; // number of bits per exp
  • libpolys/polys/monomials/ring.cc

    r74dcead r43b04d  
    48614861{
    48624862  return rAssure_Global(ringorder_C, ringorder_dp, r);
     4863}
     4864
     4865ring rAssure_c_dp(const ring r)
     4866{
     4867  return rAssure_Global(ringorder_c, ringorder_dp, r);
    48634868}
    48644869
  • libpolys/polys/monomials/ring.h

    r74dcead r43b04d  
    724724ring   rAssure_dp_C(const ring r);
    725725ring   rAssure_C_dp(const ring r);
     726ring   rAssure_c_dp(const ring r);
    726727
    727728/// makes sure that c/C ordering is last ordering
Note: See TracChangeset for help on using the changeset viewer.