-
Notifications
You must be signed in to change notification settings - Fork 101
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
Prover functions in queue #2461
Merged
+173
−167
Merged
Changes from all commits
Commits
Show all changes
31 commits
Select commit
Hold shift + click to select a range
01fda86
evaluate eagerly
chriseth 144e066
oe
chriseth eb79b42
x
chriseth 7f9d358
fix
chriseth f549ab0
x
chriseth f3c0c10
x
chriseth d1bbde6
x
chriseth 47604d0
x
chriseth 13ea71a
x
chriseth 7183a49
x
chriseth dc08751
x
chriseth ebf4612
x
chriseth eb78a9e
clippy
chriseth 33fc52e
move
chriseth 4583672
fix
chriseth 04e9a9a
Handle assignments in identity queue as well
chriseth df24e90
fix
chriseth b705223
clippy
chriseth 5347756
Remove process assignments.
chriseth 160cf10
fix tests.
chriseth e4d29ee
remove assignments.
chriseth b1a34d8
fix tests.
chriseth e82e18f
Merge remote-tracking branch 'origin/main' into handle-assignments-in…
chriseth 4564eac
Sort assignments first.
chriseth 7063105
Prover functions in queue.
chriseth 8cce9c8
Refactor reference computation.
chriseth bca4d9d
Merge remote-tracking branch 'origin/main' into prover_functions_in_q…
chriseth afd3830
Merge remote-tracking branch 'origin/main' into move_assignments_to_p…
chriseth 2bf52ad
Merge branch 'move_assignments_to_processor' into prover_functions_in…
chriseth c63dc65
Prevent clippy suggestion.
chriseth 93d49e4
Merge remote-tracking branch 'origin/main' into prover_functions_in_q…
chriseth File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
maybe this can return an iterator, usage seems to immediately call
iter()
.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I tried to make this return an iterator, but I got some errors wrt either references to
&mut self
or temporaries in lambda functions.