Various improvements.

This commit is contained in:
Marcel Keller
2020-12-11 16:23:54 +11:00
parent 15d179a1d1
commit cdb8d6f337
235 changed files with 4452 additions and 1842 deletions

View File

@@ -91,8 +91,7 @@ int main(int argc, const char** argv) {
for (int i = 0; i < n; ++i) {
bigint a;
*in >> a;
gfp b;
to_gfp(b, a);
gfp b = a;
b.output(*out, false);
}
if (in->fail())