diff --git a/geosolver/geometric.py b/geosolver/geometric.py index 3cfd2b5..fb1e310 100644 --- a/geosolver/geometric.py +++ b/geosolver/geometric.py @@ -842,7 +842,7 @@ class AngleConstraint(ParametricConstraint): cmp = self._value result = tol_eq(ang, cmp) if result == False: - diag_print("measured angle = "+str(ang)+", parameter value = "+str(cmp), "geometric") + diag_print("measured angle = "+str(ang)+", parameter value = "+str(cmp), "satisfied") return result def __str__(self): diff --git a/test/test.py b/test/test.py index 4b4ec82..f2d341a 100644 --- a/test/test.py +++ b/test/test.py @@ -789,7 +789,7 @@ def test(problem, use_prototype=True): check = True if len(result.solutions) == 0: check = False - diag_select("GeometricProblem.verify") + diag_select("(GeometricProblem.verify)|(satisfied)") for sol in result.solutions: print "solution:",sol check = check and problem.verify(sol)