need to investigate what I was smoking in interp.baker.get_error before I can revive my baker 2D tests

This commit is contained in:
Stephen McQuay 2010-11-01 20:44:18 -06:00
parent fb103a2dd6
commit 4954633cb1
1 changed files with 4 additions and 3 deletions

View File

@ -79,9 +79,10 @@ class TestSequenceFunctions(unittest.TestCase):
self.q[size_of_simplex:size_of_simplex + extra_points])
answer = baker.run_baker(self.X, R, S)
a = answer['a']
b = answer['b']
c = answer['c']
print "\n", answer['abc']
a = answer['abc'][0]
b = answer['abc'][1]
c = answer['abc'][2]
self.assertAlmostEqual(a, c)
self.assertAlmostEqual(c, 0.0)