Is there a C++ equivalent of Python's time.process_time()?
I am wanting to print the current processing time of the algorithm I am creating.
while (steps < 100){
//...
std::cout << "Current processing time: " << process_time() << std::endl;
//...
{
Output:
Current processing time: 10.431
Current processing time: 13.424