reduce example runtime

This commit is contained in:
Laurent Perron
2024-07-22 17:33:36 +02:00
parent a153da552d
commit 1a8e148aa6

View File

@@ -22,7 +22,7 @@ from ortools.sat.python import cp_model
_COEFF = flags.DEFINE_integer("coeff", 1, "The Pell equation coefficient.")
_MAX_VALUE = flags.DEFINE_integer("max_value", 500000000, "The maximum value.")
_MAX_VALUE = flags.DEFINE_integer("max_value", 5000_000, "The maximum value.")
def solve_pell(coeff: int, max_value: int):