mirror of
https://github.com/RGBCube/uutils-coreutils
synced 2025-07-28 03:27:44 +00:00
tests ~ (sub-crate factor) refactor divisor() test for improved readability
This commit is contained in:
parent
ae06368cd8
commit
114fda0519
1 changed files with 5 additions and 1 deletions
|
@ -79,7 +79,11 @@ mod tests {
|
|||
fn divisor(a: u64, b: u64) -> bool {
|
||||
// Test that gcd(a, b) divides a and b
|
||||
let g = gcd(a, b);
|
||||
(g != 0 && a % g == 0 && b % g == 0) || (g == 0 && a == 0 && b == 0)
|
||||
if g != 0 {
|
||||
a % g == 0 && b % g == 0
|
||||
} else {
|
||||
a == 0 && b == 0 // for g == 0
|
||||
}
|
||||
}
|
||||
|
||||
fn commutative(a: u64, b: u64) -> bool {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue