https://gitlab.opengeosys.org/ogs/ogs.git
Raw File
Tip revision: c54b0d15635f8c30ffd5d50ef35145e405c43753 authored by Wenqing Wang on 26 November 2021, 15:16:50 UTC
[TRM] Added a benchmark of point heat source
Tip revision: c54b0d1
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