Sleipnir C++ API
Loading...
Searching...
No Matches
timestep_method.hpp
1// Copyright (c) Sleipnir contributors
2
3#pragma once
4
5#include <stdint.h>
6
7namespace slp {
8
12enum class TimestepMethod : uint8_t {
14 FIXED,
16 VARIABLE,
19 VARIABLE_SINGLE
20};
21
22} // namespace slp