Changeset d30a399 in git for Singular/walk_ip.cc


Ignore:
Timestamp:
Oct 19, 2012, 9:59:20 AM (12 years ago)
Author:
Hans Schoenemann <hannes@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
8710ff0734063b049b29453b8d06161041fffbc7b37b3984a12e1552c7bafc9fd5a7849240ea7980
Parents:
f2359093b446e8c68c3bda0f0484c4dbf7bd93a8
Message:
chg: option handling: test,verbose renamed to si_opt_1,si_opt_2
File:
1 edited

Legend:

Unmodified
Added
Removed
  • Singular/walk_ip.cc

    rf23590 rd30a399  
    6464{
    6565    WalkState state = WalkOk;
    66     BITSET saveTest=test;
    67     test &= (~Sy_bit(OPT_REDSB)); //make sure option noredSB is set
     66    BITSET save1,save2;
     67    SI_SAVE_OPT(save1,save2);
     68    si_opt_1 &= (~Sy_bit(OPT_REDSB)); //make sure option noredSB is set
    6869
    6970    ring destRing = currRing;
     
    108109    }
    109110
    110     test=saveTest;//making sure options are as before function call
     111    SI_RESTORE_OPT(save1,save2);//making sure options are as before function call
    111112
    112113    ring almostDestRing=currRing;
     
    177178
    178179    WalkState state = WalkOk;
    179     BITSET saveTest=test;
    180     test &= (~Sy_bit(OPT_REDSB)); //make sure option noredSB is set
     180    BITSET save1,save2;
     181    SI_SAVE_OPT(save1,save2);
     182    si_opt_1 &= (~Sy_bit(OPT_REDSB)); //make sure option noredSB is set
    181183
    182184    ring destRing = currRing;
     
    212214    }
    213215
    214     test=saveTest;//making sure options are as before functiocall
     216    SI_RESTORE_OPT(save1,save2);//making sure options are as before functiocall
    215217
    216218     if ( state == WalkOk )
Note: See TracChangeset for help on using the changeset viewer.