reduced test size to make test length more reasonable
This commit is contained in:
parent
8a7ffa9e8a
commit
4f344d825b
1 changed files with 1 additions and 1 deletions
|
@ -321,7 +321,7 @@ int main(void) {
|
|||
a += b;
|
||||
assert(b * Integer{static_cast<long long>(i)} == a);
|
||||
}
|
||||
for (std::size_t i = 0; i <= 1000000; i++) {
|
||||
for (std::size_t i = 0; i <= 10000; i++) {
|
||||
Integer n = i;
|
||||
std::cout << n << std::endl;
|
||||
Integer base_n = n;
|
||||
|
|
Loading…
Reference in a new issue