22#ifndef INCLUDE_EXADG_UTILITIES_NUMBERS_H_
23#define INCLUDE_EXADG_UTILITIES_NUMBERS_H_
31using time_step =
unsigned int;
36types::time_step
const invalid_timestep = std::numeric_limits<unsigned int>::max();
37types::time_step
const steady_timestep = std::numeric_limits<unsigned int>::max() - 1;
43is_unsteady_timestep(types::time_step
const timestep)
45 return (timestep != numbers::steady_timestep);
48is_valid_timestep(types::time_step
const timestep)
50 return (timestep != numbers::invalid_timestep);
Definition interpolate.h:32