Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make QCheck2.state.res immutable #291

Merged
merged 2 commits into from
Jul 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

- Remove `QCheck2.TestResult.get_instances` as retaining previous test inputs
cause memory leaks
- Make `QCheck2.state.res` immutable, silencing a compilation warning

## 0.21.3

Expand Down
2 changes: 1 addition & 1 deletion src/core/QCheck2.ml
Original file line number Diff line number Diff line change
Expand Up @@ -1562,7 +1562,7 @@ module Test = struct
step: 'a step;
handler : 'a handler;
rand: RS.t;
mutable res: 'a TestResult.t;
res: 'a TestResult.t;
mutable cur_count: int; (** number of iterations remaining to do *)
mutable cur_max_gen: int; (** maximum number of generations allowed *)
mutable cur_max_fail: int; (** maximum number of counter-examples allowed *)
Expand Down