hydrobricks
Loading...
Searching...
No Matches
SolverRK4.h
1#ifndef HYDROBRICKS_SOLVER_RK4_H
2#define HYDROBRICKS_SOLVER_RK4_H
3
4#include "Includes.h"
5#include "Solver.h"
6#include "SubBasin.h"
7
8class SolverRK4 : public Solver {
9 public:
10 explicit SolverRK4();
11
15 bool Solve() override;
16
17 protected:
18 private:
19};
20
21#endif // HYDROBRICKS_SOLVER_RK4_H
Definition SolverRK4.h:8
bool Solve() override
Definition SolverRK4.cpp:10
Definition Solver.h:9