Changeset 43b04d in git for libpolys


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

Legend:

Unmodified
Added
Removed
  • 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.