-
Notifications
You must be signed in to change notification settings - Fork 130
[Draft PR] Added comments where code changes may be needed - #1238 #1252
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
base: master
Are you sure you want to change the base?
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -233,13 +233,18 @@ class State { | |
| Memory::CallState callstate; | ||
| std::vector<Memory::FnRetData> ret_data; | ||
|
|
||
| // Add non-deterministic local_blk_size variable member | ||
|
|
||
|
||
| FnCallOutput replace(const StateValue &retval) const; | ||
|
|
||
| static FnCallOutput mkIf(const smt::expr &cond, const FnCallOutput &then, | ||
| const FnCallOutput &els); | ||
| smt::expr refines(const FnCallOutput &rhs, const Type &retval_ty) const; | ||
| auto operator<=>(const FnCallOutput &rhs) const = default; | ||
| }; | ||
|
|
||
| // Add non-deterministic local_blk_size variable member and pending variable to access it | ||
IamYJLee marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
|
||
| std::map<std::string, std::map<FnCallInput, FnCallOutput>> fn_call_data; | ||
| smt::expr fn_call_pre = true; | ||
| std::set<smt::expr> fn_call_qvars; | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.