This commit is contained in:
Ismael 2016-05-23 20:34:54 +02:00
parent fed9b6f211
commit ea69a84790
1 changed files with 1 additions and 1 deletions

View File

@ -41,6 +41,6 @@ struct LeastSq {
};
// Find the coefficient for the high-order term in the running time, by minimizing the sum of squares of relative error.
LeastSq MinimalLeastSq(const std::vector<int>& n, const std::vector<double>& time, const benchmark::BigO vomplexity = benchmark::oAuto);
LeastSq MinimalLeastSq(const std::vector<int>& n, const std::vector<double>& time, const benchmark::BigO complexity = benchmark::oAuto);
#endif