mirror of
https://github.com/google/benchmark.git
synced 2025-04-02 23:51:35 +08:00
adapt complexity_n to leastsq inteface
This commit is contained in:
parent
64d72ee7b2
commit
a24ef95e11
@ -70,7 +70,7 @@ class BenchmarkReporter {
|
|||||||
|
|
||||||
// Keep track of arguments to compute asymptotic complexity
|
// Keep track of arguments to compute asymptotic complexity
|
||||||
BigO complexity;
|
BigO complexity;
|
||||||
size_t complexity_n;
|
int complexity_n;
|
||||||
|
|
||||||
// Inform print function whether the current run is a complexity report
|
// Inform print function whether the current run is a complexity report
|
||||||
bool report_big_o;
|
bool report_big_o;
|
||||||
|
@ -119,7 +119,7 @@ struct ThreadStats {
|
|||||||
ThreadStats() : bytes_processed(0), items_processed(0), complexity_n(0) {}
|
ThreadStats() : bytes_processed(0), items_processed(0), complexity_n(0) {}
|
||||||
int64_t bytes_processed;
|
int64_t bytes_processed;
|
||||||
int64_t items_processed;
|
int64_t items_processed;
|
||||||
size_t complexity_n;
|
int complexity_n;
|
||||||
};
|
};
|
||||||
|
|
||||||
// Timer management class
|
// Timer management class
|
||||||
|
Loading…
Reference in New Issue
Block a user