TwophaseState_impl.hpp
Go to the documentation of this file.
1#ifndef OPM_TWOPHASESTATE_HEADER_INCLUDED
2#error Do not include this file directly!
3#endif
4
5namespace Opm {
6
7inline bool
8TwophaseState::equals (const SimulatorState& other,
9 double epsilon) const {
10 return dynamic_cast <const TwophaseState*>(&other)
11 ? SimulatorState::equals (other, epsilon)
12 : false;
13}
14
15} // namespace Opm
TwophaseState(size_t num_cells, size_t num_faces)
Definition: AnisotropicEikonal.hpp:44