Revision 3948585777bdee90602ed625556d3cd4e2061c39 authored by Dmitry Yu. Naumov on 11 October 2021, 11:58:22 UTC, committed by Dmitry Yu. Naumov on 11 October 2021, 11:58:22 UTC
Draft: [PL/RM] Phase compressibility saturation cut-off.

See merge request ogs/ogs!3447
2 parent s 80f50c4 + ff1060f
Raw File
SearchAllNodes.h
/**
 * \file
 * \copyright
 * Copyright (c) 2012-2021, OpenGeoSys Community (http://www.opengeosys.org)
 *            Distributed under a Modified BSD License.
 *              See accompanying file LICENSE.txt or
 *              http://www.opengeosys.org/project/license
 */
#pragma once

namespace MeshGeoToolsLib
{
enum class SearchAllNodes : bool
{
    Yes = true,
    No = false
};

} // end namespace MeshGeoToolsLib
back to top