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 c29db39 commit 89c58f9Copy full SHA for 89c58f9
src/include/defs.h
@@ -77,8 +77,7 @@ 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));
81
- return sum_of_squares(a, b);
+ return std::sqrt(sum_of_squares(a, b));
82
}
83
84
/**
0 commit comments