1#ifndef __RUNTIME_INIT_HPP__
2#define __RUNTIME_INIT_HPP__
5#include <common/execinfo.hpp>
6#include <core/simulation_parameters.hpp>
25template <
typename Stream>
void append_date_time(Stream& stream)
noexcept
27 auto now = std::chrono::system_clock::to_time_t(std::chrono::system_clock::now());
28 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:23
Definition execinfo.hpp:12