Skip to content

Commit

Permalink
Remove cache=True from _initialize_tableaux_ig
Browse files Browse the repository at this point in the history
Because of KeyError from Numba
  • Loading branch information
oyamad committed Nov 14, 2016
1 parent 4b48ed7 commit c73ab02
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion quantecon/compute_fp.py
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ def _compute_fixed_point_ig(T, v, error_tol, max_iter, verbose, print_skip,
return x_new


@jit(nopython=True, cache=True)
@jit(nopython=True)
def _initialize_tableaux_ig(X, Y, tableaux, bases):
"""
Given sequences `X` and `Y` of ndarrays, initialize the tableau and
Expand Down

0 comments on commit c73ab02

Please sign in to comment.