version 3.8
noregularization.hh
Go to the documentation of this file.
1// -*- mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
2// vi: set et ts=4 sw=4 sts=4:
3//
4// SPDX-FileCopyrightInfo: Copyright © DuMux Project contributors, see AUTHORS.md in root folder
5// SPDX-License-Identifier: GPL-3.0-or-later
6//
12#ifndef DUMUX_MATERIAL_FLUIDMATRIX_TWOP_NO_REGULARIZATION_HH
13#define DUMUX_MATERIAL_FLUIDMATRIX_TWOP_NO_REGULARIZATION_HH
14
15namespace Dumux::FluidMatrix {
16
22{
24 template<class S> struct Params {};
25
27 bool operator== (const NoRegularization& o) const
28 { return true; }
29};
30
31} // end namespace Dumux::FluidMatrix
32
33#endif
Definition: brookscorey.hh:23
Empty parameter structure.
Definition: noregularization.hh:24
A tag to turn off regularization and it's overhead.
Definition: noregularization.hh:22
bool operator==(const NoRegularization &o) const
We are always equal to other instances of our kind.
Definition: noregularization.hh:27