Skip to content
Snippets Groups Projects
Commit a0b61585 authored by Benjamin Cumming's avatar Benjamin Cumming
Browse files

merge conflict in math

parents 6738e37f 491a9d1f
No related branches found
No related tags found
No related merge requests found
#include <limits>
#include <cmath>
#include "gtest.h"
......@@ -97,8 +98,8 @@ TEST(point, norm)
point<double> p1(1, 1, 1);
point<double> p2(1, 2, 3);
EXPECT_EQ(norm(p1), sqrt(3.));
EXPECT_EQ(norm(p2), sqrt(1.+4.+9.));
EXPECT_EQ(norm(p1), std::sqrt(3.));
EXPECT_EQ(norm(p2), std::sqrt(1.+4.+9.));
}
TEST(point, dot)
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment