From c318f961e469cccbb572262270305566a0c7b604 Mon Sep 17 00:00:00 2001 From: GDeLaurentis Date: Sat, 4 May 2024 20:35:46 +0100 Subject: [PATCH] Fixing missing dependancy in setup.py --- README.md | 2 +- setup.py | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index d99b054..eeede17 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ Python classes for 'Ideal', 'Ring' and 'QuotientRing'. Several related functions ### Points on varieties over $\mathbb{F}_p$, $\mathbb{Q}_p$ and $\mathbb{C}$. -The function `ideal.point_on_variety` allows generate numerical solutions to arbirary systems of polynomial equations in arbitrary polynomial quotient rings, over any of the three above mentioned fields. The system of equations may be underconstrained, i.e. the ideal may have any dimension. The $p$-adic and complex solutions can be requested as not exact. I.e. the point may lie close to but not exactly on the associated variety. This is essential for numerical computations where otherwise division-by-zero erros may occur. The limitation is that Singular must be able to compute an indepednent set for the ideal, in order to reduce it to a zero dimensional sub-variety. +The function `ideal.point_on_variety` allows to obtain numerical solutions to arbirary systems of polynomial equations in arbitrary polynomial quotient rings, over any of the three above mentioned fields. The system of equations may be underconstrained, i.e. the ideal may have any dimension. The $p$-adic and complex solutions can be requested as not exact. I.e. the point may lie close to but not exactly on the associated variety. This is essential for numerical computations where otherwise division-by-zero erros may occur. The limitation is that Singular must be able to compute an indepednent set for the ideal, in order to reduce it to a zero dimensional sub-variety. ### Primality test (lighter than a primary decomposition). diff --git a/setup.py b/setup.py index 6d10d06..2d78c38 100644 --- a/setup.py +++ b/setup.py @@ -23,6 +23,7 @@ 'sympy', 'mutableint', 'pyadic', + 'multiset' ], classifiers=[ 'Development Status :: 4 - Beta',