Changeset 2f1585 in git


Ignore:
Timestamp:
May 26, 1999, 4:32:02 PM (25 years ago)
Author:
Olaf Bachmann <obachman@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
faea1146c8c5f3a85b2812d91d45140f69473617
Parents:
42af82ee4c52c3eaa0d01f2aba5f6d65122bae48
Message:
* updated because of update of normal.lib


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

Legend:

Unmodified
Added
Removed
  • Singular/LIB/paramet.lib

    r42af82e r2f1585  
    1 // $Id: paramet.lib,v 1.2 1998-08-08 09:47:46 obachman Exp $
     1// $Id: paramet.lib,v 1.3 1999-05-26 14:32:02 obachman Exp $
    22// author : Thomas Keilen email: keilen@mathematik.uni-kl.de
    33// last change:           07.08.98
    44///////////////////////////////////////////////////////////////////////////////
    55
    6 version="$Id: paramet.lib,v 1.2 1998-08-08 09:47:46 obachman Exp $";
     6version="$Id: paramet.lib,v 1.3 1999-05-26 14:32:02 obachman Exp $";
    77info="
    88LIBRARY:  paramet.lib   PROCEDURES FOR PARAMETRIZATION OF PRIMARY
     
    4545   setring N;
    4646   // If the ideal is zero dimensional, the procedure works as well in good cases.
    47    if ((size(KK)==0) or (d==0))
     47   if ((size(norid)==0) or (d==0))
    4848   {
    4949     // Map the parametrization to the parametrization basering PR.
    5050     setring PR;
    5151     map p=N,(s,t);
    52      ideal para=p(PP);
     52     ideal para=p(normap);
    5353     export para;
    5454     // The i-th list component contains the parametrization, the
     
    5959//     {
    6060       // Include sometime a test, whether the maximal ideal I is of the form
    61        // (x-a,y-b,z-c), since only then PP=(a,b,c).
     61       // (x-a,y-b,z-c), since only then normap=(a,b,c).
    6262//     }
    6363     setring BAS;
     
    111111     def N=nor[ii];
    112112     setring N;
    113      int d=dim(std(KK));
     113     int d=dim(std(norid));
    114114     // Test if the normalization is K, K[s] or K[s,t]. Then give back the parametrization.
    115      if (size(KK)==0)
     115     if (size(norid)==0)
    116116     {
    117117       setring PR;
    118118       map p=N,max;
    119        para[ii]=p(PP);
     119       para[ii]=p(normap);
    120120//       export para[ii];
    121121//       list inter=para[ii],nvars(N),1;
     
    124124//       {
    125125         // Include sometime a test, whether the maximal ideal I is of the form
    126          // (x-a,y-b,z-c), since only then PP=(a,b,c).
     126         // (x-a,y-b,z-c), since only then normap=(a,b,c).
    127127//       }
    128128       param[ii]=inter;
Note: See TracChangeset for help on using the changeset viewer.