adapt complexity_n to leastsq inteface

This commit is contained in:
Ismael 2016-05-24 20:48:34 +02:00
parent 64d72ee7b2
commit a24ef95e11
2 changed files with 2 additions and 2 deletions

View File

@ -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;

View File

@ -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