Skip to content

Commit

Permalink
set MaxEvalDepth value in jyacas to 1000
Browse files Browse the repository at this point in the history
Task #129 - MaxEvalDepth inconsistency
  • Loading branch information
grzegorzmazur committed Oct 1, 2015
1 parent bf1f1da commit 2a6a8fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion JavaYacas/net/sf/yacas/LispEnvironment.java
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ void SetPrecision(int aPrecision) throws Exception
Set<String> protected_symbols;

int iEvalDepth = 0;
int iMaxEvalDepth = 10000;
int iMaxEvalDepth = 1000;


/**
Expand Down

0 comments on commit 2a6a8fa

Please sign in to comment.