omega_h
Reliable mesh adaptation
Omega_h_timer.hpp
1 #ifndef OMEGA_H_TIMER_HPP
2 #define OMEGA_H_TIMER_HPP
3 
4 #include <chrono>
5 
6 #include <Omega_h_defines.hpp>
7 
8 namespace Omega_h {
9 
10 struct Now {
11  typedef std::chrono::time_point<std::chrono::steady_clock> Impl;
12  Impl impl;
13 };
14 
15 Now now();
16 
17 Real operator-(Now b, Now a);
18 
19 } // end namespace Omega_h
20 
21 #endif
Definition: amr_mpi_test.cpp:6
Definition: Omega_h_timer.hpp:10