https://gitlab.opengeosys.org/ogs/ogs.git
Raw File
Tip revision: 8756f74c65c0dfa43745aa9001953ea5878a607f authored by tnagel on 31 August 2021, 14:13:19 UTC
Introduced initial stress capability in MFront orthotropic linear elasticity.
Tip revision: 8756f74
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