https://gitlab.opengeosys.org/ogs/ogs.git
Raw File
Tip revision: 0f177b7ecb8f6f3318894f502c1c8f1bcbddd7d1 authored by Dmitri Naumov on 15 February 2021, 16:25:03 UTC
[T/RM] Use explicit hm coupling in ortho-swelling.
Tip revision: 0f177b7
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