We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bf2ec98 commit c29db39Copy full SHA for c29db39
src/include/defs.h
@@ -77,7 +77,8 @@ inline auto sum_of_squares(V const& a, U const& b) {
77
*/
78
template <class V, class U>
79
inline auto L2(V const& a, U const& b) {
80
- return std::sqrt(sum_of_squares(a, b));
+ // return std::sqrt(sum_of_squares(a, b));
81
+ return sum_of_squares(a, b);
82
}
83
84
/**
0 commit comments