1#ifndef __RUNTIME_INIT_HPP__
2#define __RUNTIME_INIT_HPP__
4#include "common/execinfo.hpp"
8#include <core/simulation_parameters.hpp>
25template <
typename Stream>
26void append_date_time(Stream &stream)
noexcept
29 std::chrono::system_clock::to_time_t(std::chrono::system_clock::now());
30 stream << std::put_time(std::localtime(&now),
"%Y-%m-%d %H:%M:%S");
A structure to hold user-defined control parameters for simulation settings.
Definition simulation_parameters.hpp:24
Definition execinfo.hpp:12