Typedef ioh::logger::attain_mat¶
Defined in File ecdf.hpp
Typedef Documentation¶
-
using
ioh::logger::attain_mat= std::vector<std::vector<bool>>¶ Type used to store a single run attainment bi-dimensional function.
First dimension is error targets, second dimension function evaluations targets.
- Note
One expect to have a lot of those matrix in a real-life setting, && the more general case is to have objective-function bounded computation times. It is thus chosen to reduce the memory footprint, using the infamous bool vector specialization instead of the (supposedly) faster vector of char.