bugfix for Travis (?)

This commit is contained in:
Iordan Iordanov 2019-01-08 08:43:05 +01:00
parent a4a44553b8
commit bb18b38b0a
1 changed files with 2 additions and 2 deletions

View File

@ -333,8 +333,8 @@ class Compute_approximate_hyperbolic_diameter
y1 = (A + CGAL::sqrt(D))/B;
y2 = (A - CGAL::sqrt(D))/B;
x1 = (C - b*sqrt(D))/(a*(a*a + b*b));
x2 = (C + b*sqrt(D))/(a*(a*a + b*b));
x1 = (C - b*CGAL::sqrt(D))/(a*(a*a + b*b));
x2 = (C + b*CGAL::sqrt(D))/(a*(a*a + b*b));
}
Hyperbolic_point_2 p1(x1, y1);