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
10enum class TimestepMethod : uint8_t {
12 FIXED,
14 VARIABLE,
17 VARIABLE_SINGLE
18};
19
20} // namespace slp