| 17 | } |
| 18 | |
| 19 | long long gcd(long long a, long long b) { |
| 20 | if (a == 0) |
| 21 | return b; |
| 22 | return gcd(b % a, a); |
| 23 | } |
| 24 | |
| 25 | #include "../test/factorization_trial_division1.h" |
| 26 | #include "../test/factorization_trial_division2.h" |
nothing calls this directly
no outgoing calls
no test coverage detected