SetDims in NTL is not working -


i'm trying use matrix functions in ntl, mat_zz_p . when try set dimension using setdims() fucntion, hangs. working smaller numbers 5 , 10 etc, fails 10000. hangs whole system. here code snippet :

int main() {     zz p;     long int index;     cin >> p;     zz_p::init(p);     mat_zz_p a;      long dime = 9999;     a.setdims(dime,dime);     return 0; } 


Comments

Popular posts from this blog

resizing Telegram inline keyboard -

command line - How can a Python program background itself? -

php - "cURL error 28: Resolving timed out" on Wordpress on Azure App Service on Linux -