reduced test size to make test length more reasonable

This commit is contained in:
Pagwin 2024-12-11 23:59:40 -05:00
parent 8a7ffa9e8a
commit 4f344d825b
No known key found for this signature in database
GPG key ID: 81137023740CA260

View file

@ -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;