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
Post a Comment