-
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
Single step processor. #2272
Single step processor. #2272
Conversation
ad752f2
to
cce4375
Compare
let mut progress = false; | ||
|
||
for id in &self.machine_parts.identities { | ||
let row_offset = if id.contains_next_ref() { 0 } else { 1 }; |
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.
Hmm, this function does not look into intermediate definitions :/ So this would lead to a wrong result:
col foo = a + b';
foo = 2;
I think this should be fixed in a different PR, but maybe you could add a TODO?
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 opened #2302 to track this.
Co-authored-by: Georg Wiese <[email protected]>
…r into single_step_simple
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.
Cool!
@@ -42,20 +42,6 @@ impl<'a, T: FieldElement, Q: QueryCallback<T>> MutableState<'a, T, Q> { | |||
} | |||
} | |||
|
|||
#[cfg(test)] |
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.
This should be on main already, from #2299, no? I'm surprised GitHub shows this diff.
let mut progress = false; | ||
|
||
for id in &self.machine_parts.identities { | ||
let row_offset = if id.contains_next_ref() { 0 } else { 1 }; |
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 opened #2302 to track this.
No description provided.