Changeset 9c1b63 in git


Ignore:
Timestamp:
Feb 12, 2009, 5:19:23 PM (15 years ago)
Author:
Motsak Oleksandr <motsak@…>
Branches:
(u'spielwiese', '4a9821a93ffdc22a6696668bd4f6b8c9de3e6c5f')
Children:
40165d708d5c5de0e1ae9846acbc8942e2533da5
Parents:
dfd21411a39a507a93f99303b72f21a2030348f4
Message:
*** empty log message ***


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

Legend:

Unmodified
Added
Removed
  • kernel/ideals.cc

    rdfd214 r9c1b63  
    22*  Computer Algebra System SINGULAR     *
    33****************************************/
    4 /* $Id: ideals.cc,v 1.68 2009-02-12 13:45:23 Singular Exp $ */
     4/* $Id: ideals.cc,v 1.69 2009-02-12 16:19:23 motsak Exp $ */
    55/*
    66* ABSTRACT - all basic methods to manipulate ideals
     
    40094009   NOTE: for every f_i we run only ONCE along w_i saving partial sums into a temporary array of polys of size m
    40104010*/
    4011 ideal tensorModuleMult(const int m, const ideal M, const ring rRing)
     4011ideal id_TensorModuleMult(const int m, const ideal M, const ring rRing)
    40124012{
    40134013// #ifdef DEBU
     
    40674067      assume( (cc + (vv-1)*m) == gen );
    40684068
    4069 
    4070       p_AddExp(h, vv, 1, rRing); // h *= var(j) &&
     4069      p_IncrExp(h, vv, rRing); // h *= var(j) && //      p_AddExp(h, vv, 1, rRing);
    40714070      p_SetComp(h, cc, rRing);
    40724071
  • kernel/ideals.h

    rdfd214 r9c1b63  
    44*  Computer Algebra System SINGULAR     *
    55****************************************/
    6 /* $Id: ideals.h,v 1.12 2009-02-12 13:31:22 motsak Exp $ */
     6/* $Id: ideals.h,v 1.13 2009-02-12 16:19:23 motsak Exp $ */
    77/*
    88* ABSTRACT - all basic methods to manipulate ideals
     
    151151ideal   idTransp(ideal a);
    152152// version of "ideal idTransp(ideal)" which works within a given ring.
    153 ideal id_Transp(ideal a, const ring rRing);
     153ideal id_Transp(ideal a, const ring rRing = currRing);
    154154
    155155
     
    166166
    167167
    168 ideal tensorModuleMult(const int m, const ideal M, const ring rRing); // image of certain map for BGG
     168ideal id_TensorModuleMult(const int m, const ideal M, const ring rRing = currRing); // image of certain map for BGG
    169169
    170170
Note: See TracChangeset for help on using the changeset viewer.