From 0e0374300fbda2f7fefa31a12efdd38b08dd0d73 Mon Sep 17 00:00:00 2001 From: Marc Glisse Date: Thu, 12 May 2011 13:15:40 +0000 Subject: [PATCH] b --- NewKernel_d/test/NewKernel_d/test.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/NewKernel_d/test/NewKernel_d/test.cpp b/NewKernel_d/test/NewKernel_d/test.cpp index 35b05255fdd..b4d101aeb7a 100644 --- a/NewKernel_d/test/NewKernel_d/test.cpp +++ b/NewKernel_d/test/NewKernel_d/test.cpp @@ -25,20 +25,21 @@ typedef K1::Segment S; //typedef K1::Construct_point CP; typedef K1::Construct::type CP; typedef K1::Construct::type CV; +typedef K1::Construct::type CS; typedef K1::Construct::type CCI; typedef K1::Predicate::type PO; typedef K1::Cartesian_const_iterator CI; typedef K1::Compute::type CC; int main(){ - CP cp; CCI ci; CC cc; PO po; + CP cp; CCI ci; CC cc; PO po; CS cs; P a=cp(3,4); P b=cp(5,6,7); int rr[]={3,5,2}; int* r=rr; P c=cp(r,r+2); P d=cp(r,r+3,CGAL::Homogeneous_tag()); - S s(c,d); + S s=cs(c,d); std::cout << cc(a,1) << std::endl; std::cout << cc(b,1) << std::endl; std::cout << cc(s[0],1) << std::endl;