AIToolbox
A library that offers tools for AI problem solving.
|
Go to the documentation of this file. 1 #ifndef AI_TOOLBOX_STATISTICS_HEADER_FILE
2 #define AI_TOOLBOX_STATISTICS_HEADER_FILE
30 using Result = std::tuple<double, double, double, double>;
56 void record(
double value,
size_t timestep);
78 using Point = std::tuple<unsigned, double, double, double>;
80 std::vector<Point> data_;
82 double currentCumulativeValue_;