mirror of https://github.com/CGAL/cgal
Rename the new occurences of the functors
This commit is contained in:
parent
75de5cfdef
commit
1f81815f8f
|
|
@ -718,14 +718,14 @@ void test4(){
|
|||
typedef typename Ker::Weighted_point_d WP;
|
||||
typedef typename Ker::Construct_circumcenter_d CCc;
|
||||
typedef typename Ker::Equal_d E;
|
||||
typedef typename Ker::Power_center_d PC;
|
||||
typedef typename Ker::Power_distance_d PoD;
|
||||
typedef typename Ker::Construct_power_sphere_d PC;
|
||||
typedef typename Ker::Compute_power_product_d PoD;
|
||||
typedef typename Ker::Affine_rank_d AR;
|
||||
Ker k(4);
|
||||
CCc ccc Kinit(construct_circumcenter_d_object);
|
||||
E ed Kinit(equal_d_object);
|
||||
PC pc Kinit(power_center_d_object);
|
||||
PoD pod Kinit(power_distance_d_object);
|
||||
PC pc Kinit(construct_power_sphere_d_object);
|
||||
PoD pod Kinit(compute_power_product_d_object);
|
||||
AR ar Kinit(affine_rank_d_object);
|
||||
auto mkpt=[](auto...x){double l[]{(double)x...};return P(std::begin(l), std::end(l));};
|
||||
P tab1[]={mkpt(15,20,40,80),mkpt(10,23,36,80),mkpt(10,20,40,85),mkpt(10,15,40,80),mkpt(13,20,40,76)};
|
||||
|
|
|
|||
Loading…
Reference in New Issue