Skip to content
Snippets Groups Projects
Commit 5df54392 authored by Norihiro Watanabe's avatar Norihiro Watanabe
Browse files

fixed indentation

parent 01bb25ad
No related branches found
No related tags found
No related merge requests found
......@@ -118,17 +118,17 @@ inline double norm(const T_VEC &v, VecNormType normType = VecNormType::NORM2)
double norm = -1;
switch (normType)
{
case VecNormType::NORM1:
norm = norm_1(v);
break;
case VecNormType::NORM2:
norm = norm_2(v);
break;
case VecNormType::INFINITY_N:
norm = norm_max(v);
break;
default:
break;
case VecNormType::NORM1:
norm = norm_1(v);
break;
case VecNormType::NORM2:
norm = norm_2(v);
break;
case VecNormType::INFINITY_N:
norm = norm_max(v);
break;
default:
break;
}
return norm;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment