-
Notifications
You must be signed in to change notification settings - Fork 39
Generalize fibonacci rust example - Issue #128 #131
Generalize fibonacci rust example - Issue #128 #131
Conversation
examples/fibo_with_padding.rs
Outdated
// Fibonacci sequence is 10. (one less than num_steps above) | ||
|
||
// Expose the result of calculation and round number | ||
ctx.expose(b, chiquito::ast::ExposeOffset::Last); |
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.
@jae-cuz do a use chiquito::ast::ExposeOffset
@qwang98 you are the reviewer of this |
I agree that we should remove repetitive comments from |
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.
Please just fix the comments as suggested and I'm good with the PR otherwise.
I'm good with this! |
Resolves #128.
@leolara @qwang98 Ready for review. Added comments for added functionalities.
One thing to ask:
If we add a new file
fibo_with_padding.rs
, should we erase the same comments fromfibonacci.rs
? Please advise. Thanks!