Changeset ecd512 in git for Singular/LIB


Ignore:
Timestamp:
Jul 28, 1998, 12:35:55 PM (26 years ago)
Author:
Olaf Bachmann <obachman@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
abc51389bf9c2352373f106f0d7efbf8d2220f0d
Parents:
845cb346d589050091f1268ae76f99b09425504c
Message:
* new bug fixes


git-svn-id: file:///usr/local/Singular/svn/trunk@2379 2c84dea3-7e68-4137-9b89-c4e89433aadc
File:
1 edited

Legend:

Unmodified
Added
Removed
  • Singular/LIB/normal.lib

    r845cb34 recd512  
    66///////////////////////////////////////////////////////////////////////////////
    77
    8 version="$Id: normal.lib,v 1.8 1998-07-27 09:13:02 obachman Exp $";
     8version="$Id: normal.lib,v 1.9 1998-07-28 10:35:55 obachman Exp $";
    99info="
    1010LIBRARY: normal.lib: PROCEDURE FOR NORMALIZATION (I)
     
    12181218   int ii,jj;
    12191219   map phi = basering,maxideal(1);
     1220
     1221   //endid=diagon(endid);
     1222
    12201223   list Le = elimpart(endid);
    12211224           //this proc and the next loop try to
     
    12291232      endid = Le[1];
    12301233      map ps = newRing,Le[5];
     1234
    12311235      phi = ps(phi);
     1236      for(ii=1;ii<=size(Le[2])-1;ii++)
     1237      {
     1238         phi=phi(phi);
     1239      }
     1240      //eingefuegt wegen x2-y2z2+z3
    12321241      kill ps;
    12331242
     
    12871296}
    12881297
    1289 
     1298proc diagon(ideal i)
     1299{
     1300   matrix m;
     1301   option(redSB);
     1302   ideal j=liftstd(jet(i,1),m);
     1303   option(noredSB);
     1304   return(ideal(matrix(i)*m));
     1305}
    12901306/////////////////////////////////////////////////////////////////////////////
    12911307/*
Note: See TracChangeset for help on using the changeset viewer.