Skip to content
This repository has been archived by the owner on Jan 30, 2023. It is now read-only.

Commit

Permalink
src/sage/rings/polynomial/multi_polynomial_sequence.py: Remove use of…
Browse files Browse the repository at this point in the history
… fes
  • Loading branch information
Matthias Koeppe committed Nov 19, 2022
1 parent 444d3f3 commit e7c8026
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 103 deletions.
96 changes: 0 additions & 96 deletions src/sage/features/fes.py

This file was deleted.

8 changes: 1 addition & 7 deletions src/sage/rings/polynomial/multi_polynomial_sequence.py
Original file line number Diff line number Diff line change
Expand Up @@ -1466,13 +1466,7 @@ def solve(self, algorithm='polybori', n=1, eliminate_linear_variables=True, ver
S = PolynomialSequence( R_solving, [ R_solving(f) for f in T] )

if S != []:
if algorithm == "exhaustive_search":
from sage.features.fes import LibFES
LibFES().require()
from sage.libs.fes import exhaustive_search
solutions = exhaustive_search(S, max_sols=n, verbose=verbose, **kwds)

elif algorithm == "polybori":
if algorithm == "polybori":
I = S.ideal()
if verbose:
I.groebner_basis(full_prot=True, **kwds)
Expand Down

0 comments on commit e7c8026

Please sign in to comment.