only print problem when in local dev

This commit is contained in:
Adrian Manteza
2022-03-17 22:46:04 +00:00
parent 37a5db4c9b
commit e4f51b8a3f
2 changed files with 6 additions and 3 deletions

View File

@ -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: