Added mpz_t return to testapp

This commit is contained in:
Robert 2020-07-19 20:20:06 +02:00
parent 6d15af8b86
commit 551f93afbd

View file

@ -17,7 +17,11 @@ int main(int argc, char** argv)
int d = Abs(c);
std::cout << d << std::endl;
std::cout << c.ToString(NULL, 2) << std::endl;
std::cout << c.ToString(NULL, 2) << std::endl << std::endl;
mpz_t& e = c;
mpz_mul_ui(e, e, 2);
std::cout << c << std::endl;
return 0;
}