We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently, our interpreter produce a wrong result for the following T2 program:
int main(void) { EncDouble x, y; double yP; int c; x = {39.773778,14.802237,50.422996,75.649201,85.050536,12.826949,13.309888,22.791690,6.375151,31.814724,11.306712,9.206774,8.578555,15.692356,28.775459,98.915953,9.949686,55.828902,76.461822,9.742788,38.416974,83.395684,49.705617,12.778224,25.390707,28.086143,35.534312,5.446014,43.875865,57.505144,3.969952,13.151783,21.937485,31.166417,29.914754,83.190610,25.198444,25.790571,31.140950,96.404509,42.772057,14.475142,75.195513,37.022541,29.879678,11.311959,3.440591,29.182667,57.376028,25.156070,43.985646,69.825943,93.502714,1.504340,36.927426,61.969977,96.413027,69.820797,75.099067,79.810031,27.358756,55.149608,71.439760,77.662531,3.902421,57.485584,0.131636,88.457183,0.116011,50.125951,22.810555,44.300221,66.449899,99.106044,3.442803,91.572858}; yP = 45.244017; x *= yP; yP = 45.244017; x *= yP; print_batched (x, 20); return 0; }
Result:
- CLEAR: 15880.761770382102 30300.491085728278 37679.93544115749 23781.508700675913 43026.23957219519 26257.03492192371 27245.62123252329 46655.069748827984 13050.06844882106 65125.41050091993 23145.07774499874 18846.46040428314 17560.4828720098 32122.583437359815 58903.970995548814 5872.040375101205 20367.216924630746 48745.93894882224 25444.96101309164 19943.69235840099 - SEAL: 81417.76178 30300.49109 103216.93543 154855.50871 174100.23957 26257.03494 27245.62123 46655.06975 13050.06845 65125.41050 23145.07774 18846.46040 17560.48288 32122.58344 58903.97097 202483.04039 20367.21692 114282.93894 156518.96102 19943.69236 - OpenFHE: 81417.76177 30300.49109 103216.93544 154855.50870 174100.23957 26257.03492 27245.62123 46655.06975 13050.06845 65125.41050 23145.07774 18846.46040 17560.48287 32122.58344 58903.97100 202483.04038 20367.21692 114282.93895 156518.96101 19943.69236
The text was updated successfully, but these errors were encountered:
Solve modulus operation problem with double (#15)
21916b2
hyerinshelly
No branches or pull requests
Currently, our interpreter produce a wrong result for the following T2 program:
Result:
The text was updated successfully, but these errors were encountered: