/* * statistic - helpers for generic statistics calculations * * Copyright 2021, Hermann Vosseler * * This file is part of the Yoshimi-Testsuite, which is free software: * you can redistribute and/or modify it under the terms of the GNU * General Public License as published by the Free Software Foundation, * either version 3 of the License, or (at your option) any later version. * * Yoshimi-Testsuite is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with yoshimi. If not, see . ***************************************************************/ /** @file statistic.cpp ** Support for generic statistics calculations. ** ** @todo WIP as of 9/21 ** */ #ifndef TESTRUNNER_UTIL_STATISTIC_HPP_ #define TESTRUNNER_UTIL_STATISTIC_HPP_ #include "util/error.hpp" //#include //#include #include //#include namespace util { //using util::formatVal; //using std::log10; //using std::fabs; //using std::max; //using std::min; using VecD = std::vector; namespace { // Implementation details }//(End)Implementation namespace }//(End)namespace util #endif /*TESTRUNNER_UTIL_STATISTIC_HPP_*/