-
Notifications
You must be signed in to change notification settings - Fork 29
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
Feature/internal math #3
Feature/internal math #3
Conversation
I have a question. How do you intend to expand As you might already know, mod foo {}
mod foo {} $ cargo clippy
Checking a v0.1.0 (/home/ryo/src/local/hage/a)
error[E0428]: the name `foo` is defined multiple times
--> src/main.rs:4:1
|
3 | mod foo {}
| ------- previous definition of the module `foo` here
4 | mod foo {}
| ^^^^^^^ `foo` redefined here
|
= note: `foo` must be defined only once in the type namespace of this module
error: aborting due to previous error
For more information about this error, try `rustc --explain E0428`.
error: could not compile `a`.
To learn more, run the command again with --verbose. |
@qryxip I realized that I shouldn't wrap with |
I'm worried that there may be some other points that the original C++ code relies on its C++ behavior... |
BTW, how do we suppress #![allow(clippy::many_single_char_names)] |
@qryxip IMHO it is inevitable to use single-character variables in competitive programming, so it may be good idea to suppress module-wide. |
...which was not documented in the original code.
Thanks @koba-e964 Co-authored-by: Hiroki Kobayashi <3303362+koba-e964@users.noreply.github.com>
src/internal_math.rs
Outdated
/// # Returns | ||
/// `(x ** n) % m` | ||
/* const */ | ||
fn pow_mod_constexpr(x: i64, mut n: i64, m: i32) -> i64 { |
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.
It's no longer constexpr
.
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.
Do you think it's better change the name accordingly? (Yes, it's indeed confusing, I agree)
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.
Let's implement the same functionality, not a pure copy.
Thanks @koba-e964 again! Co-authored-by: Hiroki Kobayashi <3303362+koba-e964@users.noreply.github.com>
By the way, why do they add underscores to some fields in structs (as in |
Remove "_constexpr" from function name that are not const fn
…ure/internal_math
I'd rather you did. |
@koba-e964 I tried adding it at the first line in |
By the way what should the visibility of each items be? I'm not familiar with it so much so please somebody tell me. |
I've added some tests and think that all the code is working properly. |
|
I mean not the first line, but the line containing |
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.
Once you resolve all clippy warnings, LGTM.
How can I get rid of "function/struct/method is not used" warnings? |
I've forgotten |
For |
Or adding |
Adding |
|
Reffering to |
Unfortunately it is triggered ( https://github.com/rust-lang-ja/ac-library-rs/pull/3/checks?check_run_id=1094713411#step:5:8 ). I'll simply allow it. |
The let's merge this PR. |
Since there seems to be no problem that directly requires this part of library in the practice contest, so I will submit it as it is, without writing examples. If I should add some tests, I will do it, so please let me know.
I tried to translate the code so that the original C++ code correspond to this Rust code as much as possible. I'm not sure how to write some of them in a "Rust-ish" way. Any suggestion is welcome.
(BTW I'm writing this issue comment in English because the original library is intended to be used internationally, but of course you can just comment in Japanese.)