MAiNGO
getTime.h
Go to the documentation of this file.
1 /**********************************************************************************
2  * Copyright (c) 2019 Process Systems Engineering (AVT.SVT), RWTH Aachen University
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License 2.0 which is available at
6  * http://www.eclipse.org/legal/epl-2.0.
7  *
8  * SPDX-License-Identifier: EPL-2.0
9  *
10  * @file getTime.h
11  *
12  * @brief File containing declaration of functions for querying CPU and wall clock time.
13  *
14  **********************************************************************************/
15 
16 #pragma once
17 
18 
19 namespace maingo {
20 
24 double get_cpu_time();
25 
29 double get_wall_time();
30 
31 } // namespace maingo
double get_cpu_time()
Function for querying CPU time of the process.
Definition: getTime.cpp:42
double get_wall_time()
Function for querying wall clock time of the process.
Definition: getTime.cpp:76
namespace holding all essentials of MAiNGO
Definition: aleModel.h:31