source: git/Singular/LIB/all.lib @ 8fba48

spielwiese
Last change on this file since 8fba48 was 19bd75, checked in by Hans Schönemann <hannes@…>, 19 years ago
*hannes: removed param.lib git-svn-id: file:///usr/local/Singular/svn/trunk@7833 2c84dea3-7e68-4137-9b89-c4e89433aadc
  • Property mode set to 100644
File size: 4.1 KB
Line 
1// $Id: all.lib,v 1.40 2005-04-15 13:52:09 Singular Exp $
2///////////////////////////////////////////////////////////////////////////////
3version="$Id: all.lib,v 1.40 2005-04-15 13:52:09 Singular Exp $";
4category = "General purpose";
5info="
6LIBRARY:  all.lib   Load all libraries
7
8@format
9General purpose
10  general_lib:     Elementary Computations of General Type
11  inout_lib:       Printing and Manipulating In- and Output
12  poly_lib:        Procedures for Manipulating Polys, Ideals, Modules
13  random_lib:      Creating Random and Sparse Matrices, Ideals, Polys
14  ring_lib:        Manipulating Rings and Maps
15
16Linear algebra
17  linalg_lib:      Algorithmic Linear Algebra
18  matrix_lib:      Elementary Matrix Operations
19
20Commutative algebra
21  algebra_lib:     Compute with Algbras and Algebra Maps
22  elim_lib:        Elimination, Saturation and Blowing up
23  homolog_lib:     Procedures for Homological Algebra
24  intprog_lib:     Integer Programming with Groebner Basis Methods
25  mprimdec_lib:    Primary Decomposition of Modules
26  mregular_lib:    Castelnuovo-Mumford Regularity of CM-Schemes and Curves
27  normal_lib:      Normalization of Affine Rings
28  primdec_lib:     Primary Decomposition and Radical of Ideals
29  primitiv_lib:    Computing a Primitive Element
30  reesclos_lib:    Rees Algebra and Integral Closure of Ideals
31  toric_lib:       Standard Basis of Toric Ideals
32
33Singularities
34  alexpoly.lib:    Resolution Graph and Alexander Polynomial
35  classify_lib:    Arnold Classifier of Singularities
36  deform_lib:      Miniversal Deformation of Singularities and Modules
37  equising_lib:    Equisingularity Stratum of a Family of Plane Curves
38  gmssing.lib:     Gauss-Manin System of Isolated Singularities
39  gmspoly.lib:     Gauss-Manin System of Tame Polynomials
40  hnoether_lib:    Hamburger-Noether (Puiseux) Development
41  mondromy_lib:    Monodromy of an Isolated Hypersurface Singularity
42  qhmoduli.lib:    Moduli Spaces of Semi-Quasihomogeneous Singularities
43  sing_lib:        Invariants of Singularities
44  spcurve_lib:     Deformations and Invariants of CM-codim 2 Singularities
45  spectrum_lib:    Singularity Spectrum for Nondegenerate Singularities
46
47Invariant theory
48  ainvar_lib:      Invariant Rings of the Additive Group
49  finvar_lib:      Invariant Rings of Finite Groups
50  rinvar_lib:      Invariant Rings of Reductive Groups
51  stratify_lib:    Algorithmic Stratification for Unipotent Group-Actions
52
53Symbolic-numerical solving
54  ntsolve_lib:     Real Newton Solving of Polynomial Systems
55  presolve_lib:    Pre-Solving of Polynomial Equations
56  solve_lib:       Complex Solving of Polynomial Systems
57  triang_lib:      Decompose Zero-dimensional Ideals into Triangular Sets
58  zeroset_lib:     Procedures For Roots and Factorization
59
60Visualization
61  graphics_lib:    Procedures to use Graphics with Mathematica
62  latex_lib:       Typesetting of Singular-Objects in LaTex2e
63  surf_lib:        Procedures for Graphics with Surf
64
65Coding theory
66  brnoeth_lib:     Brill-Noether Algorithm, Weierstrass-SG and AG-codes
67
68Miscellaneous
69  makedbm_lib:     Data Base of Singularities for the Arnold-Classifier
70
71@end format
72";
73
74///////////////////////////////////////////////////////////////////////////////
75
76//General purpose
77LIB "general.lib";
78LIB "inout.lib";
79LIB "poly.lib";
80LIB "random.lib";
81LIB "ring.lib";
82//Linear algebra
83LIB "matrix.lib";
84LIB "linalg.lib";
85//Commutative algebra
86LIB "algebra.lib";
87LIB "elim.lib";
88LIB "homolog.lib";
89LIB "mprimdec.lib";
90LIB "mregular.lib";
91LIB "normal.lib";
92LIB "primdec.lib";
93LIB "primitiv.lib";
94LIB "reesclos.lib";
95LIB "intprog.lib";
96LIB "toric.lib";
97//Singularities
98LIB "alexpoly.lib";
99LIB "classify.lib";
100LIB "deform.lib";
101LIB "equising.lib";
102LIB "gmssing.lib";
103LIB "gmspoly.lib";
104LIB "hnoether.lib";
105LIB "mondromy.lib";
106LIB "qhmoduli.lib";
107LIB "sing.lib";
108LIB "spcurve.lib";
109LIB "spectrum.lib";
110//Invariant theory
111LIB "ainvar.lib";
112LIB "finvar.lib";
113LIB "rinvar.lib";
114LIB "stratify.lib";
115//Symbolic-numerical solving
116LIB "presolve.lib";
117LIB "solve.lib";
118LIB "triang.lib";
119LIB "ntsolve.lib";
120LIB "zeroset.lib";
121//Visualization
122LIB "graphics.lib";
123LIB "latex.lib";
124LIB "surf.lib";
125//Coding theory
126LIB "brnoeth.lib";
127//Miscellaneous
128LIB "makedbm.lib";
Note: See TracBrowser for help on using the repository browser.