Changeset de7521 in git for Singular/LIB/linalg.lib


Ignore:
Timestamp:
Sep 27, 2011, 5:05:10 PM (13 years ago)
Author:
Niels Ranosch <ranosch@…>
Branches:
(u'spielwiese', '17f1d200f27c5bd38f5dfc6e8a0879242279d1d8')
Children:
b9e11ba1ccf9ce6f95143f2be5524707ba4e9689
Parents:
c14846c48e3ff9e4167bc71fd6c4c4cf2f7d6e03
git-author:
Niels Ranosch <ranosch@mfo.de>2011-09-27 17:05:10+02:00
git-committer:
Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2011-11-09 16:13:39+01:00
Message:
fixed minpoly for this case of inverse
File:
1 edited

Legend:

Unmodified
Added
Removed
  • Singular/LIB/linalg.lib

    rc14846c rde7521  
    126126   int db = printlevel-voice+3;      //used for comments
    127127   def R=basering;
    128    string mp = string(minpoly);
     128   string mp = "";
     129   if (minpoly != 0) {
     130     string(minpoly);
     131   }
    129132   int n = nrows(A);
    130133   module M = A;
     
    159162     def @R=changeord("C,dp",R);
    160163     setring @R;
     164     if (mp != "") {
     165       execute(mp);
     166     }
    161167     module M = fetch(R,M);
    162      execute("minpoly="+mp+";");
    163168   }
    164169//----------------------------- opt=3: use lift ------------------------------
Note: See TracChangeset for help on using the changeset viewer.