Changeset d008518 in git


Ignore:
Timestamp:
May 20, 2014, 1:00:37 PM (10 years ago)
Author:
Andreas Steenpass <steenpass@…>
Branches:
(u'spielwiese', '5b153614cbc72bfa198d75b1e9e33dab2645d9fe')
Children:
5b8768586a9b9e826e21175b8c9e94a66c8d205f
Parents:
c782ce28d7da9c3af0ecf894efb605811a22188d
Message:
chg: replace std() by modStd() in assPrimes()
File:
1 edited

Legend:

Unmodified
Added
Removed
  • Singular/LIB/assprimeszerodim.lib

    rc782ce rd008518  
    294294
    295295   if(printlevel >= 10) { "========== Start modStd =========="; }
    296    I = modStd(I,n1);
     296   I = modStd(I);
    297297   if(printlevel >= 10) { "=========== End modStd ==========="; }
    298298   if(printlevel >= 9) { "modStd takes "+string(rtimer-RT)+" seconds."; }
     
    325325               }
    326326               TT = timer;
    327                I = std(I);
     327               I = modStd(I);
    328328               if(printlevel >= 9)
    329329               {
    330                   "std(I) takes "+string(timer-TT)+" seconds.";
     330                  "modStd(I) takes "+string(timer-TT)+" seconds.";
    331331               }
    332332               d = vdim(I);
     
    343343            }
    344344            TT = timer;
    345             I = std(I);
     345            I = modStd(I);
    346346            if(printlevel >= 9)
    347347            {
    348                "std(I) takes "+string(timer-TT)+" seconds.";
     348               "modStd(I) takes "+string(timer-TT)+" seconds.";
    349349            }
    350350            d = vdim(I);
Note: See TracChangeset for help on using the changeset viewer.