I have the code:
vector<vector<int128_t>> resh(n, vector<int128_t>(n, 0)); int128_t S = 0; int128_t R = 0; int128_t qs = (1019 - 1) / 2; int64_t x = 0; When calculating x :
x = int64_t(-resh[k.convert_to<size_t>()][0] * S - R) % qs; Gives an error message:
impossible to convert
"boost :: multiprecision :: number, boost :: multiprecision :: et_off>" in "int64_t"
I just can not understand why?
size_twith,convert_to<size_t>, what do you think, how now toint64_ttoint64_t? - Fat-Zer