pkgsrc-wip/py-nzmath/PLIST
Kamel Ibn Aziz Derouiche 5a023d9a0e Import py26-nzmath-0.90.0 as wip/py-nzmath.
Number theory oriented calculation system

version 0.7.0 to 0.90.0
-----------------------
* change required Python version to 2.5.
* many changes in matrix.
* add new modules algfield, round2 and squarefree.
* add a new module factor in poly sub-package.
* add a new function map_choice in bigrandom.
* add a new function euler in combinatorial.
* add a method getRing to imaginary.Complex to fix sf bug # 1852828.
* add a new class Real in real.
* add a new method generate to factor.util.FactoringMethod.
* add a new method total_degree to classes in poly.multivar.
* add new methods resultant, discriminant and subresultant_extgcd to poly.uniutil.SubresultantGcdProvider.
* add a new class IntegerPolynomial in poly.uniutil.
* add a new method resultant to poly.multiutil.UniqueFactorizationDomainPolynomial.
* change LLL into a function in lattice.
* fix a few bugs in elliptic including sf bug #1913999.
* fix a few bugs in gcd including sf bug #1924839.
* fix a bug in prime._lucas_test_sequence.
* change inplementation of polynomial.resultant.
* a few minor modifications in rational.

version 0.6.0 to 0.7.0
----------------------
* add a new sub-package poly for new implementation of polynomials.
* enhance quad module; class group structure, etc.
* add a new module compatibility for easier treatment of sets compatibility.
* add new functions bell, stirling1 and stirling2 in combinatorial.
* add a new function inverse in ring.
* add a new method exact_division to ring.CommutativeRingElement.
* add new methods getCharacteristic and getCommonSuperring to ring.Ring. 
* add a new method permute,setKey,getData to permute.Permute and .ExPermute.
* add a new class PermGroup and move group methods from Permute and .ExPermute.
* fix a bug of equation.Newton.
* fix bugs in finitefield (including sf bug #1751708, #1752666).
* fix a bug of real.AbsoluteError (ML #75 reported by Dino Viehland).
* update matrix to get rid of special treatment of rational integers.
* speed up order and sgn in permute.Permute and .ExPermute.

version 0.5.1 to 0.6.0
----------------------
* add a new module arygcd for efficient gcds for some integer rings of imaginary quadratic fields.
* add a new module bigrange for simplifying loops.
* add a new module cubic_root for cubic residues and cubic roots for some integer rings of imaginary quadratic fields.
* add a new module factor.ecm for elliptic curve method factorization.
* add partition_numbers_upto and partition_number functions in combinatorial.
* fix a bug of arith1.AGM function. (sf bug #1600223)
* fix a bug of bigrandom.random function. (sf bug #1590692)
* fix a bug of equation.e2_Fp and add e1_ZnZ to the module.

version 0.5.0 to 0.5.1
----------------------
* restructure matrix module.
* restructure ec module.
* revise vector module.
* add zero and one for ResidueClassRing (requested by Bill Hale).
* add bsgs to quad.
* add lpsp and fpsp (Lucas and Frobenius pseudoprime tests) to prime.
* add __hash__ for several immutable classes.
* fix a bug of SimMethod in equation.
* fix bugs in polynomial.
* fix bugs in ring.

version 0.4.1 to 0.5.0
----------------------
* rearrange modules in factor sub-package.
* add a new module quad for computing class numbers of imaginary quadratic fields.
* add new modules group and perm for group order computation and calculations of permutation groups.
* fix a bug of issquare function in arith1.
* fix a bug of e3 function in equation.
* move zassenhaus.combinationIndexGenerator to combinatorial.
* add functions coprime and pairwise_coprime to gcd.
* add a function log to arith1.
* add a method smith to matrix.IntegerMatrix.
* add functions fallingfactorial, risingfactorial, multinomial and partitionGenerator to combinatorial.

version 0.4.0 to 0.4.1
----------------------
* fix a bug of Schoof's method, EC.point, etc. in elliptic.
* fix a bug of integrate method in polynomial.
* fix a bug of e3_Fp function in equation.
* move elliptic.divi to factor.AllDivisors.
* rename arith1.sqroot to modsqrt and remove resembles in factor sub-package.
* move vp from prime to arith1 and remove factor.factor.ord.
* remove dependency on factor.trialDivision from prime.
* move issquare from factor to arith1.
* add a function getRing in ring.
* add a function mpqsfind in factor.mpqs.
* add a method order to finitefield.FinitePrimeFieldElement.
* add generator_eratosthenes to prime (EXPERIMENTAL).

version 0.3.1 to 0.4.0
----------------------
* add new modules equation providing a root finding methods and zassenhaus providing factorization of integer coefficient polynomials.
* fix some bugs in factor.factor and polynomial.
* add a method to culculate Mordel-Weil group structure of elliptic curve over finite fields. 
* add a function floorpowerroot in arith1.
* add functions bernoulli and catalan in combinatorial.
* add a function PrimePowerTest in factor.factor.
* add a function sigma in multiplicative.

version 0.3.0 to 0.3.1
----------------------
* fix import problem, and include finitefield.py mistakenly missing in 0.3.0.

version 0.2.1 to 0.3.0
----------------------
* create a new module multiplicative.py with euler and moebius
  from arith1.py to avoid circular import.

version 0.2.0 to 0.2.1
----------------------
* include some missing files in 0.2.0.

Version 0.1.1 to 0.2.0
----------------------
* add a new module factor.mpqs, which provides multi-polynomial
  quadratic sieve method.
* add a method to culculate order of elliptic curve over finite fields.
* rewrite polynomial.py for one variable polynomials.
* rewrite real.py and imaginary.py.
* fix bug in matrix.py (reported by Justin Walker).
* many other bug fixes.
* create a tutorial.txt document.

Version 0.1.0 to 0.1.1
----------------------
* BSD-licensed.
* add a constant j to imaginary.
* intializing Rational with denominator 0 raises ZeroDivisionError.
* fix bugs in real.py and elliptic.py.

Version 0.0.1 to 0.1.0
----------------------
* add new module elliptic for elliptic curve operations.
* remove optional argument for generator in prime.py. Condition may
  be specified with itertools instead.
* add new module finitefield for finite field.  It only includes
  finite prime field at the present moment.
* add new module combinatrial including binomial and factorial.
* add issubring and issuperring to Ring in ring.py.
* add mpqs function (multi-polynomial quadratic sieve) in factor.py.
* add IntegerIfIntOrLong function in rational.py.
* add LUDecomposition method to Matrix in matrix.py.
* now you can factor a very big but very smooth integer by trial division.
* speed up real.log, and it now accepts float.
* fix bugs in rational.py, integerResidueClass.py, etc..

Version 0.0.0 to 0.0.1
----------------------
* add __long__ and __int__ methods to Rational in rational.py.
* add gcd method to PolynomialRing in polynomial.py.
* fix bugs in matrix.py, polynomial.py.
2010-09-06 13:52:20 +00:00

274 lines
14 KiB
Text

@comment $NetBSD: PLIST,v 1.1.1.1 2010/09/06 13:52:20 jihbed Exp $
${PYSITELIB}/nzmath/__init__.py
${PYSITELIB}/nzmath/__init__.pyc
${PYSITELIB}/nzmath/__init__.pyo
${PYSITELIB}/nzmath/algfield.py
${PYSITELIB}/nzmath/algfield.pyc
${PYSITELIB}/nzmath/algfield.pyo
${PYSITELIB}/nzmath/arith1.py
${PYSITELIB}/nzmath/arith1.pyc
${PYSITELIB}/nzmath/arith1.pyo
${PYSITELIB}/nzmath/arygcd.py
${PYSITELIB}/nzmath/arygcd.pyc
${PYSITELIB}/nzmath/arygcd.pyo
${PYSITELIB}/nzmath/bigrandom.py
${PYSITELIB}/nzmath/bigrandom.pyc
${PYSITELIB}/nzmath/bigrandom.pyo
${PYSITELIB}/nzmath/bigrange.py
${PYSITELIB}/nzmath/bigrange.pyc
${PYSITELIB}/nzmath/bigrange.pyo
${PYSITELIB}/nzmath/combinatorial.py
${PYSITELIB}/nzmath/combinatorial.pyc
${PYSITELIB}/nzmath/combinatorial.pyo
${PYSITELIB}/nzmath/compatibility.py
${PYSITELIB}/nzmath/compatibility.pyc
${PYSITELIB}/nzmath/compatibility.pyo
${PYSITELIB}/nzmath/cubic_root.py
${PYSITELIB}/nzmath/cubic_root.pyc
${PYSITELIB}/nzmath/cubic_root.pyo
${PYSITELIB}/nzmath/elliptic.py
${PYSITELIB}/nzmath/elliptic.pyc
${PYSITELIB}/nzmath/elliptic.pyo
${PYSITELIB}/nzmath/equation.py
${PYSITELIB}/nzmath/equation.pyc
${PYSITELIB}/nzmath/equation.pyo
${PYSITELIB}/nzmath/factor/__init__.py
${PYSITELIB}/nzmath/factor/__init__.pyc
${PYSITELIB}/nzmath/factor/__init__.pyo
${PYSITELIB}/nzmath/factor/ecm.py
${PYSITELIB}/nzmath/factor/ecm.pyc
${PYSITELIB}/nzmath/factor/ecm.pyo
${PYSITELIB}/nzmath/factor/find.py
${PYSITELIB}/nzmath/factor/find.pyc
${PYSITELIB}/nzmath/factor/find.pyo
${PYSITELIB}/nzmath/factor/methods.py
${PYSITELIB}/nzmath/factor/methods.pyc
${PYSITELIB}/nzmath/factor/methods.pyo
${PYSITELIB}/nzmath/factor/misc.py
${PYSITELIB}/nzmath/factor/misc.pyc
${PYSITELIB}/nzmath/factor/misc.pyo
${PYSITELIB}/nzmath/factor/mpqs.py
${PYSITELIB}/nzmath/factor/mpqs.pyc
${PYSITELIB}/nzmath/factor/mpqs.pyo
${PYSITELIB}/nzmath/factor/util.py
${PYSITELIB}/nzmath/factor/util.pyc
${PYSITELIB}/nzmath/factor/util.pyo
${PYSITELIB}/nzmath/finitefield.py
${PYSITELIB}/nzmath/finitefield.pyc
${PYSITELIB}/nzmath/finitefield.pyo
${PYSITELIB}/nzmath/gcd.py
${PYSITELIB}/nzmath/gcd.pyc
${PYSITELIB}/nzmath/gcd.pyo
${PYSITELIB}/nzmath/group.py
${PYSITELIB}/nzmath/group.pyc
${PYSITELIB}/nzmath/group.pyo
${PYSITELIB}/nzmath/imaginary.py
${PYSITELIB}/nzmath/imaginary.pyc
${PYSITELIB}/nzmath/imaginary.pyo
${PYSITELIB}/nzmath/integerResidueClass.py
${PYSITELIB}/nzmath/integerResidueClass.pyc
${PYSITELIB}/nzmath/integerResidueClass.pyo
${PYSITELIB}/nzmath/lattice.py
${PYSITELIB}/nzmath/lattice.pyc
${PYSITELIB}/nzmath/lattice.pyo
${PYSITELIB}/nzmath/matrix.py
${PYSITELIB}/nzmath/matrix.pyc
${PYSITELIB}/nzmath/matrix.pyo
${PYSITELIB}/nzmath/multiplicative.py
${PYSITELIB}/nzmath/multiplicative.pyc
${PYSITELIB}/nzmath/multiplicative.pyo
${PYSITELIB}/nzmath/permute.py
${PYSITELIB}/nzmath/permute.pyc
${PYSITELIB}/nzmath/permute.pyo
${PYSITELIB}/nzmath/poly/__init__.py
${PYSITELIB}/nzmath/poly/__init__.pyc
${PYSITELIB}/nzmath/poly/__init__.pyo
${PYSITELIB}/nzmath/poly/factor.py
${PYSITELIB}/nzmath/poly/factor.pyc
${PYSITELIB}/nzmath/poly/factor.pyo
${PYSITELIB}/nzmath/poly/formalsum.py
${PYSITELIB}/nzmath/poly/formalsum.pyc
${PYSITELIB}/nzmath/poly/formalsum.pyo
${PYSITELIB}/nzmath/poly/multiutil.py
${PYSITELIB}/nzmath/poly/multiutil.pyc
${PYSITELIB}/nzmath/poly/multiutil.pyo
${PYSITELIB}/nzmath/poly/multivar.py
${PYSITELIB}/nzmath/poly/multivar.pyc
${PYSITELIB}/nzmath/poly/multivar.pyo
${PYSITELIB}/nzmath/poly/termorder.py
${PYSITELIB}/nzmath/poly/termorder.pyc
${PYSITELIB}/nzmath/poly/termorder.pyo
${PYSITELIB}/nzmath/poly/uniutil.py
${PYSITELIB}/nzmath/poly/uniutil.pyc
${PYSITELIB}/nzmath/poly/uniutil.pyo
${PYSITELIB}/nzmath/poly/univar.py
${PYSITELIB}/nzmath/poly/univar.pyc
${PYSITELIB}/nzmath/poly/univar.pyo
${PYSITELIB}/nzmath/polynomial.py
${PYSITELIB}/nzmath/polynomial.pyc
${PYSITELIB}/nzmath/polynomial.pyo
${PYSITELIB}/nzmath/prime.py
${PYSITELIB}/nzmath/prime.pyc
${PYSITELIB}/nzmath/prime.pyo
${PYSITELIB}/nzmath/quad.py
${PYSITELIB}/nzmath/quad.pyc
${PYSITELIB}/nzmath/quad.pyo
${PYSITELIB}/nzmath/rational.py
${PYSITELIB}/nzmath/rational.pyc
${PYSITELIB}/nzmath/rational.pyo
${PYSITELIB}/nzmath/rationalFunction.py
${PYSITELIB}/nzmath/rationalFunction.pyc
${PYSITELIB}/nzmath/rationalFunction.pyo
${PYSITELIB}/nzmath/real.py
${PYSITELIB}/nzmath/real.pyc
${PYSITELIB}/nzmath/real.pyo
${PYSITELIB}/nzmath/ring.py
${PYSITELIB}/nzmath/ring.pyc
${PYSITELIB}/nzmath/ring.pyo
${PYSITELIB}/nzmath/round2.py
${PYSITELIB}/nzmath/round2.pyc
${PYSITELIB}/nzmath/round2.pyo
${PYSITELIB}/nzmath/squarefree.py
${PYSITELIB}/nzmath/squarefree.pyc
${PYSITELIB}/nzmath/squarefree.pyo
${PYSITELIB}/nzmath/vector.py
${PYSITELIB}/nzmath/vector.pyc
${PYSITELIB}/nzmath/vector.pyo
${PYSITELIB}/nzmath/zassenhaus.py
${PYSITELIB}/nzmath/zassenhaus.pyc
${PYSITELIB}/nzmath/zassenhaus.pyo
share/doc/NZMATH-${PKGVERSION}/manual/default.css
share/doc/NZMATH-${PKGVERSION}/manual/faq.html
share/doc/NZMATH-${PKGVERSION}/manual/index.html
share/doc/NZMATH-${PKGVERSION}/manual/install.html
share/doc/NZMATH-${PKGVERSION}/manual/modules/algfield.html
share/doc/NZMATH-${PKGVERSION}/manual/modules/algfield_ApproxAlgNumber.html
share/doc/NZMATH-${PKGVERSION}/manual/modules/algfield_BasicAlgNumber.html
share/doc/NZMATH-${PKGVERSION}/manual/modules/algfield_MatAlgNumber.html
share/doc/NZMATH-${PKGVERSION}/manual/modules/algfield_NumberField.html
share/doc/NZMATH-${PKGVERSION}/manual/modules/arith1.html
share/doc/NZMATH-${PKGVERSION}/manual/modules/arygcd.html
share/doc/NZMATH-${PKGVERSION}/manual/modules/bigrandom.html
share/doc/NZMATH-${PKGVERSION}/manual/modules/bigrange.html
share/doc/NZMATH-${PKGVERSION}/manual/modules/combinatorial.html
share/doc/NZMATH-${PKGVERSION}/manual/modules/compatibility.html
share/doc/NZMATH-${PKGVERSION}/manual/modules/cubic_root.html
share/doc/NZMATH-${PKGVERSION}/manual/modules/elliptic.html
share/doc/NZMATH-${PKGVERSION}/manual/modules/elliptic_ECGeneric.html
share/doc/NZMATH-${PKGVERSION}/manual/modules/elliptic_ECoverF2.html
share/doc/NZMATH-${PKGVERSION}/manual/modules/elliptic_ECoverFp.html
share/doc/NZMATH-${PKGVERSION}/manual/modules/elliptic_ECoverQ.html
share/doc/NZMATH-${PKGVERSION}/manual/modules/equation.html
share/doc/NZMATH-${PKGVERSION}/manual/modules/factor.html
share/doc/NZMATH-${PKGVERSION}/manual/modules/factor_ecm.html
share/doc/NZMATH-${PKGVERSION}/manual/modules/factor_find.html
share/doc/NZMATH-${PKGVERSION}/manual/modules/factor_methods.html
share/doc/NZMATH-${PKGVERSION}/manual/modules/factor_misc.html
share/doc/NZMATH-${PKGVERSION}/manual/modules/factor_mpqs.html
share/doc/NZMATH-${PKGVERSION}/manual/modules/factor_util.html
share/doc/NZMATH-${PKGVERSION}/manual/modules/factor_util_FactoringInteger.html
share/doc/NZMATH-${PKGVERSION}/manual/modules/factor_util_FactoringMethod.html
share/doc/NZMATH-${PKGVERSION}/manual/modules/finitefield.html
share/doc/NZMATH-${PKGVERSION}/manual/modules/finitefield_FiniteExtendedField.html
share/doc/NZMATH-${PKGVERSION}/manual/modules/finitefield_FiniteExtendedFieldElement.html
share/doc/NZMATH-${PKGVERSION}/manual/modules/finitefield_FiniteField.html
share/doc/NZMATH-${PKGVERSION}/manual/modules/finitefield_FiniteFieldElement.html
share/doc/NZMATH-${PKGVERSION}/manual/modules/finitefield_FinitePrimeField.html
share/doc/NZMATH-${PKGVERSION}/manual/modules/finitefield_FinitePrimeFieldElement.html
share/doc/NZMATH-${PKGVERSION}/manual/modules/gcd.html
share/doc/NZMATH-${PKGVERSION}/manual/modules/group.html
share/doc/NZMATH-${PKGVERSION}/manual/modules/group_AbelianGenerate.html
share/doc/NZMATH-${PKGVERSION}/manual/modules/group_GenerateGroup.html
share/doc/NZMATH-${PKGVERSION}/manual/modules/group_Group.html
share/doc/NZMATH-${PKGVERSION}/manual/modules/group_GroupElement.html
share/doc/NZMATH-${PKGVERSION}/manual/modules/imaginary.html
share/doc/NZMATH-${PKGVERSION}/manual/modules/imaginary_AbsoluteError.html
share/doc/NZMATH-${PKGVERSION}/manual/modules/imaginary_Complex.html
share/doc/NZMATH-${PKGVERSION}/manual/modules/imaginary_ComplexField.html
share/doc/NZMATH-${PKGVERSION}/manual/modules/imaginary_ExponentialPowerSeries.html
share/doc/NZMATH-${PKGVERSION}/manual/modules/imaginary_RelativeError.html
share/doc/NZMATH-${PKGVERSION}/manual/modules/integerResidueClass.html
share/doc/NZMATH-${PKGVERSION}/manual/modules/integerResidueClass_IntegerResidueClass.html
share/doc/NZMATH-${PKGVERSION}/manual/modules/integerResidueClass_IntegerResidueClassRing.html
share/doc/NZMATH-${PKGVERSION}/manual/modules/lattice.html
share/doc/NZMATH-${PKGVERSION}/manual/modules/manual.html
share/doc/NZMATH-${PKGVERSION}/manual/modules/matrix.html
share/doc/NZMATH-${PKGVERSION}/manual/modules/matrix_FieldMatrix.html
share/doc/NZMATH-${PKGVERSION}/manual/modules/matrix_FieldSquareMatrix.html
share/doc/NZMATH-${PKGVERSION}/manual/modules/matrix_Matrix.html
share/doc/NZMATH-${PKGVERSION}/manual/modules/matrix_MatrixRing.html
share/doc/NZMATH-${PKGVERSION}/manual/modules/matrix_RingMatrix.html
share/doc/NZMATH-${PKGVERSION}/manual/modules/matrix_RingSquareMatrix.html
share/doc/NZMATH-${PKGVERSION}/manual/modules/matrix_SquareMatrix.html
share/doc/NZMATH-${PKGVERSION}/manual/modules/matrix_Subspace.html
share/doc/NZMATH-${PKGVERSION}/manual/modules/multiplicative.html
share/doc/NZMATH-${PKGVERSION}/manual/modules/permute.html
share/doc/NZMATH-${PKGVERSION}/manual/modules/permute_ExPermute.html
share/doc/NZMATH-${PKGVERSION}/manual/modules/permute_PermGroup.html
share/doc/NZMATH-${PKGVERSION}/manual/modules/permute_Permute.html
share/doc/NZMATH-${PKGVERSION}/manual/modules/poly.html
share/doc/NZMATH-${PKGVERSION}/manual/modules/poly_factor.html
share/doc/NZMATH-${PKGVERSION}/manual/modules/poly_formalsum.html
share/doc/NZMATH-${PKGVERSION}/manual/modules/poly_formalsum_DictFormalSum.html
share/doc/NZMATH-${PKGVERSION}/manual/modules/poly_formalsum_FormalSumContainerInterface.html
share/doc/NZMATH-${PKGVERSION}/manual/modules/poly_formalsum_ListFormalSum.html
share/doc/NZMATH-${PKGVERSION}/manual/modules/poly_multiutil.html
share/doc/NZMATH-${PKGVERSION}/manual/modules/poly_multiutil_DomainPolynomial.html
share/doc/NZMATH-${PKGVERSION}/manual/modules/poly_multiutil_PolynomialRingAnonymousVariables.html
share/doc/NZMATH-${PKGVERSION}/manual/modules/poly_multiutil_RingPolynomial.html
share/doc/NZMATH-${PKGVERSION}/manual/modules/poly_multiutil_UniqueFactorizationDomainPolynomial.html
share/doc/NZMATH-${PKGVERSION}/manual/modules/poly_multivar.html
share/doc/NZMATH-${PKGVERSION}/manual/modules/poly_multivar_TermIndeces.html
share/doc/NZMATH-${PKGVERSION}/manual/modules/poly_termorder.html
share/doc/NZMATH-${PKGVERSION}/manual/modules/poly_termorder_MultivarTermOrder.html
share/doc/NZMATH-${PKGVERSION}/manual/modules/poly_termorder_TermOrderInterface.html
share/doc/NZMATH-${PKGVERSION}/manual/modules/poly_termorder_UnivarTermOrder.html
share/doc/NZMATH-${PKGVERSION}/manual/modules/poly_uniutil.html
share/doc/NZMATH-${PKGVERSION}/manual/modules/poly_uniutil_DomainPolynomial.html
share/doc/NZMATH-${PKGVERSION}/manual/modules/poly_uniutil_FieldPolynomial.html
share/doc/NZMATH-${PKGVERSION}/manual/modules/poly_uniutil_FinitePrimeFieldPolynomial.html
share/doc/NZMATH-${PKGVERSION}/manual/modules/poly_uniutil_IntegerPolynomial.html
share/doc/NZMATH-${PKGVERSION}/manual/modules/poly_uniutil_PolynomialIdeal.html
share/doc/NZMATH-${PKGVERSION}/manual/modules/poly_uniutil_PolynomialRingAnonymousVariable.html
share/doc/NZMATH-${PKGVERSION}/manual/modules/poly_uniutil_RingPolynomial.html
share/doc/NZMATH-${PKGVERSION}/manual/modules/poly_uniutil_UniqueFactorizationDomainPolynomial.html
share/doc/NZMATH-${PKGVERSION}/manual/modules/poly_univar.html
share/doc/NZMATH-${PKGVERSION}/manual/modules/poly_univar_BasicPolynomial.html
share/doc/NZMATH-${PKGVERSION}/manual/modules/poly_univar_PolynomialInterface.html
share/doc/NZMATH-${PKGVERSION}/manual/modules/poly_univar_SortedPolynomial.html
share/doc/NZMATH-${PKGVERSION}/manual/modules/polynomial.html
share/doc/NZMATH-${PKGVERSION}/manual/modules/polynomial_MultiVariablePolynomialIdeal.html
share/doc/NZMATH-${PKGVERSION}/manual/modules/polynomial_MultiVariableSparsePolynomial.html
share/doc/NZMATH-${PKGVERSION}/manual/modules/polynomial_OneVariablePolynomial.html
share/doc/NZMATH-${PKGVERSION}/manual/modules/polynomial_OneVariablePolynomialChar0.html
share/doc/NZMATH-${PKGVERSION}/manual/modules/polynomial_OneVariablePolynomialCharNonZero.html
share/doc/NZMATH-${PKGVERSION}/manual/modules/polynomial_OneVariablePolynomialCoefficients.html
share/doc/NZMATH-${PKGVERSION}/manual/modules/polynomial_OneVariablePolynomialIdeal.html
share/doc/NZMATH-${PKGVERSION}/manual/modules/polynomial_PolynomialResidueRing.html
share/doc/NZMATH-${PKGVERSION}/manual/modules/polynomial_PolynomialRing.html
share/doc/NZMATH-${PKGVERSION}/manual/modules/polynomial_RationalOneVariablePolynomial.html
share/doc/NZMATH-${PKGVERSION}/manual/modules/prime.html
share/doc/NZMATH-${PKGVERSION}/manual/modules/quad.html
share/doc/NZMATH-${PKGVERSION}/manual/modules/quad_ClassGroup.html
share/doc/NZMATH-${PKGVERSION}/manual/modules/quad_NextElement.html
share/doc/NZMATH-${PKGVERSION}/manual/modules/quad_ReducedQuadraticForm.html
share/doc/NZMATH-${PKGVERSION}/manual/modules/rational.html
share/doc/NZMATH-${PKGVERSION}/manual/modules/rationalFunction.html
share/doc/NZMATH-${PKGVERSION}/manual/modules/rationalFunction_RationalFunction.html
share/doc/NZMATH-${PKGVERSION}/manual/modules/rationalFunction_RationalFunctionField.html
share/doc/NZMATH-${PKGVERSION}/manual/modules/rational_Integer.html
share/doc/NZMATH-${PKGVERSION}/manual/modules/rational_IntegerRing.html
share/doc/NZMATH-${PKGVERSION}/manual/modules/rational_Rational.html
share/doc/NZMATH-${PKGVERSION}/manual/modules/rational_RationalField.html
share/doc/NZMATH-${PKGVERSION}/manual/modules/real.html
share/doc/NZMATH-${PKGVERSION}/manual/modules/real_AbsoluteError.html
share/doc/NZMATH-${PKGVERSION}/manual/modules/real_Constant.html
share/doc/NZMATH-${PKGVERSION}/manual/modules/real_ExponentialPowerSeries.html
share/doc/NZMATH-${PKGVERSION}/manual/modules/real_RealField.html
share/doc/NZMATH-${PKGVERSION}/manual/modules/real_RelativeError.html
share/doc/NZMATH-${PKGVERSION}/manual/modules/ring.html
share/doc/NZMATH-${PKGVERSION}/manual/modules/round2.html
share/doc/NZMATH-${PKGVERSION}/manual/modules/squarefree.html
share/doc/NZMATH-${PKGVERSION}/manual/modules/vector.html
share/doc/NZMATH-${PKGVERSION}/manual/modules/zassenhaus.html
share/doc/NZMATH-${PKGVERSION}/manual/tutorial.html