You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For example, to use GLPK's exact simplex algorithm:
from sage.numerical.backends.generic_backend import get_solver
def glpk_exact_solver():
b = get_solver(solver="GLPK")
b.solver_parameter("simplex_or_intopt", "exact_simplex_only")
return b
delsarte_bound_additive_hamming_space(19,15,7,solver=glpk_exact_solver)