Changeset 8fbdb2 in git


Ignore:
Timestamp:
Feb 16, 2007, 12:07:11 PM (17 years ago)
Author:
Motsak Oleksandr <motsak@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
ede220f19c45a9b68833b167e1957f75e4c89a8b
Parents:
ab5a00e48ad4cc3712a383f8bac8092901c04e7f
Message:
*motsak: prepearing for future changes


git-svn-id: file:///usr/local/Singular/svn/trunk@9867 2c84dea3-7e68-4137-9b89-c4e89433aadc
Location:
kernel
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • kernel/gring.cc

    rab5a00 r8fbdb2  
    77 *  Author:  levandov (Viktor Levandovsky)
    88 *  Created: 8/00 - 11/00
    9  *  Version: $Id: gring.cc,v 1.43 2007-02-07 10:49:39 Singular Exp $
     9 *  Version: $Id: gring.cc,v 1.44 2007-02-16 11:07:11 motsak Exp $
    1010 *******************************************************************/
    1111#include "mod2.h"
     
    17851785void nc_PolyPolyRed(poly &b, poly p, number *c)
    17861786{
     1787#if 0
    17871788  nc_PolyPolyRedOld(b, p, c);
     1789#else
     1790  nc_PolyPolyRedNew(b, p, c);
     1791#endif
    17881792}
    17891793
  • kernel/gring.h

    rab5a00 r8fbdb2  
    44*  Computer Algebra System SINGULAR     *
    55****************************************/
    6 /* $Id: gring.h,v 1.19 2007-02-07 10:49:40 Singular Exp $ */
     6/* $Id: gring.h,v 1.20 2007-02-16 11:07:10 motsak Exp $ */
    77/*
    88* ABSTRACT additional defines etc for --with-plural
     
    6666
    6767void nc_PolyPolyRed(poly &b, poly p, number *c);
     68
     69
     70
    6871poly nc_CreateShortSpoly(poly p1, poly p2, const ring r=currRing);
    6972
     
    142145  return r->nc->p_Procs.ReduceSPoly(p1, p2, r);
    143146}
     147
     148/*
     149inline void nc_PolyReduce(poly &b, const poly p, number *c, const ring r) // nc_PolyPolyRed
     150{
     151  assume(rIsPluralRing(r));
     152//  assume(r->nc->p_Procs.PolyReduce!=NULL);
     153//  r->nc->p_Procs.PolyReduce(b, p, c, r);
     154}
     155*/
    144156
    145157inline void nc_kBucketPolyRed(kBucket_pt b, poly p, number *c)
Note: See TracChangeset for help on using the changeset viewer.