Update reference to complexity calculation (#723)

This commit is contained in:
Tobias Ulvgård 2018-12-10 16:15:34 +01:00 committed by Dominic Hamon
parent 5cb8f8a03d
commit 1f3cba06e4
1 changed files with 2 additions and 2 deletions

View File

@ -73,8 +73,8 @@ std::string GetBigOString(BigO complexity) {
// - time : Vector containing the times for the benchmark tests.
// - fitting_curve : lambda expression (e.g. [](int64_t n) {return n; };).
// For a deeper explanation on the algorithm logic, look the README file at
// http://github.com/ismaelJimenez/Minimal-Cpp-Least-Squared-Fit
// For a deeper explanation on the algorithm logic, please refer to
// https://en.wikipedia.org/wiki/Least_squares#Least_squares,_regression_analysis_and_statistics
LeastSq MinimalLeastSq(const std::vector<int64_t>& n,
const std::vector<double>& time,