Revision 0ffc831cbf2dc12afee02202ab3836d3dedbbf01 authored by wenqing on 09 September 2021, 14:05:21 UTC, committed by wenqing on 09 September 2021, 14:05:21 UTC
Draft: [ProcessLib] Added a restriction for computing strain

See merge request ogs/ogs!3775
2 parent s bd25372 + 6c10ebb
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