Skip to content

Commit

Permalink
fixing threshold must be numeric and non-NAN issue ajgallego#5
Browse files Browse the repository at this point in the history
  • Loading branch information
VisualFox committed Feb 18, 2019
1 parent 362d4c7 commit c04b553
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion util.py
Expand Up @@ -11,7 +11,7 @@
#------------------------------------------------------------------------------
def init():
random.seed(1337)
np.set_printoptions(threshold=np.nan)
np.set_printoptions(threshold=sys.maxsize)
np.random.seed(1337)
sys.setrecursionlimit(40000)

Expand Down

0 comments on commit c04b553

Please sign in to comment.