Skip to content

Commit

Permalink
Merge pull request #1209 from tinko92/fix/convex_hull_robust_side_fp_…
Browse files Browse the repository at this point in the history
…equals

Use fp_equals comparison in side_strategy for convex_hull.
  • Loading branch information
vissarion committed Feb 13, 2024
2 parents a55b44d + 1d5330e commit 98fdf71
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ class cartesian : public strategies::detail::cartesian_base
static auto side()
{
using side_strategy_type
= strategy::side::side_robust<CalculationType>;
= strategy::side::side_robust<CalculationType, strategy::side::fp_equals_policy>;
return side_strategy_type();
}

Expand Down

0 comments on commit 98fdf71

Please sign in to comment.