Closed nocotan closed 3 years ago
Implement the common function _gamma_select as follows:
_gamma_select
def _gamma_select(self, gamma, overlap): if gamma == "one": return 1.0 elif gamma == "reciprocal": if overlap > 1: return 1.0 / overlap else: return 1.0 elif gamma == "udf_gamma": if overlap > 1: return 1.0 / self._udf_gamma(overlap) else: return 1.0
Make it possible to select the gamma value according to the parameters.
yyyy / mm / dd
If the parent issue exists, post a link here.
If there are any reference links, they are described here.
Other comments.
Summary
Implement the common function
_gamma_select
as follows:Goal
Make it possible to select the gamma value according to the parameters.
Todo
Deadline
yyyy / mm / dd
Parent issue
If the parent issue exists, post a link here.
References
If there are any reference links, they are described here.
Notes
Other comments.