Changeset eaae7d in git


Ignore:
Timestamp:
Jul 20, 2011, 6:29:36 PM (13 years ago)
Author:
Oleksandr Motsak <motsak@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
1fdb6e5d1f9e38c01c5426bbd128438ee72a4bd3
Parents:
359d86df43e3c24f09943e14a54ce48350072478
git-author:
Oleksandr Motsak <motsak@mathematik.uni-kl.de>2011-07-20 18:29:36+02:00
git-committer:
Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2011-11-09 12:52:44+01:00
Message:
FIX: more non-commutative functions should be public
ADD: compatibility layers added to struct.h (to ease the migration)
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • kernel/kutil.cc

    r359d86d reaae7d  
    17171717  if (rIsPluralRing(currRing))
    17181718  {
    1719     Lp.p = nc_CreateShortSpoly(strat->S[i],p); // ??? strat->tailRing?
     1719    Lp.p = nc_CreateShortSpoly(strat->S[i],p, currRing); // ??? strat->tailRing?
    17201720  }
    17211721  else
  • kernel/structs.h

    r359d86d reaae7d  
    1212#include <omalloc/omalloc.h>
    1313#include <misc/auxiliary.h>
     14#include <polys/polys.h>
     15#include <polys/coeffrings.h>
     16
    1417#ifdef HAVE_RINGS
    1518#include <coeffs/si_gmp.h>
  • libpolys/polys/nc/nc.h

    r359d86d reaae7d  
    259259}
    260260
     261// ?
     262poly nc_CreateShortSpoly(poly p1, poly p2, const ring r);
     263
     264/* brackets: p will be destroyed... */
     265poly nc_p_Bracket_qq(poly p, const poly q);
     266
     267
    261268static inline poly nc_ReduceSpoly(const poly p1, poly p2, const ring r)
    262269{
  • libpolys/polys/nc/old.gring.h

    r359d86d reaae7d  
    4646
    4747
    48 poly nc_CreateShortSpoly(poly p1, poly p2, const ring r=currRing);
    49 
    50 
    51 /* brackets: p will be destroyed... */
    52 poly nc_p_Bracket_qq(poly p, const poly q);
    5348
    5449/* twostd: */
Note: See TracChangeset for help on using the changeset viewer.