Skip to content

Commit 2b31ae6

Browse files
committed
increase max memory and steps
1 parent 45d794d commit 2b31ae6

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

CHANGELOG.md

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

77
* Fix decision making for simpler/faster programs
88

9+
### Enhancements
10+
11+
* Increase max memory and max number of steps
12+
913
## v23.4.28
1014

1115
### Bugfixes

src/sys/util.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ class Version {
1919
class Settings {
2020
public:
2121
static constexpr size_t DEFAULT_NUM_TERMS = 8;
22-
static constexpr int64_t DEFAULT_MAX_MEMORY = 1000;
23-
static constexpr int64_t DEFAULT_MAX_CYCLES = 60000000;
22+
static constexpr int64_t DEFAULT_MAX_MEMORY = 2000;
23+
static constexpr int64_t DEFAULT_MAX_CYCLES = 80000000;
2424

2525
size_t num_terms;
2626
int64_t max_memory;

0 commit comments

Comments
 (0)