Changeset 02a0976 in git


Ignore:
Timestamp:
Dec 15, 2000, 5:20:47 PM (22 years ago)
Author:
Hans Schönemann <hannes@…>
Branches:
(u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', '00e2e9c41af3fde1273eb3633f4c0c7c3db2579d')
Children:
d3bf0986c4b1a7bac5ffc43b873646317a0d91de
Parents:
edef3080503be9dafb0b4d33562cb634ef9d50a8
Message:
*hannes/GMG: lib-docu


git-svn-id: file:///usr/local/Singular/svn/trunk@4918 2c84dea3-7e68-4137-9b89-c4e89433aadc
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • Singular/LIB/all.lib

    redef30 r02a0976  
    1 // $Id: all.lib,v 1.28 2000-12-11 13:14:08 Singular Exp $
     1// $Id: all.lib,v 1.29 2000-12-15 16:20:44 Singular Exp $
    22///////////////////////////////////////////////////////////////////////////////
    33
    4 version="$Id: all.lib,v 1.28 2000-12-11 13:14:08 Singular Exp $";
     4version="$Id: all.lib,v 1.29 2000-12-15 16:20:44 Singular Exp $";
    55info="
    66LIBRARY:  all.lib   Load all libraries
    77
    8   classify.lib  PROCEDURES FOR THE ARNOLD-CLASSIFIER OF SINGULARITIES
    9   deform.lib    PROCEDURES FOR COMPUTING MINIVERSAL DEFORMATION
    10   elim.lib      PROCEDURES FOR ELIMINATION, SATURATION AND BLOWING UP
    11   finvar.lib    PROCEDURES TO CALCULATE INVARIANT RINGS & MORE
    12   general.lib   PROCEDURES OF GENERAL TYPE
    13   graphics.lib  PROCEDURES TO DRAW WITH MATHEMATICA
    14   hnoether.lib  PROCEDURES FOR THE HAMBURGER-NOETHER-DEVELOPMENT
    15   homolog.lib   PROCEDURES FOR HOMOLOGICAL ALGEBRA
    16   inout.lib     PROCEDURES FOR MANIPULATING IN- AND OUTPUT
    17   ainvar.lib    PROCEDURES FOR COMPUTING INVARIANTS OF (K,+)-ACTIONS
    18   latex.lib     PROCEDURES FOR TYPESET OF SINGULAROBJECTS IN LATEX2E
    19   linalg.lib    PROCEDURES FOR PROCEDURES FOR ALGORITHMIC LINEAR ALGEBRA
    20   matrix.lib    PROCEDURES FOR MATRIX OPERATIONS
    21   normal.lib    PROCEDURES FOR COMPUTING THE NORMALIZATION
    22   poly.lib      PROCEDURES FOR MANIPULATING POLYS, IDEALS, MODULES
    23   presolve.lib  PROCEDURES FOR PRE-SOLVING POLYNOMIAL EQUATIONS
    24   solve.lib     PROCEDURES FOR SOLVING POLYNOMIAL SYSTEMS
    25   primdec.lib   PROCEDURES FOR PRIMARY DECOMPOSITION
    26   primitiv.lib  PROCEDURES FOR FINDING A PRIMITIVE ELEMENT
    27   random.lib    PROCEDURES OF RANDOM MATRIX AND POLY OPERATIONS
    28   ring.lib      PROCEDURES FOR MANIPULATING RINGS AND MAPS
    29   sing.lib      PROCEDURES FOR SINGULARITIES
    30   standard.lib  PROCEDURES WHICH ARE ALWAYS LOADED AT START-UP
    31   latex.lib     PROCEDURES FOR TYPESET OF SINGULAROBJECTS IN TEX
    32   paramet.lib   PROCEDURES FOR PARAMETRIZATION OF PRIMARY DECOMPOSITION
    33   mondromy.lib  PROCEDURES TO COMPUTE THE MONODROMY OF A SINGULARITY
    34   jordan.lib    PROCEDURES TO COMPUTE THE JORDAN NORMAL FORM
    35   spcurve.lib   PROCEDURES FOR CM CODIMENSION 2 SINGULARITIES
    36   algebra.lib   PROCEDURES FOR COMPUTING WITH ALGBRAS AND MAPS
    37   rinvar.lib    PROCEDURES FOR INVARIANT RINGS OF REDUCTIVE GROUPS
    38   zeroset.lib   PROCEDURES FOR ROOTS AND FACTORIZATION
     8General purpose
     9  general_lib::     procedures of general type
     10  inout_lib::       procedures for manipulating in- and output
     11  poly_lib::        procedures for manipulating polynomials and ideals
     12  random_lib::      procedures of random/sparse  matrix and poly operations
     13  ring_lib::        procedures for manipulating rings and maps
     14
     15Linear algebra
     16  matrix_lib::      procedures for matrix operations
     17  jordan_lib::      procedures to compute the jordan normal form
     18  linalg_lib::      procedures for algorithmic linear algebra
     19
     20Commutative algebra
     21  algebra_lib::     procedures for computing with algebras and maps
     22  elim_lib::        procedures for elimination, saturation and blowing up
     23  homolog_lib::     procedures for homological algebra
     24  mregular_lib::    procedures for Castelnuovo-Mumford regularity
     25  normal_lib::      procedure for normalization
     26  primdec_lib::     procedures for primary decomposition
     27  primitiv_lib::    procedures for finding a primitive element
     28  reesclos_lib::    Rees Algebra and integral closure of an ideal
     29  intprog_lib::     Integer Programming
     30  toric_lib::       toric ideals
     31
     32Singularities
     33  classify_lib::    procedures for the Arnold-classifier of singularities
     34  deform_lib::      procedures for computing miniversal deformation
     35  equising_lib::    procedures for equisingularity strata
     36  gaussman_lib::    procedures for gauss-manin connection of a singularity
     37  hnoether_lib::    procedures for the Hamburger-Noether (Puiseux) development
     38  mondromy_lib::    procedures to compute the monodromy of a singularity
     39  sing_lib::        procedures for computing invariants of singularities
     40  spcurve_lib::     procedures for cm codimension 2 singularities
     41  spectrum_lib::    procedures for computing singularity spectra
     42
     43Invariant theory
     44  finvar_lib::      procedures to compute invariant rings of finite groups
     45  ainvar_lib::      procedures to compute invariants rings of the additive group
     46  rinvar_lib::      procedures to compute invariants ring of reductive groups
     47
     48Symbolic-numerical solving
     49  presolve_lib::   procedures for pre-solving polynomial equations
     50  solve_lib::      procedures to solve polynomial systems
     51  triang_lib::     procedures for decomposing zero-dimensional ideals
     52  ntsolve_lib::    one real solution of polynomial systems (Newton iteration)
     53  zeroset_lib::    procedures for roots and factorization
     54
     55Visualization
     56  graphics_lib::   procedures to draw  with Mathematica
     57  latex_lib::      procedures for typesetting in TeX
     58  surf_lib::       interface to the surf programm::
     59
     60Coding theory
     61  brnoeth_lib::    Brill-Noether algorithm, Weierstrass semigroups and AG codes
    3962";
    4063
    4164///////////////////////////////////////////////////////////////////////////////
    4265
    43 
     66//General purpose
     67LIB "general.lib";
     68LIB "inout.lib";
     69LIB "poly.lib";
     70LIB "random.lib";
     71LIB "ring.lib";
     72//Linear algebra
     73LIB "matrix.lib";
     74LIB "jordan.lib";
     75LIB "linalg.lib";
     76//Commutative algebra
     77LIB "algebra.lib";
     78LIB "elim.lib";
     79LIB "homolog.lib";
     80LIB "mregular.lib";
     81LIB "normal.lib";
     82LIB "primdec.lib";
     83LIB "primitiv.lib";
     84LIB "reesclos.lib";
     85LIB "intprog.lib";
     86LIB "toric.lib";
     87//Singularities
    4488LIB "classify.lib";
    4589LIB "deform.lib";
    46 LIB "elim.lib";
     90LIB "equising.lib";
     91LIB "gaussman.lib";
     92LIB "hnoether.lib";
     93LIB "mondromy.lib";
     94LIB "sing.lib";
     95LIB "spcurve.lib";
     96LIB "spectrum.lib";
     97//Invariant theory
    4798LIB "finvar.lib";
    48 LIB "general.lib";
    49 LIB "graphics.lib";
    50 LIB "hnoether.lib";
    51 LIB "homolog.lib";
    52 LIB "inout.lib";
    5399LIB "ainvar.lib";
    54 LIB "latex.lib";
    55 LIB "linalg.lib";
    56 LIB "matrix.lib";
    57 LIB "normal.lib";
    58 LIB "poly.lib";
     100LIB "rinvar.lib";
     101//Symbolic-numerical solving
    59102LIB "presolve.lib";
    60103LIB "solve.lib";
    61 LIB "primdec.lib";
    62 LIB "primitiv.lib";
    63 LIB "random.lib";
    64 LIB "ring.lib";
    65 LIB "sing.lib";
     104LIB "triang.lib";
     105LIB "ntsolve.lib";
     106LIB "zeroset.lib";
     107//Visualization
     108LIB "graphics.lib";
    66109LIB "latex.lib";
    67 // paramet.lib is not in the official distribution
    68 // LIB "paramet.lib";
    69 LIB "mondromy.lib"
    70 LIB "jordan.lib";
    71 LIB "spcurve.lib";
    72 LIB "algebra.lib";
    73 LIB "intprog.lib";
    74 LIB "toric.lib";
    75 LIB "mregular.lib"
    76 LIB "rinvar.lib"
    77 LIB "zeroset.lib";
     110LIB "surf.lib";
     111//Coding theory
     112LIB "brnoeth.lib";
    78113
     114
  • Singular/LIB/spectrum.lib

    redef30 r02a0976  
    1 // $Id: spectrum.lib,v 1.6 2000-12-15 11:51:57 Singular Exp $
     1// $Id: spectrum.lib,v 1.7 2000-12-15 16:20:45 Singular Exp $
    22///////////////////////////////////////////////////////////////////////////////
    33
    4 version="$Id: spectrum.lib,v 1.6 2000-12-15 11:51:57 Singular Exp $";
     4version="$Id: spectrum.lib,v 1.7 2000-12-15 16:20:45 Singular Exp $";
    55info="
    66LIBRARY:  spectrum.lib   PROCEDURES FOR COMPUTING SINGULARITY SPECTRA
    77
    88PROCEDURES:
    9  spectrum(poly);        spectrum of a isolated singularity
    10  spectrum(poly[,1]);    spectrum of a isolated singularity without tests
     9 spectrum(poly[,1]);    spectrum of a isolated singularity (with/without tests)
    1110 semic(s1,s2[,1]);      tests if s2 is semicontinous for s1 using
    1211                        half open intervalls
  • doc/NEWS.texi

    redef30 r02a0976  
    11@comment -*-texinfo-*-
    2 @comment $Id: NEWS.texi,v 1.24 2000-12-13 17:25:16 Singular Exp $
     2@comment $Id: NEWS.texi,v 1.25 2000-12-15 16:20:47 Singular Exp $
    33@comment this file contains the News about Singular versions
    44@comment Unix
     
    101101@item @nref{brnoeth_lib}
    102102Brill-Noether algorithm, Weierstrass semigroups and AG codes
    103 @item @nref{stratify_lib}
     103@c @item @nref{stratify_lib}
    104104@item @nref{paramet_lib}
    105105@item @nref{rinvar_lib}
Note: See TracChangeset for help on using the changeset viewer.