Changeset 3f78cb in git
- Timestamp:
- Jun 10, 2008, 12:33:15 PM (15 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'a800fe4b3e9d37a38c5a10cc0ae9dfa0c15a4ee6')
- Children:
- 9e2fdf701f7deadbbbe6ed38553ee22d1119be64
- Parents:
- 6cb1d1ecf69dca15e7df819a230cba1021e8d16f
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/ipshell.cc
r6cb1d1 r3f78cb 2 2 * Computer Algebra System SINGULAR * 3 3 ****************************************/ 4 /* $Id: ipshell.cc,v 1.18 4 2008-05-20 11:34:33 SingularExp $ */4 /* $Id: ipshell.cc,v 1.185 2008-06-10 10:33:15 motsak Exp $ */ 5 5 /* 6 6 * ABSTRACT: … … 1759 1759 L->m[3].data=(void *)idCopy(r->qideal); 1760 1760 // ---------------------------------------- 1761 #ifdef HAVE_PLURAL 1762 if (rIsPluralRing(r)) 1761 #ifdef HAVE_PLURAL // NC! in rDecompose 1762 if (rIsPluralRing(r)) 1763 1763 { 1764 1764 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); 1766 1766 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); 1768 1768 } 1769 1769 #endif … … 2180 2180 if (L->nr==5) 2181 2181 { 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 2185 2184 } 2186 2185 #endif
Note: See TracChangeset
for help on using the changeset viewer.