more numbers tested
This commit is contained in:
parent
0af557f86e
commit
af6503d2bb
1 changed files with 2 additions and 2 deletions
|
@ -317,9 +317,9 @@ int main(void) {
|
|||
a += b;
|
||||
assert(b * Integer{static_cast<long long>(i)} == a);
|
||||
}
|
||||
for (std::size_t i = 0; i <= 4500; i++) {
|
||||
for (std::size_t i = 0; i <= 1000000; i++) {
|
||||
Integer n = i;
|
||||
// std::cout << n << std::endl;
|
||||
std::cout << n << std::endl;
|
||||
Integer base_n = n;
|
||||
n *= 1;
|
||||
assert(n == base_n);
|
||||
|
|
Loading…
Reference in a new issue