OGS
LinAlgEnums.h
Go to the documentation of this file.
1
13#pragma once
14
15#include <string>
16
17namespace MathLib
18{
19
22enum class VecNormType
23{
24 NORM1,
25 NORM2,
28};
29
31std::string convertVecNormTypeToString(VecNormType normType);
32
34VecNormType convertStringToVecNormType(const std::string& str);
35
36} // end namespace MathLib
std::string convertVecNormTypeToString(VecNormType normType)
convert VecNormType to string
VecNormType convertStringToVecNormType(const std::string &str)
convert string to VecNormType