Skip to content

Commit

Permalink
Merge pull request #492 from shizejin/fix_rouwenhorst_test
Browse files Browse the repository at this point in the history
FIX: Increase `tol` in `rouwenhorst` test.
  • Loading branch information
mmcky committed Jul 8, 2019
2 parents a787600 + c2d9a4b commit c96cae1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion quantecon/markov/tests/test_approximation.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ def setUp(self):
self.rho, self.sigma = np.random.uniform(0, 1, size=2)
self.n = np.random.random_integers(3, 25)
self.ybar = np.random.random_integers(0, 10)
self.tol = 1e-12
self.tol = 1e-10

mc = rouwenhorst(self.n, self.ybar, self.sigma, self.rho)
self.x, self.P = mc.state_values, mc.P
Expand Down

0 comments on commit c96cae1

Please sign in to comment.