![]() |
Google OR-Tools v9.14
a fast and portable software suite for combinatorial optimization
|
Statistic on the distribution of a sequence of doubles. More...
#include <stats.h>
Public Member Functions | |
| DoubleDistribution (absl::string_view name) | |
| DoubleDistribution () | |
| DoubleDistribution (absl::string_view name, StatsGroup *group) | |
| std::string | ValueAsString () const override |
| Implemented by the subclasses. | |
| void | Add (double value) |
| Public Member Functions inherited from operations_research::DistributionStat | |
| DistributionStat (absl::string_view name) | |
| DistributionStat () | |
| DistributionStat (absl::string_view name, StatsGroup *group) | |
| ~DistributionStat () override | |
| void | Reset () override |
| Reset this statistic to the same state as if it was newly created. | |
| bool | WorthPrinting () const override |
| Is this stat worth printing? Usually false if nothing was measured. | |
| double | Sum () const override |
| Trivial statistics on all the values added so far. | |
| double | Max () const |
| double | Min () const |
| int64_t | Num () const |
| double | Average () const |
| Get the average of the distribution or 0.0 if empty. | |
| double | StdDeviation () const |
| Public Member Functions inherited from operations_research::Stat | |
| Stat (absl::string_view name) | |
| Stat (absl::string_view name, StatsGroup *group) | |
| Also add this stat to the given group. | |
| virtual | ~Stat () |
| std::string | Name () const |
| Only used for display purposes. | |
| std::string | StatString () const |
| virtual int | Priority () const |
Additional Inherited Members | |
| Protected Member Functions inherited from operations_research::DistributionStat | |
| void | AddToDistribution (double value) |
| Adds a value to this sequence and updates the stats. | |
| Protected Attributes inherited from operations_research::DistributionStat | |
| double | sum_ |
| double | average_ |
| double | sum_squares_from_average_ |
| double | min_ |
| double | max_ |
| int64_t | num_ |
|
inlineexplicit |
|
inline |
|
inline |
| void operations_research::DoubleDistribution::Add | ( | double | value | ) |
|
overridevirtual |
Implemented by the subclasses.
Implements operations_research::DistributionStat.