Skip to content
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

Merged
merged 18 commits into from
Sep 10, 2020

Conversation

TonalidadeHidrica
Copy link
Collaborator

@TonalidadeHidrica TonalidadeHidrica commented Sep 7, 2020

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.)

@TonalidadeHidrica
Copy link
Collaborator Author

This pull request should be merged after #1 and #2 are merged.

@qryxip
Copy link
Member

qryxip commented Sep 7, 2020

I have a question. How do you intend to expand internal_math.rs? Hand-by-hand copy-pasting?

As you might already know, namespaces in C++ differ to mods in Rust.

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.

koba-e964
koba-e964 previously approved these changes Sep 8, 2020
@koba-e964 koba-e964 dismissed their stale review September 8, 2020 01:03

My approval was a mistake.

@TonalidadeHidrica
Copy link
Collaborator Author

@qryxip I realized that I shouldn't wrap with namespace, so I will fix it.

@TonalidadeHidrica
Copy link
Collaborator Author

TonalidadeHidrica commented Sep 8, 2020

I'm worried that there may be some other points that the original C++ code relies on its C++ behavior...

@qryxip
Copy link
Member

qryxip commented Sep 8, 2020

BTW, how do we suppress clippy::many_single_char_names? Adding #![allow] to each module, or the crate root?

#![allow(clippy::many_single_char_names)]

@TonalidadeHidrica
Copy link
Collaborator Author

@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>
/// # Returns
/// `(x ** n) % m`
/* const */
fn pow_mod_constexpr(x: i64, mut n: i64, m: i32) -> i64 {
Copy link
Contributor

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.

Copy link
Collaborator Author

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)

Copy link
Contributor

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>
@TonalidadeHidrica
Copy link
Collaborator Author

By the way, why do they add underscores to some fields in structs (as in _m in this PR)? I guess it is to avoid name collision. However in Rust we do not have to worry about it, so it maybe better to replace with names without underscores.

Remove "_constexpr" from function name that are not const fn
@koba-e964
Copy link
Collaborator

Do I have to handle with cargo clippy?

I'd rather you did.
Adding #[allow(clippy::many_single_char_names)] to lib.rs will suffice.

@TonalidadeHidrica
Copy link
Collaborator Author

@koba-e964 I tried adding it at the first line in lib.rs, but the warnings did not disappear. When I added it to each function, it disappeared.

@TonalidadeHidrica
Copy link
Collaborator Author

By the way what should the visibility of each items be? I'm not familiar with it so much so please somebody tell me.

@TonalidadeHidrica
Copy link
Collaborator Author

I've added some tests and think that all the code is working properly.

@qryxip
Copy link
Member

qryxip commented Sep 9, 2020

By the way what should the visibility of each items be? I'm not familiar with it so much so please somebody tell me.

pub(crate), I think.

Visibility and Privacy - The Rust Reference

@koba-e964
Copy link
Collaborator

koba-e964 commented Sep 10, 2020

@koba-e964 I tried adding it at the first line in lib.rs, but the warnings did not disappear. When I added it to each function, it disappeared.

I mean not the first line, but the line containing pub(crate) mod internal_math;.
But adding the annotation to each function is also fine by me.

Copy link
Collaborator

@koba-e964 koba-e964 left a 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.

@TonalidadeHidrica
Copy link
Collaborator Author

How can I get rid of "function/struct/method is not used" warnings?

@qryxip
Copy link
Member

qryxip commented Sep 10, 2020

I've forgotten dead_code warnings. Why not make the visibilities pub instead of pub(crate) as a workaround.

@qryxip
Copy link
Member

qryxip commented Sep 10, 2020

For clippy::unreadable_literal, Maybe we should add #![allow(〃)] at the beginning of mod tests.

@qryxip
Copy link
Member

qryxip commented Sep 10, 2020

I've forgotten dead_code warnings. Why not make the visibilities pub instead of pub(crate) as a workaround.

Or adding #![allow(dead_code)] to the beginning of internal_math.rs.

@TonalidadeHidrica
Copy link
Collaborator Author

Adding #![allow(dead_code)] seemed reasonable for me so I did so.

@TonalidadeHidrica
Copy link
Collaborator Author

test_pow_mod is pointed out to have a large cognitive complexity. Should I fix it (such as splitting into multiple test functions or use for loop instead) or simply ignore the warning (by adding #![allow(...)])?

@qryxip
Copy link
Member

qryxip commented Sep 10, 2020

test_pow_mod is pointed out to have a large cognitive complexity.

Reffering to clippy::cognitive_complexity? But it does not seem to be triggered on 1.42.0. If so, We may #[allow] it, as it is allowed by default on 1.46.0.

@TonalidadeHidrica
Copy link
Collaborator Author

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.

@qryxip qryxip requested a review from koba-e964 September 10, 2020 05:35
@qryxip
Copy link
Member

qryxip commented Sep 10, 2020

The let's merge this PR.

@qryxip qryxip merged commit 2d43cf6 into rust-lang-ja:master Sep 10, 2020
@TonalidadeHidrica TonalidadeHidrica deleted the feature/internal_math branch September 12, 2020 06:17
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants