-
Notifications
You must be signed in to change notification settings - Fork 27
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
Proof reordering (WIP) #3141
base: main
Are you sure you want to change the base?
Proof reordering (WIP) #3141
Conversation
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #3141 +/- ##
===========================================
Coverage 37.85% 37.86%
+ Complexity 17042 16953 -89
===========================================
Files 2082 2063 -19
Lines 127290 126069 -1221
Branches 21441 21321 -120
===========================================
- Hits 48183 47730 -453
+ Misses 73194 72484 -710
+ Partials 5913 5855 -58 ☔ View full report in Codecov by Sentry. |
52c42c2
to
0f182da
Compare
Experiment to logically group steps in proof.
Two main features:
TODOs
The order of proof steps is determined as follows:
sign_case_distinction
)To order the steps based on the dependency graph a queue of "available" graph nodes is managed. This queue is repeatedly iterated through to check for edges (steps) that are applicable. If they aren't the node is added to the end of the queue again. (More details will follow soon™)