Commit a24ef95e by Ismael

adapt complexity_n to leastsq inteface

parent 64d72ee7
......@@ -70,7 +70,7 @@ class BenchmarkReporter {
// Keep track of arguments to compute asymptotic complexity
BigO complexity;
size_t complexity_n;
int complexity_n;
// Inform print function whether the current run is a complexity report
bool report_big_o;
......
......@@ -119,7 +119,7 @@ struct ThreadStats {
ThreadStats() : bytes_processed(0), items_processed(0), complexity_n(0) {}
int64_t bytes_processed;
int64_t items_processed;
size_t complexity_n;
int complexity_n;
};
// Timer management class
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment