Changeset b5b60f in git
- Timestamp:
- Feb 10, 1999, 3:30:42 PM (25 years ago)
- Branches:
- (u'spielwiese', '8e0ad00ce244dfd0756200662572aef8402f13d5')
- Children:
- 8fefd9a73cb2587c8343e8b511c2fd41f9574eb1
- Parents:
- b1583218885416b88ae2f7c90eafb08541bc5e0a
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/LIB/standard.lib
rb158321 rb5b60f 1 // $Id: standard.lib,v 1.2 6 1998-10-15 11:46:10 obachmanExp $1 // $Id: standard.lib,v 1.27 1999-02-10 14:30:42 siebert Exp $ 2 2 ////////////////////////////////////////////////////////////////////////////// 3 3 4 version="$Id: standard.lib,v 1.2 6 1998-10-15 11:46:10 obachmanExp $";4 version="$Id: standard.lib,v 1.27 1999-02-10 14:30:42 siebert Exp $"; 5 5 info=" 6 6 LIBRARY: standard.lib PROCEDURES WHICH ARE ALWAYS LOADED AT START-UP … … 414 414 if(homog(m)==1) 415 415 { 416 resolution re =lres(m,i);417 if (size(#)>2)416 resolution re; 417 if ((i==0) or (i>=nvars(basering))) 418 418 { 419 re=minres(re); 419 re=lres(m,i); 420 if(size(#)>2) 421 { 422 re=minres(re); 423 } 424 } 425 else 426 { 427 if(size(#)>2) 428 { 429 re=mres(m,i); 430 } 431 else 432 { 433 re=sres(std(m),i); 434 } 420 435 } 421 436 return(re);
Note: See TracChangeset
for help on using the changeset viewer.