https://gitlab.opengeosys.org/ogs/ogs.git
Raw File
Tip revision: 20bed7fa03a3143878e44a3a65ab64b8d145e20e authored by wenqing on 11 May 2023, 06:48:58 UTC
Merge branch 'cal_volume' into 'master'
Tip revision: 20bed7f
LinAlgEnums.h
/**
 * \author Wenqing Wang
 *
 * \file
 * \copyright
 * Copyright (c) 2012-2023, 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

#include <string>

namespace MathLib
{

/// Norm type. Not declared as class type in order to use the members as integers.
enum class VecNormType
{
    NORM1,        ///< \f$\sum_i |x_i|\f$
    NORM2,        ///< \f$\sqrt(\sum_i (x_i)^2)\f$
    INFINITY_N,    ///< \f$\mathrm{max}_i |x_i|\f$
    INVALID
};

/// convert VecNormType to string
std::string convertVecNormTypeToString(VecNormType normType);

/// convert string to VecNormType
VecNormType convertStringToVecNormType(const std::string &str);

} // end namespace MathLib
back to top