-
Notifications
You must be signed in to change notification settings - Fork 112
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
Arrabiata: define correctly the different challenges used in the protocol #2684
Conversation
2526618
to
e815585
Compare
The test is now working as the PR has been merged and we upgraded arkworks.
Respect Rust convention to move integration tests in a different subdirectory
2c94366
to
bde9704
Compare
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #2684 +/- ##
==========================================
- Coverage 72.60% 72.59% -0.01%
==========================================
Files 246 246
Lines 58154 58156 +2
==========================================
- Hits 42220 42219 -1
- Misses 15934 15937 +3 ☔ View full report in Codecov by Sentry. |
dd931a2
to
3e5f19f
Compare
} | ||
|
||
fn text(&self, _cache: &mut HashMap<CacheId, Self>) -> String { | ||
let col = self.col.text(&mut HashMap::new()); |
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.
why isn't the cache in the arg of the function given as arg to the recursive call of text ?
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.
Not the same type, and also, it is unused in any case.
@@ -3075,7 +3079,7 @@ where | |||
}); | |||
res | |||
} | |||
Atom(Cell(v)) => v.latex(), | |||
Atom(Cell(v)) => v.latex(&mut HashMap::new()), |
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.
why isn't the cache in the arg of the function given as arg to the recursive call ?
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.
Not the same type, and also, it is unused in any case.
@@ -3122,7 +3126,7 @@ where | |||
}); | |||
res | |||
} | |||
Atom(Cell(v)) => v.text(), | |||
Atom(Cell(v)) => v.text(&mut HashMap::new()), |
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.
why isn't the cache in the arg of the function given as arg to the recursive call ?
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.
Not the same type, and also, it is unused in any case.
I also added some changes in Kimchi. Lemme know if a different PR is required. I splitted the changes in different clean commits.
Fix #2685