Changeset 651f6f in git for kernel


Ignore:
Timestamp:
Jan 9, 2007, 12:21:15 PM (17 years ago)
Author:
Hans Schönemann <hannes@…>
Branches:
(u'fieker-DuVal', '117eb8c30fc9e991c4decca4832b1d19036c4c65')(u'spielwiese', 'd08f5f0bb3329b8ca19f23b74cb1473686415c3a')
Children:
a8288503cf23e0e330572db718ded1caf92e11c3
Parents:
2d57b26b1b7e8605b1e3c1f21ccbfbce3b9e547a
Message:
*hannes: fixed naming


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

Legend:

Unmodified
Added
Removed
  • kernel/sca.cc

    r2d57b2 r651f6f  
    77 *  Author:  motsak (Oleksandr Motsak)
    88 *  Created: 2006/12/18
    9  *  Version: $Id: sca.cc,v 1.2 2007-01-04 14:09:47 motsak Exp $
     9 *  Version: $Id: sca.cc,v 1.3 2007-01-09 11:21:15 Singular Exp $
    1010 *******************************************************************/
    1111
     
    10761076      if( p_GetExp(save, i, currRing) )
    10771077      {
    1078         const poly tt = xi_Mult_pp(i, pNext, currRing);
     1078        const poly tt = sca_pp_Mult_xi_pp(i, pNext, currRing);
    10791079
    10801080#ifdef PDEBUG
     
    13851385
    13861386// return x_i * pPoly; preserve pPoly.
    1387 poly xi_Mult_pp(unsigned int i, const poly pPoly, const ring rRing)
     1387poly sca_pp_Mult_xi_pp(unsigned int i, const poly pPoly, const ring rRing)
    13881388{
    13891389  assume(1 <= i);
     
    16451645      if( p_GetExp(pSave, i, currRing) )
    16461646      {
    1647         const poly pNew = xi_Mult_pp(i, pNext, currRing);
     1647        const poly pNew = sca_pp_Mult_xi_pp(i, pNext, currRing);
    16481648
    16491649#ifdef PDEBUG
     
    20582058        assume(p_GetExp(pSave, i, currRing) == 1);
    20592059
    2060         const poly pNew = xi_Mult_pp(i, pNext, currRing);
     2060        const poly pNew = sca_pp_Mult_xi_pp(i, pNext, currRing);
    20612061
    20622062#ifdef PDEBUG
  • kernel/sca.h

    r2d57b2 r651f6f  
    55*  Computer Algebra System SINGULAR     *
    66****************************************/
    7 /* $Id: sca.h,v 1.1 2007-01-03 00:04:00 motsak Exp $ */
     7/* $Id: sca.h,v 1.2 2007-01-09 11:21:15 Singular Exp $ */
    88
    99#include <structs.h>
     
    7676// this is not a basic operation... but it for efficiency we did it specially for SCA:
    7777// return x_i * pPoly; preserve pPoly.
    78 poly xi_Mult_pp(unsigned int i, const poly pPoly, const ring rRing);
     78poly sca_pp_Mult_xi_pp(unsigned int i, const poly pPoly, const ring rRing);
    7979
    8080// set pProcs for r and the variable p_Procs
    8181// should be used by p_ProcsSet in "p_Procs_Set.h"
    8282void SetProcsSCA(ring& rGR, p_Procs_s* p_Procs);
     83
    8384
    8485// is this an exterior algebra or a commutative polynomial ring \otimes exterior algebra?
  • kernel/tgb.cc

    r2d57b2 r651f6f  
    55*  Computer Algebra System SINGULAR     *
    66****************************************/
    7 /* $Id: tgb.cc,v 1.108 2007-01-03 00:17:12 motsak Exp $ */
     7/* $Id: tgb.cc,v 1.109 2007-01-09 11:21:15 Singular Exp $ */
    88/*
    99* ABSTRACT: slimgb and F4 implementation
     
    15521552        assume(p_GetExp(h, v, c->r)==1);
    15531553
    1554         poly p = xi_Mult_pp(v, pNext, c->r); // x_v * h;
     1554        poly p = sca_pp_Mult_xi_pp(v, pNext, c->r); // x_v * h;
    15551555
    15561556        if(p != NULL) // if (x_v * h != 0)
Note: See TracChangeset for help on using the changeset viewer.