Changeset 917fb5 in git for Singular/LIB/mondromy.lib


Ignore:
Timestamp:
Jul 6, 1999, 5:33:00 PM (25 years ago)
Author:
Hans Schönemann <hannes@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
8e7ed6b81b8840e62d72f281eef096b71dc1b37e
Parents:
ce7ba606241efb95de4d1ab5581428b7143b3be2
Message:
* hannes: removed pause; (scanner.l, febase.*)
          introduced pause([string]) (standard.lib)


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

Legend:

Unmodified
Added
Removed
  • Singular/LIB/mondromy.lib

    rce7ba6 r917fb5  
    11///////////////////////////////////////////////////////////////////////////////
    22
    3 version="$Id: mondromy.lib,v 1.6 1999-07-06 11:33:02 obachman Exp $";
     3version="$Id: mondromy.lib,v 1.7 1999-07-06 15:32:53 Singular Exp $";
    44info="
    55LIBRARY: mondromy.lib  PROCEDURES TO COMPUTE THE MONODROMY OF A SINGULARITY
     
    110110    }
    111111  }
    112   return(m); 
     112  return(m);
    113113}
    114114///////////////////////////////////////////////////////////////////////////////
     
    189189         If U is not a sqaure matrix, the list is empty.
    190190         If U is a sqaure matrix, then the first entry is the determinant of U.
    191          If U is a square matrix and the determinant of U not zero, 
     191         If U is a square matrix and the determinant of U not zero,
    192192         then the second entry is the adjoint matrix of U.
    193193DISPLAY: The procedure displays comments if printlevel>=1.
     
    246246proc jacoblift(poly f)
    247247"USAGE:   jacoblift(f); f poly
    248 ASSUME:  The polynomial f in a series ring (local ordering) defines 
     248ASSUME:  The polynomial f in a series ring (local ordering) defines
    249249         an isolated hypersurface singularity.
    250 RETURN:  The procedure returns a list with entries kappa, xi, u of type 
     250RETURN:  The procedure returns a list with entries kappa, xi, u of type
    251251         int, vector, poly such that kappa is minimal with f^kappa in jacob(f),
    252252         u is a unit, and u*f^kappa=(matrix(jacob(f))*xi)[1,1].
     
    405405  for(i=1;i<=size(e);i++)
    406406  {
    407     for(j,p=nvars(basering),0;j>=1;j--) 
     407    for(j,p=nvars(basering),0;j>=1;j--)
    408408    {
    409409      q=jet(e[i]*xi[j],N);
     
    807807proc monodromy(poly f, list #)
    808808"USAGE:   monodromy(f[,opt]); f poly, opt int
    809 ASSUME:  The polynomial f in a series ring (local ordering) defines 
     809ASSUME:  The polynomial f in a series ring (local ordering) defines
    810810         an isolated hypersurface singularity.
    811 RETURN:  The procedure returns a residue matrix M of the meromorphic 
    812          Gauss-Manin connection of the singularity defined by f 
    813          or an empty matrix if the assumptions are not fulfilled. 
    814          If opt=0 (default), exp(2*pi*i*M) is a monodromy matrix of f, 
    815          else, only the characteristic polynomial of exp(2*pi*i*M) coincides 
     811RETURN:  The procedure returns a residue matrix M of the meromorphic
     812         Gauss-Manin connection of the singularity defined by f
     813         or an empty matrix if the assumptions are not fulfilled.
     814         If opt=0 (default), exp(2*pi*i*M) is a monodromy matrix of f,
     815         else, only the characteristic polynomial of exp(2*pi*i*M) coincides
    816816         with the characteristic polynomial of the monodromy of f.
    817 THEORY:  The procedure uses an algorithm by Brieskorn (See E. Brieskorn, 
    818          manuscipta math. 2 (1970), 103-161) to compute a connection matrix of 
    819          the meromorphic Gauss-Manin connection up to arbitrarily high order, 
    820          and an algorithm of Gerard and Levelt (See R. Gerard, A.H.M. Levelt, 
    821          Ann. Inst. Fourier, Grenoble 23,1 (1973), pp. 157-195) to transform 
     817THEORY:  The procedure uses an algorithm by Brieskorn (See E. Brieskorn,
     818         manuscipta math. 2 (1970), 103-161) to compute a connection matrix of
     819         the meromorphic Gauss-Manin connection up to arbitrarily high order,
     820         and an algorithm of Gerard and Levelt (See R. Gerard, A.H.M. Levelt,
     821         Ann. Inst. Fourier, Grenoble 23,1 (1973), pp. 157-195) to transform
    822822         it to a simple pole.
    823823DISPLAY: The procedure displays more comments for higher printlevel.
     
    837837      return();
    838838    }
    839    
     839
    840840  }
    841841
     
    918918proc H''basis(poly f)
    919919"USAGE:   H''basis(f); f poly
    920 ASSUME:  The polynomial f in a series ring (local ordering) defines 
     920ASSUME:  The polynomial f in a series ring (local ordering) defines
    921921         an isolated hypersurface singularity.
    922922RETURN:  The procedure returns a list of representatives of a C{f}-basis of the
Note: See TracChangeset for help on using the changeset viewer.