Skip to content
Snippets Groups Projects
Commit c9add2cf authored by Emmanuel Christophe's avatar Emmanuel Christophe
Browse files

COMP: moving the epsilon to the operator(), the epsilon might need to disappear

parent 13718443
No related branches found
No related tags found
No related merge requests found
...@@ -73,7 +73,7 @@ public: ...@@ -73,7 +73,7 @@ public:
inline TOutput operator()( const TInput1 & itA, inline TOutput operator()( const TInput1 & itA,
const TInput2 & itB) const TInput2 & itB)
{ {
const double epsilon = 0.01;
VectorType vecA; VectorType vecA;
VectorType vecB; VectorType vecB;
...@@ -93,8 +93,6 @@ public: ...@@ -93,8 +93,6 @@ public:
protected: protected:
static const double epsilon = 0.01;
inline void normalizeInPlace(VectorType vx) inline void normalizeInPlace(VectorType vx)
{ {
......
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