diff options
| author | Laurenz <laurmaedje@gmail.com> | 2023-03-28 14:28:02 +0200 |
|---|---|---|
| committer | Laurenz <laurmaedje@gmail.com> | 2023-03-28 14:30:21 +0200 |
| commit | e84df1a03690d24cb87d53fb4ed70af9c473c6fb (patch) | |
| tree | 0266bfdab0a6942dd160d4d10d47b84afdec04eb /src/eval/mod.rs | |
| parent | a0249d230961c9ccbcc37dea61357f0ea56961cc (diff) | |
Fix tests on Windows
Fixes #386.
Diffstat (limited to 'src/eval/mod.rs')
| -rw-r--r-- | src/eval/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/eval/mod.rs b/src/eval/mod.rs index 8790bc18..e278d787 100644 --- a/src/eval/mod.rs +++ b/src/eval/mod.rs @@ -60,7 +60,7 @@ use crate::util::PathExt; use crate::World; const MAX_ITERATIONS: usize = 10_000; -const MAX_CALL_DEPTH: usize = 256; +const MAX_CALL_DEPTH: usize = 64; /// Evaluate a source file and return the resulting module. #[comemo::memoize] |
