Skip to content

Commit

Permalink
removed deprecated code
Browse files Browse the repository at this point in the history
  • Loading branch information
fit-alessandro-berti committed Nov 7, 2024
1 parent 85d3958 commit 6ace1be
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 119 deletions.
9 changes: 1 addition & 8 deletions pm4py/util/lp/solver.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,16 +60,9 @@ class Parameters(Enum):
DEFAULT_LP_SOLVER_VARIANT = SCIPY

if importlib.util.find_spec("cvxopt"):
from pm4py.util.lp.variants import cvxopt_solver, cvxopt_solver_custom_align, cvxopt_solver_custom_align_ilp, \
cvxopt_solver_custom_align_arm
from pm4py.util.lp.variants import cvxopt_solver, cvxopt_solver_custom_align, cvxopt_solver_custom_align_ilp

custom_solver = cvxopt_solver_custom_align
try:
# for ARM-based Linux, we need to use a different call to GLPK
if "arm" in str(os.uname()[-1]):
custom_solver = cvxopt_solver
except:
pass

CVXOPT = "cvxopt"
CVXOPT_SOLVER_CUSTOM_ALIGN = "cvxopt_solver_custom_align"
Expand Down
111 changes: 0 additions & 111 deletions pm4py/util/lp/variants/cvxopt_solver_custom_align_arm.py

This file was deleted.

0 comments on commit 6ace1be

Please sign in to comment.