Tsunami Project Lab
Loading...
Searching...
No Matches
Solver.h
Go to the documentation of this file.
1
8#pragma once
9#include "../constants.h"
10
11namespace tsunami_lab {
12 namespace solvers {
13 class Solver;
14 }
15}
16
18
19 public:
20 virtual ~Solver() {};
21
33 virtual void netUpdates(t_real i_hL, t_real i_hR, t_real i_huL,
34 t_real i_huR, t_real o_netUpdateL[2],
35 t_real o_netUpdateR[2]) = 0;
36};
Definition Solver.h:17
virtual ~Solver()
Definition Solver.h:20
virtual void netUpdates(t_real i_hL, t_real i_hR, t_real i_huL, t_real i_huR, t_real o_netUpdateL[2], t_real o_netUpdateR[2])=0
Definition constants.h:12
float t_real
floating point type
Definition constants.h:17