Changeset a97ac0 in git for Singular/ipassign.cc
- Timestamp:
- Nov 7, 2013, 1:59:53 PM (9 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'a800fe4b3e9d37a38c5a10cc0ae9dfa0c15a4ee6')
- Children:
- b38f8137dbcaf7b468232f449c1346a88a9cc6fd
- Parents:
- 823679a657c538153cba3a477bf92e2c9102c451
- git-author:
- Hans Schoenemann <hannes@mathematik.uni-kl.de>2013-11-07 13:59:53+01:00
- git-committer:
- Hans Schoenemann <hannes@mathematik.uni-kl.de>2013-11-07 14:04:32+01:00
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/ipassign.cc
r823679 ra97ac0 900 900 if (dAssign[i].res!=0) 901 901 { 902 if ( TEST_V_ALLWARN) Print("assign %s=%s\n",Tok2Cmdname(lt),Tok2Cmdname(rt));902 if (traceit&TRACE_ASSIGN) Print("assign %s=%s\n",Tok2Cmdname(lt),Tok2Cmdname(rt)); 903 903 BOOLEAN b; 904 904 b=dAssign[i].p(ld,r,l->e); … … 927 927 { 928 928 failed= dAssign[i].p(ld,rn,l->e); 929 if ( TEST_V_ALLWARN)929 if (traceit&TRACE_ASSIGN) 930 930 Print("assign %s=%s ok? %d\n",Tok2Cmdname(lt),Tok2Cmdname(rn->rtyp),!failed); 931 931 } … … 1194 1194 if (i>=iv->length()) 1195 1195 { 1196 if ( TEST_V_ALLWARN)1196 if (traceit&TRACE_ASSIGN) 1197 1197 { 1198 1198 Warn("expression list length(%d) does not match intmat size(%d)", … … 1236 1236 if (i>=bim->cols()*bim->rows()) 1237 1237 { 1238 if ( TEST_V_ALLWARN)1238 if (traceit&TRACE_ASSIGN) 1239 1239 { 1240 1240 Warn("expression list length(%d) does not match bigintmat size(%d x %d)", … … 1538 1538 if(like_lists) 1539 1539 { 1540 if ( TEST_V_ALLWARN) PrintS("assign list[..]=...or similiar\n");1540 if (traceit&TRACE_ASSIGN) PrintS("assign list[..]=...or similiar\n"); 1541 1541 if (like_lists==1) 1542 1542 { … … 1720 1720 lm=mpNew(olm->rows(),olm->cols()); 1721 1721 int el; 1722 if (( TEST_V_ALLWARN) && (num!=(el=exprlist_length(hh))))1722 if ((traceit&TRACE_ASSIGN) && (num!=(el=exprlist_length(hh)))) 1723 1723 { 1724 1724 Warn("expression list length(%d) does not match matrix size(%d)",el,num);
Note: See TracChangeset
for help on using the changeset viewer.