From bee46a4407c51f93e8e1f4b35205870b0fbfdde4 Mon Sep 17 00:00:00 2001 From: Josh Holtrop Date: Wed, 30 Mar 2011 17:34:43 -0400 Subject: [PATCH] more debug info --- Sketch.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Sketch.py b/Sketch.py index d497f86..f6fc82a 100644 --- a/Sketch.py +++ b/Sketch.py @@ -40,7 +40,8 @@ class Sketch(object): equ = c[0] * variables[shape_vars[c[1]]] + equ equs.append(equ) if len(equs) < dim: - print 'TODO: pad equation list' + print 'TODO: pad equation list: %d equations, %d vars' % \ + (len(equs), len(variables)) s = sle(equs) r = s.solve() if r.ff != float('inf'):