Changeset 02a0976 in git
- Timestamp:
- Dec 15, 2000, 5:20:47 PM (22 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', '00e2e9c41af3fde1273eb3633f4c0c7c3db2579d')
- Children:
- d3bf0986c4b1a7bac5ffc43b873646317a0d91de
- Parents:
- edef3080503be9dafb0b4d33562cb634ef9d50a8
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/LIB/all.lib
redef30 r02a0976 1 // $Id: all.lib,v 1.2 8 2000-12-11 13:14:08Singular Exp $1 // $Id: all.lib,v 1.29 2000-12-15 16:20:44 Singular Exp $ 2 2 /////////////////////////////////////////////////////////////////////////////// 3 3 4 version="$Id: all.lib,v 1.2 8 2000-12-11 13:14:08Singular Exp $";4 version="$Id: all.lib,v 1.29 2000-12-15 16:20:44 Singular Exp $"; 5 5 info=" 6 6 LIBRARY: all.lib Load all libraries 7 7 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 8 General 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 15 Linear 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 20 Commutative 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 32 Singularities 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 43 Invariant 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 48 Symbolic-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 55 Visualization 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 60 Coding theory 61 brnoeth_lib:: Brill-Noether algorithm, Weierstrass semigroups and AG codes 39 62 "; 40 63 41 64 /////////////////////////////////////////////////////////////////////////////// 42 65 43 66 //General purpose 67 LIB "general.lib"; 68 LIB "inout.lib"; 69 LIB "poly.lib"; 70 LIB "random.lib"; 71 LIB "ring.lib"; 72 //Linear algebra 73 LIB "matrix.lib"; 74 LIB "jordan.lib"; 75 LIB "linalg.lib"; 76 //Commutative algebra 77 LIB "algebra.lib"; 78 LIB "elim.lib"; 79 LIB "homolog.lib"; 80 LIB "mregular.lib"; 81 LIB "normal.lib"; 82 LIB "primdec.lib"; 83 LIB "primitiv.lib"; 84 LIB "reesclos.lib"; 85 LIB "intprog.lib"; 86 LIB "toric.lib"; 87 //Singularities 44 88 LIB "classify.lib"; 45 89 LIB "deform.lib"; 46 LIB "elim.lib"; 90 LIB "equising.lib"; 91 LIB "gaussman.lib"; 92 LIB "hnoether.lib"; 93 LIB "mondromy.lib"; 94 LIB "sing.lib"; 95 LIB "spcurve.lib"; 96 LIB "spectrum.lib"; 97 //Invariant theory 47 98 LIB "finvar.lib"; 48 LIB "general.lib";49 LIB "graphics.lib";50 LIB "hnoether.lib";51 LIB "homolog.lib";52 LIB "inout.lib";53 99 LIB "ainvar.lib"; 54 LIB "latex.lib"; 55 LIB "linalg.lib"; 56 LIB "matrix.lib"; 57 LIB "normal.lib"; 58 LIB "poly.lib"; 100 LIB "rinvar.lib"; 101 //Symbolic-numerical solving 59 102 LIB "presolve.lib"; 60 103 LIB "solve.lib"; 61 LIB " primdec.lib";62 LIB " primitiv.lib";63 LIB " random.lib";64 LIB "ring.lib"; 65 LIB " sing.lib";104 LIB "triang.lib"; 105 LIB "ntsolve.lib"; 106 LIB "zeroset.lib"; 107 //Visualization 108 LIB "graphics.lib"; 66 109 LIB "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"; 110 LIB "surf.lib"; 111 //Coding theory 112 LIB "brnoeth.lib"; 78 113 114 -
Singular/LIB/spectrum.lib
redef30 r02a0976 1 // $Id: spectrum.lib,v 1. 6 2000-12-15 11:51:57Singular Exp $1 // $Id: spectrum.lib,v 1.7 2000-12-15 16:20:45 Singular Exp $ 2 2 /////////////////////////////////////////////////////////////////////////////// 3 3 4 version="$Id: spectrum.lib,v 1. 6 2000-12-15 11:51:57Singular Exp $";4 version="$Id: spectrum.lib,v 1.7 2000-12-15 16:20:45 Singular Exp $"; 5 5 info=" 6 6 LIBRARY: spectrum.lib PROCEDURES FOR COMPUTING SINGULARITY SPECTRA 7 7 8 8 PROCEDURES: 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) 11 10 semic(s1,s2[,1]); tests if s2 is semicontinous for s1 using 12 11 half open intervalls -
doc/NEWS.texi
redef30 r02a0976 1 1 @comment -*-texinfo-*- 2 @comment $Id: NEWS.texi,v 1.2 4 2000-12-13 17:25:16Singular Exp $2 @comment $Id: NEWS.texi,v 1.25 2000-12-15 16:20:47 Singular Exp $ 3 3 @comment this file contains the News about Singular versions 4 4 @comment Unix … … 101 101 @item @nref{brnoeth_lib} 102 102 Brill-Noether algorithm, Weierstrass semigroups and AG codes 103 @ item @nref{stratify_lib}103 @c @item @nref{stratify_lib} 104 104 @item @nref{paramet_lib} 105 105 @item @nref{rinvar_lib}
Note: See TracChangeset
for help on using the changeset viewer.