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
In nn.cpp our_default_gate_bootstrapping_parameters, i found that alpha_min > alpha_max and the relevant portion of the code is below:
our_default_gate_bootstrapping_parameters
#define SEC_PARAMS_STDDEV pow(2., -30) #define SEC_PARAMS_KS_STDDEV pow(2., -25) /// Key Switching Params static const double max_stdev = SEC_PARAMS_STDDEV; static const double ks_stdev = SEC_PARAMS_KS_STDDEV; ... LweParams *params_in = new_LweParams (n, ks_stdev, max_stdev);
Is this the intended behavior or if it might be a bug? Any guidance or clarification would be appreciated.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In nn.cpp
our_default_gate_bootstrapping_parameters
, i found that alpha_min > alpha_max and the relevant portion of the code is below:Is this the intended behavior or if it might be a bug? Any guidance or clarification would be appreciated.
The text was updated successfully, but these errors were encountered: