only print problem when in local dev
This commit is contained in:
@ -112,6 +112,9 @@ def solution_items(variables, solver_run):
|
||||
|
||||
return form_items
|
||||
|
||||
def print_problem_logs(problem):
|
||||
print(problem);
|
||||
for v in problem.variables(): print(v.name, "=", v.varValue);
|
||||
|
||||
# probably a better place for this...
|
||||
def is_float(element: String) -> bool:
|
||||
|
Reference in New Issue
Block a user