-
Notifications
You must be signed in to change notification settings - Fork 8
New issue
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
Feat:minors algorithm for the MREstimator #120
Feat:minors algorithm for the MREstimator #120
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
just small things
|
||
|
||
class Minors(MRAlgorithm): | ||
r""" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
remove the raw string
return self._get_optimal_parameter(MR_NUMBER_OF_COEFFICIENTS_TO_GUESS) | ||
|
||
def _ME_time_complexity_helper_(self, m, n_reduced, k_reduced, r): | ||
time = 0 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
the only difference between _ME_time_complexity_helper
and _ME_memory_complexity_helper
is w*
and 2*
. So maybe we can merge those two into one function, to reduce code complexity.
@Javierverbel PR updated. Please approve if it is fine with you. |
…m:Crypto-TII/CryptographicEstimators into feature/add_minors_algorithm_mr_estimator
|
Description