Changeset 3f78cb in git


Ignore:
Timestamp:
Jun 10, 2008, 12:33:15 PM (15 years ago)
Author:
Motsak Oleksandr <motsak@…>
Branches:
(u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'a800fe4b3e9d37a38c5a10cc0ae9dfa0c15a4ee6')
Children:
9e2fdf701f7deadbbbe6ed38553ee22d1119be64
Parents:
6cb1d1ecf69dca15e7df819a230cba1021e8d16f
Message:
*motsak: major redesign of NS Subsystem...


git-svn-id: file:///usr/local/Singular/svn/trunk@10743 2c84dea3-7e68-4137-9b89-c4e89433aadc
File:
1 edited

Legend:

Unmodified
Added
Removed
  • Singular/ipshell.cc

    r6cb1d1 r3f78cb  
    22*  Computer Algebra System SINGULAR     *
    33****************************************/
    4 /* $Id: ipshell.cc,v 1.184 2008-05-20 11:34:33 Singular Exp $ */
     4/* $Id: ipshell.cc,v 1.185 2008-06-10 10:33:15 motsak Exp $ */
    55/*
    66* ABSTRACT:
     
    17591759    L->m[3].data=(void *)idCopy(r->qideal);
    17601760  // ----------------------------------------
    1761   #ifdef HAVE_PLURAL
    1762   if (rIsPluralRing(r))
     1761  #ifdef HAVE_PLURAL // NC! in rDecompose
     1762  if (rIsPluralRing(r)) 
    17631763  {
    17641764    L->m[4].rtyp=MATRIX_CMD;
    1765     L->m[4].data=(void *)mpCopy(r->nc->C);
     1765    L->m[4].data=(void *)mpCopy(r->GetNC()->C);
    17661766    L->m[5].rtyp=MATRIX_CMD;
    1767     L->m[5].data=(void *)mpCopy(r->nc->D);
     1767    L->m[5].data=(void *)mpCopy(r->GetNC()->D);
    17681768  }
    17691769  #endif
     
    21802180  if (L->nr==5)
    21812181  {
    2182     if (nc_CallPlural((matrix)L->m[4].Data(),(matrix)L->m[5].Data(),
    2183         NULL,NULL,R))
    2184       goto rCompose_err;
     2182    if (nc_CallPlural((matrix)L->m[4].Data(),(matrix)L->m[5].Data(),NULL,NULL,R, true)) goto rCompose_err;
     2183    // takes care about non-comm. quotient! i.e. calls "nc_SetupQuotient" due to last true
    21852184  }
    21862185  #endif
Note: See TracChangeset for help on using the changeset viewer.