Skip to content

Commit 6510ff1

Browse files
committed
increase max number of cycles
1 parent dffe272 commit 6510ff1

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@ To install or update LODA, please follow the [installation instructions](https:/
22

33
## [Unreleased]
44

5+
### Enhancements
6+
7+
* Increase max number of interpreter cycles to 10 million
8+
59
# v22.7.23
610

711
### Bugfixes

src/include/util.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ class Settings {
2020
public:
2121
static constexpr size_t DEFAULT_NUM_TERMS = 10;
2222
static constexpr int64_t DEFAULT_MAX_MEMORY = 100;
23-
static constexpr int64_t DEFAULT_MAX_CYCLES = 5000000;
23+
static constexpr int64_t DEFAULT_MAX_CYCLES = 10000000;
2424

2525
size_t num_terms;
2626
int64_t max_memory;

0 commit comments

Comments
 (0)