Skip to content
Snippets Groups Projects
Commit 78ff124a authored by chsieh16's avatar chsieh16
Browse files

Remove or adjust print messages

parent 8cc8f2aa
No related branches found
No related tags found
No related merge requests found
......@@ -99,7 +99,7 @@ class FirstpassLearner(Z3LearnerBase):
print("(unsat)")
return None
else:
print("(unknown) or timeout!")
print(self._solver.reason_unknown())
return None
......
......@@ -80,8 +80,6 @@ class GurobiTeacherBase(TeacherBase):
m = self._gp_model
x = self._old_state
z = self._percept
print('Obj: %g, ObjBound: %g, x: %s, z: %s\n'
% (m.objVal, m.objBound, x.x, z.x))
return [tuple(x.x) + tuple(z.x)]
else:
return []
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment