https://gitlab.opengeosys.org/ogs/ogs.git
Raw File
Tip revision: 93a10a632ce7e400b30c259d0255fe41d27233a6 authored by FZill on 26 April 2021, 13:33:00 UTC
[MPL] benchmarks for OrthotropicEmbeddedFracturePermeability
Tip revision: 93a10a6
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