Skip to content

Commit

Permalink
explicitly refer to numerics functions to avoid infinite recursion
Browse files Browse the repository at this point in the history
  • Loading branch information
Expander authored and Expander committed Aug 2, 2014
1 parent 29ae2b6 commit 7edb7cc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/two_scale_convergence_tester.cpp
Expand Up @@ -28,12 +28,12 @@ Convergence_tester<Two_scale>::~Convergence_tester()

bool Convergence_tester<Two_scale>::is_equal(double a, double b) const
{
return is_equal(a, b);
return flexiblesusy::is_equal(a, b);
}

bool Convergence_tester<Two_scale>::is_zero(double a) const
{
return is_zero(a);
return flexiblesusy::is_zero(a);
}

} // namespace flexiblesusy

0 comments on commit 7edb7cc

Please sign in to comment.