this test tends to succeed more often :)

This commit is contained in:
Stephen McQuay 2011-02-03 09:30:58 -07:00
parent 33106985e1
commit 9a439ef7c3
1 changed files with 1 additions and 1 deletions

View File

@ -12,7 +12,7 @@ from interp.grid.simplex import contains
def exact_func(X):
x = X[0]
y = X[0]
return 1 - math.sin((x-0.5)**2 + (y-0.5)**2)
return 1 + x + y
class TestSequenceFunctions(unittest.TestCase):
def setUp(self):