We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ef0dc93 commit fd8fdd2Copy full SHA for fd8fdd2
src/continued_fraction.hpp
@@ -44,7 +44,6 @@ struct ContinuedFraction {
44
std::vector<double> &estimates) const;
45
46
bool is_valid() const { return !cf_coeffs.empty(); }
47
- size_t return_degree() const { return degree; }
48
49
std::vector<double> ps_coeffs;
50
std::vector<double> cf_coeffs;
@@ -71,8 +70,6 @@ class ContinuedFractionApproximation {
71
70
ContinuedFraction
72
optimal_cont_frac_distinct(const std::vector<double> &counts_hist) const;
73
74
- int get_diagonal() const { return diagonal_idx; }
75
-
76
private:
77
int diagonal_idx; // the diagonal to work with for estimates
78
size_t max_terms; // the maximum number of terms to try for a CF
0 commit comments