version 3.8
entitycolor.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//
13#ifndef DUMUX_ENTITY_COLOR_HH
14#define DUMUX_ENTITY_COLOR_HH
15
16namespace Dumux {
17
23enum class EntityColor {
25 red,
26
28 yellow,
29
37 orange,
38
40 green
41};
42
43} // end namespace Dumux
44
45#endif
EntityColor
The colors of elements and vertices required for partial Jacobian reassembly.
Definition: entitycolor.hh:23
@ green
does not need to be reassembled
@ red
distance from last linearization is above the tolerance
@ yellow
neighboring entity is red
Definition: adapt.hh:17