Newer
Older
* \author Wenqing Wang
* \date 2012-05-10, 2014.10.10
* \brief Definition of the CPUTime class.
*
* \copyright
* Copyright (c) 2012-2021, OpenGeoSys Community (http://www.opengeosys.org)
* Distributed under a Modified BSD License.
* See accompanying file LICENSE.txt or
Tom Fischer
committed
*/
Tom Fischer
committed
#include <ctime>
Tom Fischer
committed
Tom Fischer
committed
class CPUTime
{
void start() { start_time_ = clock(); }
return (clock() - start_time_) /
static_cast<double>(CLOCKS_PER_SEC);
double start_time_ = 0.;
Tom Fischer
committed
};
} // end namespace BaseLib