Changeset 70eecb in git for Singular/LIB/standard.lib


Ignore:
Timestamp:
Dec 8, 2014, 7:50:20 PM (9 years ago)
Author:
Oleksandr Motsak <motsak@…>
Branches:
(u'spielwiese', 'e7cc1ebecb61be8b9ca6c18016352af89940b21a')
Children:
4c420e51679d6e2cc69886b429bc333c26cc4994
Parents:
d79a742378992db381041d098a232a47426f1864
git-author:
Oleksandr Motsak <motsak@mathematik.uni-kl.de>2014-12-08 19:50:20+01:00
git-committer:
Oleksandr Motsak <motsak@mathematik.uni-kl.de>2014-12-09 19:05:10+01:00
Message:
Preparations for using s_res via res

TODO: enable it
NOTE: only for testing at the moment
File:
1 edited

Legend:

Unmodified
Added
Removed
  • Singular/LIB/standard.lib

    rd79a74 r70eecb  
    13891389     return(nres(m,i));
    13901390   }
     1391   
     1392/* if( attrib(basering, "global") == 1 ) // preparations for s_res usage. in testing!
     1393   {
     1394     if (p_opt) { "using s_res";}
     1395     if( !defined(s_res) )
     1396     {
     1397       def @@v=option(get); option(noloadLib); option(noloadProc); LIB( "schreyer.lib" ); // for s_res
     1398       option(set, @@v); kill @@v;
     1399     } 
     1400     resolution re = s_res(m,i);
     1401     if(size(#)>2)
     1402     {
     1403       re=minres(re);
     1404     }
     1405     return(re);   
     1406   }*/
    13911407
    13921408   if(homog(m)==1)
Note: See TracChangeset for help on using the changeset viewer.