Salome HOME
1) Add CMake files to the dist rules (make dist)
[tools/medcoupling.git] / src / MEDCoupling / Test / MEDCouplingBasicsTest5.cxx
1 // Copyright (C) 2007-2012  CEA/DEN, EDF R&D
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19 // Author : Anthony Geay (CEA/DEN)
20
21 #include "MEDCouplingBasicsTest5.hxx"
22 #include "MEDCouplingUMesh.hxx"
23 #include "MEDCouplingCMesh.hxx"
24 #include "MEDCouplingExtrudedMesh.hxx"
25 #include "MEDCouplingFieldDouble.hxx"
26 #include "MEDCouplingMemArray.hxx"
27 #include "MEDCouplingGaussLocalization.hxx"
28 #include "MEDCouplingMultiFields.hxx"
29 #include "MEDCouplingFieldOverTime.hxx"
30
31 #include <cmath>
32 #include <functional>
33 #include <iterator>
34
35 using namespace ParaMEDMEM;
36
37 void MEDCouplingBasicsTest5::testUMeshTessellate2D1()
38 {
39   double m1Coords[50]={0.,0.,1.,0.,1.5,0.,0.,1.,0.,1.5,-1.,0.,-1.5,0.,0.,-1,0.,-1.5,0.5,0.,1.25,0.,0.70710678118654757,0.70710678118654757,1.0606601717798214,1.0606601717798214,0.,0.5,0.,1.25,-0.70710678118654757,0.70710678118654757,-1.0606601717798214,1.0606601717798214,-0.5,0.,-1.25,0.,-0.70710678118654757,-0.70710678118654757,-1.0606601717798214,-1.0606601717798214,0.,-0.5,0.,-1.25,0.70710678118654757,-0.70710678118654757,1.0606601717798214,-1.0606601717798214};
40   int m1Conn[56]={0,3,1,13,11,9, 3,4,2,1,14,12,10,11, 5,3,0,15,13,17, 6,4,3,5,16,14,15,18, 5,0,7,17,21,19, 6,5,7,8,18,19,22,20, 0,1,7,9,23,21, 1,2,8,7,10,24,22,23};
41   MEDCouplingUMesh *m1=MEDCouplingUMesh::New();
42   m1->setMeshDimension(2);
43   m1->allocateCells(8);
44   m1->insertNextCell(INTERP_KERNEL::NORM_TRI6,6,m1Conn);
45   m1->insertNextCell(INTERP_KERNEL::NORM_QUAD8,8,m1Conn+6);
46   m1->insertNextCell(INTERP_KERNEL::NORM_TRI6,6,m1Conn+14);
47   m1->insertNextCell(INTERP_KERNEL::NORM_QUAD8,8,m1Conn+20);
48   m1->insertNextCell(INTERP_KERNEL::NORM_TRI6,6,m1Conn+28);
49   m1->insertNextCell(INTERP_KERNEL::NORM_QUAD8,8,m1Conn+34);
50   m1->insertNextCell(INTERP_KERNEL::NORM_TRI6,6,m1Conn+42);
51   m1->insertNextCell(INTERP_KERNEL::NORM_QUAD8,8,m1Conn+48);
52   m1->finishInsertingCells();
53   DataArrayDouble *myCoords1=DataArrayDouble::New();
54   myCoords1->alloc(25,2);
55   std::copy(m1Coords,m1Coords+50,myCoords1->getPointer());
56   m1->setCoords(myCoords1);
57   myCoords1->decrRef();
58   //
59   MEDCouplingUMesh *m11=static_cast<MEDCouplingUMesh *>(m1->deepCpy());
60   m11->tessellate2D(1.);
61   CPPUNIT_ASSERT(m11->getCoords()->isEqual(*m11->getCoords(),1e-12));
62   const int expected1[48]={5,0,3,11,1,5,3,4,12,2,1,11,5,5,15,3,0,5,6,16,4,3,15,5,5,5,0,7,19,5,6,5,19,7,8,20,5,0,1,23,7,5,1,2,24,8,7,23};
63   const int expected2[9]={0,5,12,17,24,29,36,41,48};
64   CPPUNIT_ASSERT_EQUAL(48,m11->getNodalConnectivity()->getNumberOfTuples());
65   CPPUNIT_ASSERT_EQUAL(9,m11->getNodalConnectivityIndex()->getNumberOfTuples());
66   CPPUNIT_ASSERT(std::equal(expected1,expected1+48,m11->getNodalConnectivity()->getConstPointer()));
67   CPPUNIT_ASSERT(std::equal(expected2,expected2+9,m11->getNodalConnectivityIndex()->getConstPointer()));
68   m11->decrRef();
69   //
70   MEDCouplingUMesh *m12=static_cast<MEDCouplingUMesh *>(m1->deepCpy());
71   m12->tessellate2D(0.5);
72   CPPUNIT_ASSERT_EQUAL(41,m12->getNumberOfNodes());
73   const int expected3[60]={5,0,3,25,26,1,5,3,4,27,28,2,1,26,25,5,5,29,30,3,0,5,6,31,32,4,3,30,29,5,5,5,0,7,33,34,5,6,5,34,33,7,8,35,36,5,0,1,37,38,7,5,1,2,39,40,8,7,38,37};
74   const int expected4[9]={0,6,15,21,30,36,45,51,60};
75   const double expected5[82]={0.,0.,1.,0.,1.5,0.,0.,1.,0.,1.5,-1.,0.,-1.5,0.,0.,-1.,0.,-1.5,0.5,0.,1.25,0.,0.7071067811865476,0.7071067811865476,1.0606601717798214,1.0606601717798214,0.,0.5,0.,1.25,-0.7071067811865476,0.7071067811865476,-1.0606601717798214,1.0606601717798214,-0.5,0.,-1.25,0.,-0.7071067811865476,-0.7071067811865476,-1.0606601717798214,-1.0606601717798214,0.,-0.5,0.,-1.25,0.7071067811865476,-0.7071067811865476,1.0606601717798214,-1.0606601717798214,0.479425538604203,0.8775825618903728,0.8414709848078964,0.54030230586814,0.7191383079063044,1.3163738428355591,1.2622064772118446,0.8104534588022099,-0.877582561890373,0.4794255386042027,-0.5403023058681399,0.8414709848078964,-1.3163738428355596,0.7191383079063038,-0.8104534588022098,1.2622064772118446,-0.4794255386042031,-0.8775825618903728,-0.8414709848078965,-0.5403023058681399,-0.7191383079063045,-1.3163738428355591,-1.2622064772118449,-0.8104534588022098,0.8775825618903729,-0.47942553860420295,0.54030230586814,-0.8414709848078964,1.3163738428355594,-0.7191383079063043,0.8104534588022099,-1.2622064772118446};
76   for(int i=0;i<82;i++)
77     CPPUNIT_ASSERT_DOUBLES_EQUAL(expected5[i],m12->getCoords()->getIJ(0,i),1e-12);
78   CPPUNIT_ASSERT_EQUAL(60,m12->getNodalConnectivity()->getNumberOfTuples());
79   CPPUNIT_ASSERT_EQUAL(9,m12->getNodalConnectivityIndex()->getNumberOfTuples());
80   CPPUNIT_ASSERT(std::equal(expected3,expected3+60,m12->getNodalConnectivity()->getConstPointer()));
81   CPPUNIT_ASSERT(std::equal(expected4,expected4+9,m12->getNodalConnectivityIndex()->getConstPointer()));
82   m12->decrRef();
83   //
84   m1->decrRef();
85 }
86
87 /*!
88  * idem MEDCouplingBasicsTest4::testIntersect2DMeshesTmp3 except that m1 and m2 are permuted on call to MEDCouplingUMesh::Intersect2DMeshes
89  */
90 void MEDCouplingBasicsTest5::testIntersect2DMeshesTmp4()
91 {
92   double m1Coords[50]={0.,0.,1.,0.,1.5,0.,0.,1.,0.,1.5,-1.,0.,-1.5,0.,0.,-1,0.,-1.5,0.5,0.,1.25,0.,0.70710678118654757,0.70710678118654757,1.0606601717798214,1.0606601717798214,0.,0.5,0.,1.25,-0.70710678118654757,0.70710678118654757,-1.0606601717798214,1.0606601717798214,-0.5,0.,-1.25,0.,-0.70710678118654757,-0.70710678118654757,-1.0606601717798214,-1.0606601717798214,0.,-0.5,0.,-1.25,0.70710678118654757,-0.70710678118654757,1.0606601717798214,-1.0606601717798214};
93   int m1Conn[56]={0,3,1,13,11,9, 3,4,2,1,14,12,10,11, 5,3,0,15,13,17, 6,4,3,5,16,14,15,18, 5,0,7,17,21,19, 6,5,7,8,18,19,22,20, 0,1,7,9,23,21, 1,2,8,7,10,24,22,23};
94   MEDCouplingUMesh *m1=MEDCouplingUMesh::New();
95   m1->setMeshDimension(2);
96   m1->allocateCells(8);
97   m1->insertNextCell(INTERP_KERNEL::NORM_TRI6,6,m1Conn);
98   m1->insertNextCell(INTERP_KERNEL::NORM_QUAD8,8,m1Conn+6);
99   m1->insertNextCell(INTERP_KERNEL::NORM_TRI6,6,m1Conn+14);
100   m1->insertNextCell(INTERP_KERNEL::NORM_QUAD8,8,m1Conn+20);
101   m1->insertNextCell(INTERP_KERNEL::NORM_TRI6,6,m1Conn+28);
102   m1->insertNextCell(INTERP_KERNEL::NORM_QUAD8,8,m1Conn+34);
103   m1->insertNextCell(INTERP_KERNEL::NORM_TRI6,6,m1Conn+42);
104   m1->insertNextCell(INTERP_KERNEL::NORM_QUAD8,8,m1Conn+48);
105   m1->finishInsertingCells();
106   DataArrayDouble *myCoords1=DataArrayDouble::New();
107   myCoords1->alloc(25,2);
108   std::copy(m1Coords,m1Coords+50,myCoords1->getPointer());
109   m1->setCoords(myCoords1);
110   myCoords1->decrRef();
111   //
112   double m2Coords[30]={0.,0.,1.1,0.,1.1,1.,0.,1.,1.7,0.,1.7,1.,-1.1,1.,-1.1,0.,-1.7,0.,-1.7,1.,-1.7,-1,-1.1,-1.,0.,-1.,1.1,-1,1.7,-1.};
113   int m2Conn[32]={0,3,2,1, 1,2,5,4, 7,6,3,0, 8,9,6,7, 7,0,12,11, 8,7,11,10, 0,1,13,12, 1,4,14,13};
114   MEDCouplingUMesh *m2=MEDCouplingUMesh::New();
115   m2->setMeshDimension(2);
116   m2->allocateCells(8);
117   for(int i=0;i<8;i++)
118     m2->insertNextCell(INTERP_KERNEL::NORM_QUAD4,4,m2Conn+4*i);
119   m2->finishInsertingCells();
120   DataArrayDouble *myCoords2=DataArrayDouble::New();
121   myCoords2->alloc(15,2);
122   std::copy(m2Coords,m2Coords+30,myCoords2->getPointer());
123   m2->setCoords(myCoords2);
124   myCoords2->decrRef();
125   //
126   DataArrayInt *d1=0,*d2=0;
127   MEDCouplingUMesh *m3=MEDCouplingUMesh::Intersect2DMeshes(m2,m1,1e-10,d1,d2);
128   m3->unPolyze();
129   const int expected1[12]={0,0,1,2,2,3,4,4,5,6,6,7};
130   const int expected2[12]={0,1,1,2,3,3,4,5,5,6,7,7};
131   CPPUNIT_ASSERT_EQUAL(12,d1->getNumberOfTuples());
132   CPPUNIT_ASSERT_EQUAL(12,d2->getNumberOfTuples());
133   CPPUNIT_ASSERT_EQUAL(12,m3->getNumberOfCells());
134   CPPUNIT_ASSERT_EQUAL(88,m3->getNumberOfNodes());
135   CPPUNIT_ASSERT_EQUAL(2,m3->getSpaceDimension());
136   CPPUNIT_ASSERT(std::equal(expected1,expected1+12,d1->getConstPointer()));
137   CPPUNIT_ASSERT(std::equal(expected2,expected2+12,d2->getConstPointer()));
138   const int expected3[100]={6,16,15,18,44,45,46,8,18,2,1,16,47,48,49,50,8,17,1,2,40,51,52,53,54,6,18,15,20,55,56,57,8,20,7,6,18,58,59,60,61,8,41,6,7,21,62,63,64,65,6,20,15,22,66,67,68,8,22,11,7,20,69,70,71,72,8,21,7,11,42,73,74,75,76,6,22,15,16,77,78,79,8,16,1,13,22,80,81,82,83,8,43,13,1,17,84,85,86,87};
139   const int expected4[13]={0,7,16,25,32,41,50,57,66,75,82,91,100};
140   const double expected5[176]={0.,0.,1.1,0.,1.1,1.,0.,1.,1.7,0.,1.7,1.,-1.1,1.,-1.1,0.,-1.7,0.,-1.7,1.,-1.7,-1.,-1.1,-1.,0.,-1.,1.1,-1.,1.7,-1.,0.,0.,1.,0.,1.5,0.,0.,1.,0.,1.5,-1.,0.,-1.5,0.,0.,-1.,0.,-1.5,0.5,0.,1.25,0.,0.7071067811865476,0.7071067811865476,1.0606601717798214,1.0606601717798214,0.,0.5,0.,1.25,-0.7071067811865476,0.7071067811865476,-1.0606601717798214,1.0606601717798214,-0.5,0.,-1.25,0.,-0.7071067811865476,-0.7071067811865476,-1.0606601717798214,-1.0606601717798214,0.,-0.5,0.,-1.25,0.7071067811865476,-0.7071067811865476,1.0606601717798214,-1.0606601717798214,1.1180339887498951,1.,-1.1180339887498951,1.,-1.1180339887498951,-1.,1.1180339887498951,-1.,0.5,0.,0.,0.5,0.7071067811865477,0.7071067811865476,0.55,1.,1.1,0.5,1.05,0.,0.7071067811865477,0.7071067811865477,1.3,0.,1.1,0.5,1.1090169943749475,1.,1.4012585384440737,0.535233134659635,0.,0.5,-0.5,0.,-0.7071067811865477,0.7071067811865476,-1.05,0.,-1.1,0.5,-0.55,1.,-0.7071067811865477,0.7071067811865477,-1.1090169943749475,1.,-1.1,0.5,-1.3,0.,-1.4012585384440737,0.5352331346596344,-0.5,0.,0.,-0.5,-0.7071067811865475,-0.7071067811865477,-0.55,-1.,-1.1,-0.5,-1.05,0.,-0.7071067811865479,-0.7071067811865476,-1.3,0.,-1.1,-0.5,-1.1090169943749475,-1.,-1.4012585384440734,-0.5352331346596354,0.,-0.5,0.5,0.,0.7071067811865475,-0.7071067811865477,1.05,0.,1.1,-0.5,0.55,-1.,0.7071067811865477,-0.7071067811865476,1.1090169943749475,-1.,1.1,-0.5,1.3,0.,1.4012585384440737,-0.535233134659635};
141   CPPUNIT_ASSERT_EQUAL(100,m3->getNodalConnectivity()->getNumberOfTuples());
142   CPPUNIT_ASSERT_EQUAL(13,m3->getNodalConnectivityIndex()->getNumberOfTuples());
143   CPPUNIT_ASSERT(std::equal(expected3,expected3+100,m3->getNodalConnectivity()->getConstPointer()));
144   CPPUNIT_ASSERT(std::equal(expected4,expected4+13,m3->getNodalConnectivityIndex()->getConstPointer()));
145   for(int i=0;i<176;i++)
146     CPPUNIT_ASSERT_DOUBLES_EQUAL(expected5[i],m3->getCoords()->getIJ(0,i),1e-12);
147   d1->decrRef();
148   d2->decrRef();
149   m3->decrRef();
150   //
151   m1->decrRef();
152   m2->decrRef();
153 }
154
155 void MEDCouplingBasicsTest5::testGetCellIdsCrossingPlane1()
156 {
157   MEDCouplingUMesh *mesh2D=0;
158   MEDCouplingUMesh *mesh3D=build3DExtrudedUMesh_1(mesh2D);
159   const double vec[3]={-0.07,1.,0.07};
160   const double origin[3]={1.524,1.4552,1.74768};
161   DataArrayInt *ids1=mesh3D->getCellIdsCrossingPlane(origin,vec,1e-10);
162   CPPUNIT_ASSERT_EQUAL(9,ids1->getNumberOfTuples());
163   const int expected1[9]={1,3,4,7,9,10,13,15,16};
164   CPPUNIT_ASSERT(std::equal(expected1,expected1+9,ids1->getConstPointer()));
165   const double vec2[3]={0.,0.,1.};
166   DataArrayInt *ids2=mesh3D->getCellIdsCrossingPlane(origin,vec2,1e-10);
167   const int expected2[6]={6,7,8,9,10,11};
168   CPPUNIT_ASSERT_EQUAL(6,ids2->getNumberOfTuples());
169   CPPUNIT_ASSERT(std::equal(expected2,expected2+6,ids2->getConstPointer()));
170   ids1->decrRef();
171   ids2->decrRef();
172   mesh3D->decrRef();
173   mesh2D->decrRef();
174 }
175
176 void MEDCouplingBasicsTest5::testBuildSlice3D1()
177 {
178   MEDCouplingUMesh *mesh2D=0;
179   MEDCouplingUMesh *mesh3D=build3DExtrudedUMesh_1(mesh2D);
180   mesh2D->decrRef();
181   // First slice in the middle of 3D cells
182   const double vec1[3]={-0.07,1.,0.07};
183   const double origin1[3]={1.524,1.4552,1.74768};
184   DataArrayInt *ids=0;
185   MEDCouplingUMesh *slice1=mesh3D->buildSlice3D(origin1,vec1,1e-10,ids);
186   const int expected1[9]={1,3,4,7,9,10,13,15,16};
187   const int expected2[47]={5,42,41,40,43,44,5,42,46,45,41,5,44,43,40,47,48,5,49,42,44,50,5,49,51,46,42,5,50,44,48,52,5,53,49,50,54,5,53,55,51,49,5,54,50,52,56};
188   const int expected3[10]={0,6,11,17,22,27,32,37,42,47};
189   const double expected4[171]={1.,1.,0.,1.,1.25,0.,1.,1.5,0.,2.,1.,0.,1.,2.,0.,0.,2.,0.,3.,1.,0.,3.,2.,0.,0.,1.,0.,2.,2.,0.,1.,1.,1.,1.,1.25,1.,1.,1.5,1.,2.,1.,1.,1.,2.,1.,0.,2.,1.,3.,1.,1.,3.,2.,1.,0.,1.,1.,2.,2.,1.,1.,1.,2.,1.,1.25,2.,1.,1.5,2.,2.,1.,2.,1.,2.,2.,0.,2.,2.,3.,1.,2.,3.,2.,2.,0.,1.,2.,2.,2.,2.,1.,1.,3.,1.,1.25,3.,1.,1.5,3.,2.,1.,3.,1.,2.,3.,0.,2.,3.,3.,1.,3.,3.,2.,3.,0.,1.,3.,2.,2.,3.,1.,1.5408576,0.,2.,1.6108576000000001,0.,2.,1.5408576,1.,1.,1.5,0.5836800000000008,1.,1.4708576,1.,3.,1.6808576,0.,3.,1.6108576000000001,1.,0.,1.4708576,0.,0.,1.4008576,1.,2.,1.4708576,2.,1.,1.4008576000000001,2.,3.,1.5408575999999998,2.,0.,1.3308575999999999,2.,2.,1.4008576,3.,1.,1.3308576,3.,3.,1.4708576,3.,0.,1.2608576,3.};
190   CPPUNIT_ASSERT_EQUAL(2,slice1->getMeshDimension());
191   CPPUNIT_ASSERT_EQUAL(3,slice1->getSpaceDimension());
192   CPPUNIT_ASSERT_EQUAL(57,slice1->getNumberOfNodes());
193   CPPUNIT_ASSERT_EQUAL(9,slice1->getNumberOfCells());
194   CPPUNIT_ASSERT_EQUAL(9,ids->getNumberOfTuples());
195   CPPUNIT_ASSERT_EQUAL(47,slice1->getNodalConnectivity()->getNumberOfTuples());
196   CPPUNIT_ASSERT_EQUAL(10,slice1->getNodalConnectivityIndex()->getNumberOfTuples());
197   CPPUNIT_ASSERT(std::equal(expected1,expected1+9,ids->getConstPointer()));
198   CPPUNIT_ASSERT(std::equal(expected2,expected2+47,slice1->getNodalConnectivity()->getConstPointer()));
199   CPPUNIT_ASSERT(std::equal(expected3,expected3+10,slice1->getNodalConnectivityIndex()->getConstPointer()));
200   for(int i=0;i<171;i++)
201     CPPUNIT_ASSERT_DOUBLES_EQUAL(expected4[i],slice1->getCoords()->getIJ(0,i),1e-12);
202   ids->decrRef();
203   slice1->decrRef();
204   // 2nd slice based on already existing nodes of mesh3D.
205   const double vec2[3]={0.,3.,1.};
206   const double origin2[3]={2.5,1.,3.};
207   slice1=mesh3D->buildSlice3D(origin2,vec2,1e-10,ids);
208   const int expected5[49]={5,50,10,4,51,5,50,52,7,10,5,51,4,5,53,5,54,50,51,55,56,5,54,57,52,50,5,56,55,51,53,58,5,38,59,56,54,43,5,54,57,46,43,5,38,59,56,58,48};
209   const int expected6[10]={0,5,10,15,21,26,32,38,43,49};
210   const double expected7[180]={1.,1.,0.,1.,1.25,0.,1.,1.5,0.,2.,1.,0.,1.,2.,0.,0.,2.,0.,3.,1.,0.,3.,2.,0.,0.,1.,0.,1.,3.,0.,2.,2.,0.,2.,3.,0.,1.,1.,1.,1.,1.25,1.,1.,1.5,1.,2.,1.,1.,1.,2.,1.,0.,2.,1.,3.,1.,1.,3.,2.,1.,0.,1.,1.,1.,3.,1.,2.,2.,1.,2.,3.,1.,0.,0.,2.,1.,1.,2.,1.,1.25,2.,1.,0.,2.,1.,1.5,2.,2.,0.,2.,2.,1.,2.,1.,2.,2.,0.,2.,2.,3.,1.,2.,3.,2.,2.,0.,1.,2.,2.,2.,2.,0.,0.,3.,1.,1.,3.,1.,1.25,3.,1.,0.,3.,1.,1.5,3.,2.,0.,3.,2.,1.,3.,1.,2.,3.,0.,2.,3.,3.,1.,3.,3.,2.,3.,0.,1.,3.,2.,2.,3.,2.,1.6666666666666667,1.,1.,1.6666666666666667,1.,3.,1.6666666666666667,1.,0.,1.6666666666666667,1.,2.,1.3333333333333335,2.,1.,1.5,1.5,1.,1.3333333333333333,2.,3.,1.3333333333333335,2.,0.,1.3333333333333335,2.,1.,1.25,2.25};
211   CPPUNIT_ASSERT_EQUAL(2,slice1->getMeshDimension());
212   CPPUNIT_ASSERT_EQUAL(3,slice1->getSpaceDimension());
213   CPPUNIT_ASSERT_EQUAL(60,slice1->getNumberOfNodes());
214   CPPUNIT_ASSERT_EQUAL(9,slice1->getNumberOfCells());
215   CPPUNIT_ASSERT_EQUAL(9,ids->getNumberOfTuples());
216   CPPUNIT_ASSERT_EQUAL(49,slice1->getNodalConnectivity()->getNumberOfTuples());
217   CPPUNIT_ASSERT_EQUAL(10,slice1->getNodalConnectivityIndex()->getNumberOfTuples());
218   CPPUNIT_ASSERT(std::equal(expected1,expected1+9,ids->getConstPointer()));
219   CPPUNIT_ASSERT(std::equal(expected5,expected5+49,slice1->getNodalConnectivity()->getConstPointer()));
220   CPPUNIT_ASSERT(std::equal(expected6,expected6+10,slice1->getNodalConnectivityIndex()->getConstPointer()));
221   for(int i=0;i<180;i++)
222     CPPUNIT_ASSERT_DOUBLES_EQUAL(expected7[i],slice1->getCoords()->getIJ(0,i),1e-12);
223   ids->decrRef();
224   slice1->decrRef();
225   // 3rd slice based on shared face of mesh3D.
226   const double vec3[3]={0.,0.,1.};
227   const double origin3[3]={2.5,1.,2.};
228   slice1=mesh3D->buildSlice3D(origin3,vec3,1e-10,ids);
229   const int expected8[12]={6,7,8,9,10,11,12,13,14,15,16,17};
230   const int expected9[68]={5,15,26,16,18,5,16,21,28,22,19,17,5,18,20,21,16,5,21,24,25,28,5,26,16,17,19,22,23,5,22,27,29,28,5,15,26,16,18,5,16,21,28,22,19,17,5,18,20,21,16,5,21,24,25,28,5,26,16,17,19,22,23,5,22,27,29,28};
231   const int expected10[13]={0,5,12,17,22,29,34,39,46,51,56,63,68};
232   const double expected11[135]={0.,0.,1.,1.,1.,1.,1.,1.25, 1.,1.,0.,1.,1.,1.5, 1.,2.,0.,1.,2.,1.,1.,1.,2.,1.,0.,2.,1.,3.,1.,1.,3.,2.,1.,0.,1.,1.,1.,3.,1.,2.,2.,1.,2.,3.,1.,0.,0.,2.,1.,1.,2.,1.,1.25, 2.,1.,0.,2.,1.,1.5, 2.,2.,0.,2.,2.,1.,2.,1.,2.,2.,0.,2.,2.,3.,1.,2.,3.,2.,2.,0.,1.,2.,1.,3.,2.,2.,2.,2.,2.,3.,2.,0.,0.,3.,1.,1.,3.,1.,1.25, 3.,1.,0.,3.,1.,1.5, 3.,2.,0.,3.,2.,1.,3.,1.,2.,3.,0.,2.,3.,3.,1.,3.,3.,2.,3.,0.,1.,3.,1.,3.,3.,2.,2.,3.,2.,3.,3.};
233   CPPUNIT_ASSERT_EQUAL(2,slice1->getMeshDimension());
234   CPPUNIT_ASSERT_EQUAL(3,slice1->getSpaceDimension());
235   CPPUNIT_ASSERT_EQUAL(45,slice1->getNumberOfNodes());
236   CPPUNIT_ASSERT_EQUAL(12,slice1->getNumberOfCells());
237   CPPUNIT_ASSERT_EQUAL(12,ids->getNumberOfTuples());
238   CPPUNIT_ASSERT_EQUAL(68,slice1->getNodalConnectivity()->getNumberOfTuples());
239   CPPUNIT_ASSERT_EQUAL(13,slice1->getNodalConnectivityIndex()->getNumberOfTuples());
240   CPPUNIT_ASSERT(std::equal(expected8,expected8+12,ids->getConstPointer()));
241   CPPUNIT_ASSERT(std::equal(expected9,expected9+68,slice1->getNodalConnectivity()->getConstPointer()));
242   CPPUNIT_ASSERT(std::equal(expected10,expected10+13,slice1->getNodalConnectivityIndex()->getConstPointer()));
243   for(int i=0;i<135;i++)
244     CPPUNIT_ASSERT_DOUBLES_EQUAL(expected11[i],slice1->getCoords()->getIJ(0,i),1e-12);
245   ids->decrRef();
246   slice1->decrRef();
247   //
248   mesh3D->decrRef();
249 }
250
251 void MEDCouplingBasicsTest5::testBuildSlice3DSurf1()
252 {
253   MEDCouplingUMesh *mesh2D=0;
254   MEDCouplingUMesh *mesh3D=build3DExtrudedUMesh_1(mesh2D);
255   mesh2D->decrRef();
256   DataArrayInt *a=DataArrayInt::New(),*b=DataArrayInt::New(),*c=DataArrayInt::New(),*d=DataArrayInt::New();
257   mesh2D=mesh3D->buildDescendingConnectivity(a,b,c,d);
258   a->decrRef(); b->decrRef(); c->decrRef(); d->decrRef();
259   mesh3D->decrRef();
260   //
261   const double vec1[3]={-0.07,1.,0.07};
262   const double origin1[3]={1.524,1.4552,1.74768};
263   DataArrayInt *ids=0;
264   MEDCouplingUMesh *slice1=mesh2D->buildSlice3DSurf(origin1,vec1,1e-10,ids);
265   const int expected1[25]={6,8,10,11,13,18,19,21,23,25,26,38,41,43,47,49,52,53,64,67,69,73,75,78,79};
266   const int expected2[75]={1,40,41,1,42,41,1,40,43,1,44,43,1,42,44,1,45,41,1,42,46,1,46,45,1,47,40,1,47,48,1,44,48,1,49,42,1,44,50,1,49,50,1,49,51,1,51,46,1,48,52,1,50,52,1,53,49,1,50,54,1,53,54,1,53,55,1,55,51,1,52,56,1,54,56};
267   const int expected3[26]={0,3,6,9,12,15,18,21,24,27,30,33,36,39,42,45,48,51,54,57,60,63,66,69,72,75};
268   const double expected4[171]={1.,1.,0.,1.,1.25,0.,1.,1.5,0.,2.,1.,0.,1.,2.,0.,0.,2.,0.,3.,1.,0.,3.,2.,0.,0.,1.,0.,2.,2.,0.,1.,1.,1.,1.,1.25,1.,1.,1.5,1.,2.,1.,1.,1.,2.,1.,0.,2.,1.,3.,1.,1.,3.,2.,1.,0.,1.,1.,2.,2.,1.,1.,1.,2.,1.,1.25,2.,1.,1.5,2.,2.,1.,2.,1.,2.,2.,0.,2.,2.,3.,1.,2.,3.,2.,2.,0.,1.,2.,2.,2.,2.,1.,1.,3.,1.,1.25,3.,1.,1.5,3.,2.,1.,3.,1.,2.,3.,0.,2.,3.,3.,1.,3.,3.,2.,3.,0.,1.,3.,2.,2.,3.,1.,1.5408576,0.,2.,1.6108576000000001,0.,2.,1.5408576,1.,1.,1.5,0.5836800000000008,1.,1.4708576,1.,3.,1.6808576,0.,3.,1.6108576000000001,1.,0.,1.4708576,0.,0.,1.4008576,1.,2.,1.4708576,2.,1.,1.4008576000000001,2.,3.,1.5408575999999998,2.,0.,1.3308575999999999,2.,2.,1.4008576,3.,1.,1.3308576,3.,3.,1.4708576,3.,0.,1.2608576,3.};
269   CPPUNIT_ASSERT_EQUAL(1,slice1->getMeshDimension());
270   CPPUNIT_ASSERT_EQUAL(3,slice1->getSpaceDimension());
271   CPPUNIT_ASSERT_EQUAL(57,slice1->getNumberOfNodes());
272   CPPUNIT_ASSERT_EQUAL(25,slice1->getNumberOfCells());
273   CPPUNIT_ASSERT_EQUAL(25,ids->getNumberOfTuples());
274   CPPUNIT_ASSERT_EQUAL(75,slice1->getNodalConnectivity()->getNumberOfTuples());
275   CPPUNIT_ASSERT_EQUAL(26,slice1->getNodalConnectivityIndex()->getNumberOfTuples());
276   CPPUNIT_ASSERT(std::equal(expected1,expected1+25,ids->getConstPointer()));
277   CPPUNIT_ASSERT(std::equal(expected2,expected2+47,slice1->getNodalConnectivity()->getConstPointer()));
278   CPPUNIT_ASSERT(std::equal(expected3,expected3+26,slice1->getNodalConnectivityIndex()->getConstPointer()));
279   for(int i=0;i<171;i++)
280     CPPUNIT_ASSERT_DOUBLES_EQUAL(expected4[i],slice1->getCoords()->getIJ(0,i),1e-12);
281   ids->decrRef();
282   slice1->decrRef();
283   //
284   const double vec2[3]={0.,0.,1.};
285   const double origin2[3]={2.5,1.,2.};
286   slice1=mesh2D->buildSlice3DSurf(origin2,vec2,1e-10,ids);
287   const int expected5[68]={32,32,32,32,33,34,35,36,37,38,39,40,41,42,43,43,43,43,43,43,44,44,44,44,45,46,47,47,47,47,48,49,50,51,52,53,53,53,53,53,53,54,54,54,54,55,56,57,59,60,61,62,63,64,65,66,67,68,71,72,74,75,76,77,78,81,82,83};
288   const int expected6[204]={1,15,18,1,18,16,1,16,26,1,26,15,1,26,15,1,16,26,1,18,16,1,15,18,1,16,21,1,21,28,1,22,28,1,19,22,1,17,19,1,16,17,1,16,21,1,21,28,1,28,22,1,22,19,1,19,17,1,17,16,1,16,18,1,18,20,1,20,21,1,21,16,1,20,21,1,18,20,1,28,21,1,21,24,1,24,25,1,25,28,1,25,28,1,24,25,1,21,24,1,23,22,1,26,23,1,26,16,1,16,17,1,17,19,1,19,22,1,22,23,1,23,26,1,22,28,1,28,29,1,29,27,1,27,22,1,27,22,1,29,27,1,28,29,1,26,15,1,16,26,1,18,16,1,15,18,1,16,21,1,21,28,1,22,28,1,19,22,1,17,19,1,16,17,1,20,21,1,18,20,1,25,28,1,24,25,1,21,24,1,23,22,1,26,23,1,27,22,1,29,27,1,28,29};
289   const int expected7[69]={0,3,6,9,12,15,18,21,24,27,30,33,36,39,42,45,48,51,54,57,60,63,66,69,72,75,78,81,84,87,90,93,96,99,102,105,108,111,114,117,120,123,126,129,132,135,138,141,144,147,150,153,156,159,162,165,168,171,174,177,180,183,186,189,192,195,198,201,204};
290   const double expected8[135]={0.,0.,1.,1.,1.,1.,1.,1.25, 1.,1.,0.,1.,1.,1.5, 1.,2.,0.,1.,2.,1.,1.,1.,2.,1.,0.,2.,1.,3.,1.,1.,3.,2.,1.,0.,1.,1.,1.,3.,1.,2.,2.,1.,2.,3.,1.,0.,0.,2.,1.,1.,2.,1.,1.25, 2.,1.,0.,2.,1.,1.5, 2.,2.,0.,2.,2.,1.,2.,1.,2.,2.,0.,2.,2.,3.,1.,2.,3.,2.,2.,0.,1.,2.,1.,3.,2.,2.,2.,2.,2.,3.,2.,0.,0.,3.,1.,1.,3.,1.,1.25, 3.,1.,0.,3.,1.,1.5, 3.,2.,0.,3.,2.,1.,3.,1.,2.,3.,0.,2.,3.,3.,1.,3.,3.,2.,3.,0.,1.,3.,1.,3.,3.,2.,2.,3.,2.,3.,3.};
291   CPPUNIT_ASSERT_EQUAL(1,slice1->getMeshDimension());
292   CPPUNIT_ASSERT_EQUAL(3,slice1->getSpaceDimension());
293   CPPUNIT_ASSERT_EQUAL(45,slice1->getNumberOfNodes());
294   CPPUNIT_ASSERT_EQUAL(68,slice1->getNumberOfCells());
295   CPPUNIT_ASSERT_EQUAL(68,ids->getNumberOfTuples());
296   CPPUNIT_ASSERT_EQUAL(204,slice1->getNodalConnectivity()->getNumberOfTuples());
297   CPPUNIT_ASSERT_EQUAL(69,slice1->getNodalConnectivityIndex()->getNumberOfTuples());
298   CPPUNIT_ASSERT(std::equal(expected5,expected5+68,ids->getConstPointer()));
299   CPPUNIT_ASSERT(std::equal(expected6,expected6+171,slice1->getNodalConnectivity()->getConstPointer()));
300   CPPUNIT_ASSERT(std::equal(expected7,expected7+69,slice1->getNodalConnectivityIndex()->getConstPointer()));
301   for(int i=0;i<135;i++)
302     CPPUNIT_ASSERT_DOUBLES_EQUAL(expected8[i],slice1->getCoords()->getIJ(0,i),1e-12);
303   ids->decrRef();
304   slice1->decrRef();
305   //
306   mesh2D->decrRef();
307 }
308
309 void MEDCouplingBasicsTest5::testDataArrayDoubleAdvSetting1()
310 {
311   const double data1[14]={1.,11.,2.,12.,3.,13.,4.,14.,5.,15.,6.,16.,7.,17.};
312   const double data2[10]={8.,38.,9.,39.,0.,30.,11.,41.,12.,42.};
313   const char *comps[2]={"comp1","comp2"};
314   std::vector<std::string> compsCpp(comps,comps+2);
315   DataArrayDouble *da=DataArrayDouble::New();
316   DataArrayDouble *tmp=0;
317   da->setInfoAndChangeNbOfCompo(compsCpp);
318   da->setName("da");
319   da->alloc(7,2);
320   compsCpp.pop_back();
321   CPPUNIT_ASSERT_THROW(da->setInfoAndChangeNbOfCompo(compsCpp),INTERP_KERNEL::Exception);
322   std::copy(data1,data1+14,da->getPointer());
323   //
324   std::vector<std::pair<int,int> > p(3);
325   p[0].first=0; p[0].second=3; p[1].first=3; p[1].second=5; p[2].first=5; p[2].second=7;
326   tmp=da->selectByTupleRanges(p);
327   CPPUNIT_ASSERT(tmp->isEqual(*da,1e-14));
328   tmp->decrRef();
329   p[0].first=0; p[0].second=2; p[1].first=3; p[1].second=4; p[2].first=5; p[2].second=7;
330   tmp=da->selectByTupleRanges(p);
331   const double expected1[10]={1.,11.,2.,12.,4.,14.,6.,16.,7.,17.};
332   CPPUNIT_ASSERT_EQUAL(5,tmp->getNumberOfTuples());
333   CPPUNIT_ASSERT_EQUAL(2,tmp->getNumberOfComponents());
334   for(int i=0;i<10;i++)
335     CPPUNIT_ASSERT_DOUBLES_EQUAL(expected1[i],tmp->getIJ(0,i),1e-14);
336   tmp->decrRef();
337   p[0].first=0; p[0].second=2; p[1].first=0; p[1].second=2; p[2].first=5; p[2].second=6;
338   tmp=da->selectByTupleRanges(p);
339   const double expected2[10]={1.,11.,2.,12.,1.,11.,2.,12.,6.,16.};
340   CPPUNIT_ASSERT_EQUAL(5,tmp->getNumberOfTuples());
341   CPPUNIT_ASSERT_EQUAL(2,tmp->getNumberOfComponents());
342   for(int i=0;i<10;i++)
343     CPPUNIT_ASSERT_DOUBLES_EQUAL(expected2[i],tmp->getIJ(0,i),1e-14);
344   tmp->decrRef();
345   p[0].first=0; p[0].second=2; p[1].first=-1; p[1].second=2; p[2].first=5; p[2].second=6;
346   CPPUNIT_ASSERT_THROW(da->selectByTupleRanges(p),INTERP_KERNEL::Exception);
347   p[0].first=0; p[0].second=2; p[1].first=0; p[1].second=2; p[2].first=5; p[2].second=8;
348   CPPUNIT_ASSERT_THROW(da->selectByTupleRanges(p),INTERP_KERNEL::Exception);
349   //
350   DataArrayDouble *da2=DataArrayDouble::New();
351   da2->alloc(5,2);
352   std::copy(data2,data2+10,da2->getPointer());
353   //
354   DataArrayDouble *dac=da->deepCpy();
355   dac->setContigPartOfSelectedValues2(1,da2,2,4,1);
356   const double expected3[14]={1.,11.,0.,30.,11.,41.,4.,14.,5.,15.,6.,16.,7.,17.};
357   for(int i=0;i<14;i++)
358     CPPUNIT_ASSERT_DOUBLES_EQUAL(expected3[i],dac->getIJ(0,i),1e-14);
359   dac->decrRef();
360   //
361   dac=da->deepCpy();
362   CPPUNIT_ASSERT_THROW(dac->setContigPartOfSelectedValues2(3,da2,0,5,1),INTERP_KERNEL::Exception);
363   CPPUNIT_ASSERT_THROW(dac->setContigPartOfSelectedValues2(0,da2,4,6,1),INTERP_KERNEL::Exception);
364   CPPUNIT_ASSERT_THROW(dac->setContigPartOfSelectedValues2(3,da2,5,0,1),INTERP_KERNEL::Exception);
365   dac->setContigPartOfSelectedValues2(3,da2,1,5,1);
366   const double expected4[14]={1.,11.,2.,12.,3.,13.,9.,39.,0.,30.,11.,41.,12.,42.};
367   for(int i=0;i<14;i++)
368     CPPUNIT_ASSERT_DOUBLES_EQUAL(expected4[i],dac->getIJ(0,i),1e-14);
369   dac->decrRef();
370   //
371   DataArrayInt *ids=DataArrayInt::New();
372   ids->alloc(3,1);
373   dac=da->deepCpy();
374   ids->setIJ(0,0,2); ids->setIJ(1,0,0); ids->setIJ(2,0,4);
375   dac->setContigPartOfSelectedValues(2,da2,ids);
376   const double expected5[14]={1.,11.,2.,12.,0.,30.,8.,38.,12.,42.,6.,16.,7.,17.};
377   for(int i=0;i<14;i++)
378     CPPUNIT_ASSERT_DOUBLES_EQUAL(expected5[i],dac->getIJ(0,i),1e-14);
379   dac->decrRef();
380   //
381   dac=da->deepCpy();
382   ids->setIJ(0,0,2); ids->setIJ(1,0,5); ids->setIJ(2,0,4);
383   CPPUNIT_ASSERT_THROW(dac->setContigPartOfSelectedValues(1,da2,ids),INTERP_KERNEL::Exception);
384   ids->setIJ(0,0,2); ids->setIJ(1,0,2); ids->setIJ(2,0,-1);
385   CPPUNIT_ASSERT_THROW(dac->setContigPartOfSelectedValues(1,da2,ids),INTERP_KERNEL::Exception);
386   ids->setIJ(0,0,2); ids->setIJ(1,0,2); ids->setIJ(2,0,1);
387   CPPUNIT_ASSERT_THROW(dac->setContigPartOfSelectedValues(5,da2,ids),INTERP_KERNEL::Exception);
388   dac->decrRef();
389   //
390   ids->setIJ(0,0,2); ids->setIJ(1,0,2); ids->setIJ(2,0,1);
391   dac=da->deepCpy();
392   dac->setContigPartOfSelectedValues(4,da2,ids);
393   const double expected6[14]={1.,11.,2.,12.,3.,13.,4.,14.,0.,30.,0.,30.,9.,39.};
394   for(int i=0;i<14;i++)
395     CPPUNIT_ASSERT_DOUBLES_EQUAL(expected6[i],dac->getIJ(0,i),1e-14);
396   dac->decrRef();
397   ids->decrRef();
398   //
399   da2->decrRef();
400   da->decrRef();
401 }
402
403 void MEDCouplingBasicsTest5::testDataArrayIntAdvSetting1()
404 {
405   const int data1[14]={1,11,2,12,3,13,4,14,5,15,6,16,7,17};
406   const int data2[10]={8,38,9,39,0,30,11,41,12,42};
407   const char *comps[2]={"comp1","comp2"};
408   std::vector<std::string> compsCpp(comps,comps+2);
409   DataArrayInt *da=DataArrayInt::New();
410   DataArrayInt *tmp=0;
411   da->setInfoAndChangeNbOfCompo(compsCpp);
412   da->setName("da");
413   da->alloc(7,2);
414   compsCpp.pop_back();
415   CPPUNIT_ASSERT_THROW(da->setInfoAndChangeNbOfCompo(compsCpp),INTERP_KERNEL::Exception);
416   std::copy(data1,data1+14,da->getPointer());
417   //
418   std::vector<std::pair<int,int> > p(3);
419   p[0].first=0; p[0].second=3; p[1].first=3; p[1].second=5; p[2].first=5; p[2].second=7;
420   tmp=da->selectByTupleRanges(p);
421   CPPUNIT_ASSERT(tmp->isEqual(*da));
422   tmp->decrRef();
423   p[0].first=0; p[0].second=2; p[1].first=3; p[1].second=4; p[2].first=5; p[2].second=7;
424   tmp=da->selectByTupleRanges(p);
425   const int expected1[10]={1,11,2,12,4,14,6,16,7,17};
426   CPPUNIT_ASSERT_EQUAL(5,tmp->getNumberOfTuples());
427   CPPUNIT_ASSERT_EQUAL(2,tmp->getNumberOfComponents());
428   for(int i=0;i<10;i++)
429     CPPUNIT_ASSERT_EQUAL(expected1[i],tmp->getIJ(0,i));
430   tmp->decrRef();
431   p[0].first=0; p[0].second=2; p[1].first=0; p[1].second=2; p[2].first=5; p[2].second=6;
432   tmp=da->selectByTupleRanges(p);
433   const int expected2[10]={1,11,2,12,1,11,2,12,6,16};
434   CPPUNIT_ASSERT_EQUAL(5,tmp->getNumberOfTuples());
435   CPPUNIT_ASSERT_EQUAL(2,tmp->getNumberOfComponents());
436   for(int i=0;i<10;i++)
437     CPPUNIT_ASSERT_EQUAL(expected2[i],tmp->getIJ(0,i));
438   tmp->decrRef();
439   p[0].first=0; p[0].second=2; p[1].first=-1; p[1].second=2; p[2].first=5; p[2].second=6;
440   CPPUNIT_ASSERT_THROW(da->selectByTupleRanges(p),INTERP_KERNEL::Exception);
441   p[0].first=0; p[0].second=2; p[1].first=0; p[1].second=2; p[2].first=5; p[2].second=8;
442   CPPUNIT_ASSERT_THROW(da->selectByTupleRanges(p),INTERP_KERNEL::Exception);
443   //
444   DataArrayInt *da2=DataArrayInt::New();
445   da2->alloc(5,2);
446   std::copy(data2,data2+10,da2->getPointer());
447   //
448   DataArrayInt *dac=da->deepCpy();
449   dac->setContigPartOfSelectedValues2(1,da2,2,4,1);
450   const int expected3[14]={1,11,0,30,11,41,4,14,5,15,6,16,7,17};
451   for(int i=0;i<14;i++)
452     CPPUNIT_ASSERT_EQUAL(expected3[i],dac->getIJ(0,i));
453   dac->decrRef();
454   //
455   dac=da->deepCpy();
456   CPPUNIT_ASSERT_THROW(dac->setContigPartOfSelectedValues2(3,da2,0,5,1),INTERP_KERNEL::Exception);
457   CPPUNIT_ASSERT_THROW(dac->setContigPartOfSelectedValues2(0,da2,4,6,1),INTERP_KERNEL::Exception);
458   CPPUNIT_ASSERT_THROW(dac->setContigPartOfSelectedValues2(3,da2,5,0,1),INTERP_KERNEL::Exception);
459   dac->setContigPartOfSelectedValues2(3,da2,1,5,1);
460   const int expected4[14]={1,11,2,12,3,13,9,39,0,30,11,41,12,42};
461   for(int i=0;i<14;i++)
462     CPPUNIT_ASSERT_EQUAL(expected4[i],dac->getIJ(0,i));
463   dac->decrRef();
464   //
465   DataArrayInt *ids=DataArrayInt::New();
466   ids->alloc(3,1);
467   dac=da->deepCpy();
468   ids->setIJ(0,0,2); ids->setIJ(1,0,0); ids->setIJ(2,0,4);
469   dac->setContigPartOfSelectedValues(2,da2,ids);
470   const int expected5[14]={1,11,2,12,0,30,8,38,12,42,6,16,7,17};
471   for(int i=0;i<14;i++)
472     CPPUNIT_ASSERT_EQUAL(expected5[i],dac->getIJ(0,i));
473   dac->decrRef();
474   //
475   dac=da->deepCpy();
476   ids->setIJ(0,0,2); ids->setIJ(1,0,5); ids->setIJ(2,0,4);
477   CPPUNIT_ASSERT_THROW(dac->setContigPartOfSelectedValues(1,da2,ids),INTERP_KERNEL::Exception);
478   ids->setIJ(0,0,2); ids->setIJ(1,0,2); ids->setIJ(2,0,-1);
479   CPPUNIT_ASSERT_THROW(dac->setContigPartOfSelectedValues(1,da2,ids),INTERP_KERNEL::Exception);
480   ids->setIJ(0,0,2); ids->setIJ(1,0,2); ids->setIJ(2,0,1);
481   CPPUNIT_ASSERT_THROW(dac->setContigPartOfSelectedValues(5,da2,ids),INTERP_KERNEL::Exception);
482   dac->decrRef();
483   //
484   ids->setIJ(0,0,2); ids->setIJ(1,0,2); ids->setIJ(2,0,1);
485   dac=da->deepCpy();
486   dac->setContigPartOfSelectedValues(4,da2,ids);
487   const int expected6[14]={1,11,2,12,3,13,4,14,0,30,0,30,9,39};
488   for(int i=0;i<14;i++)
489     CPPUNIT_ASSERT_EQUAL(expected6[i],dac->getIJ(0,i));
490   dac->decrRef();
491   ids->decrRef();
492   //
493   da2->decrRef();
494   da->decrRef();
495 }
496
497 void MEDCouplingBasicsTest5::testBuildDescendingConnec2Of3DMesh1()
498 {
499   MEDCouplingUMesh *mesh=build3DSourceMesh_1();
500   DataArrayInt *desc=DataArrayInt::New();
501   DataArrayInt *descIndx=DataArrayInt::New();
502   DataArrayInt *revDesc=DataArrayInt::New();
503   DataArrayInt *revDescIndx=DataArrayInt::New();
504   //
505   MEDCouplingUMesh *mesh2=mesh->buildDescendingConnectivity2(desc,descIndx,revDesc,revDescIndx);
506   mesh2->checkCoherency();
507   CPPUNIT_ASSERT_EQUAL(2,mesh2->getMeshDimension());
508   CPPUNIT_ASSERT_EQUAL(30,mesh2->getNumberOfCells());
509   CPPUNIT_ASSERT_EQUAL(31,revDescIndx->getNbOfElems()); CPPUNIT_ASSERT_EQUAL(31,revDescIndx->getNumberOfTuples());
510   CPPUNIT_ASSERT_EQUAL(13,descIndx->getNbOfElems()); CPPUNIT_ASSERT_EQUAL(13,descIndx->getNumberOfTuples());
511   CPPUNIT_ASSERT_EQUAL(48,desc->getNbOfElems()); CPPUNIT_ASSERT_EQUAL(48,desc->getNumberOfTuples());
512   CPPUNIT_ASSERT_EQUAL(48,revDesc->getNbOfElems()); CPPUNIT_ASSERT_EQUAL(48,revDesc->getNumberOfTuples());
513   const int expected1[48]={1,2,3,4,5,6,7,8,9,10,11,12,13,14,-10,15,-5,-13,16,17,-14,18,-4,19,-2,20,21,22,23,24,25,-11,26,-1,-12,-25,-22,27,28,-7,-20,-24,29,-16,-18,30,-8,-28};
514   CPPUNIT_ASSERT(std::equal(expected1,expected1+48,desc->getConstPointer()));
515   const int expected2[13]={0,4,8,12,16,20,24,28,32,36,40,44,48};
516   CPPUNIT_ASSERT(std::equal(expected2,expected2+13,descIndx->getConstPointer()));
517   const int expected3[31]={0,2,4,5,7,9,10,12,14,15,17,19,21,23,25,26,28,29,31,32,34,35,37,38,40,42,43,44,46,47,48};
518   CPPUNIT_ASSERT(std::equal(expected3,expected3+31,revDescIndx->getConstPointer()));
519   const int expected4[48]={0,8,0,6,0,0,5,1,4,1,1,9,1,11,2,2,3,2,7,2,8,3,4,3,5,3,4,10,4,5,11,5,6,10,6,6,9,7,7,10,7,8,8,9,9,11,10,11};
520   CPPUNIT_ASSERT(std::equal(expected4,expected4+48,revDesc->getConstPointer()));
521   DataArrayInt *conn=mesh2->getNodalConnectivity();
522   DataArrayInt *connIndex=mesh2->getNodalConnectivityIndex();
523   const int expected5[31]={0,4,8,12,16,20,24,28,32,36,40,44,48,52,56,60,64,68,72,76,80,84,88,92,96,100,104,108,112,116,120};
524   CPPUNIT_ASSERT(std::equal(expected5,expected5+31,connIndex->getConstPointer()));
525   const int expected6[120]={3,8,1,7,3,8,3,1,3,1,3,7,3,7,3,8,3,6,0,8,3,6,2,0,3,0,2,8,3,8,2,6,3,7,4,5,3,7,8,4,3,4,8,5,3,5,8,7,3,6,8,4,3,6,7,8,3,4,7,6,3,8,4,0,3,0,4,6,3,6,3,8,3,7,3,6,3,8,0,1,3,1,0,3,3,3,0,8,3,4,1,5,3,4,8,1,3,1,8,5,3,1,7,5,3,0,2,3,3,3,2,8,3,1,4,0,3,3,2,6};
526   CPPUNIT_ASSERT(std::equal(expected6,expected6+120,conn->getConstPointer()));
527   //
528   desc->decrRef();
529   descIndx->decrRef();
530   revDesc->decrRef();
531   revDescIndx->decrRef();
532   mesh2->decrRef();
533   mesh->decrRef();
534 }
535
536 void MEDCouplingBasicsTest5::testAre2DCellsNotCorrectlyOriented1()
537 {
538   double m1Coords[8]={1.,1.,-1.,-1.,-1.,-1.,1.,-1.};
539   int m1Conn[4]={0,3,1,2};
540   MEDCouplingUMesh *m1=MEDCouplingUMesh::New();
541   m1->setMeshDimension(2);
542   m1->allocateCells(1);
543   m1->insertNextCell(INTERP_KERNEL::NORM_QUAD4,4,m1Conn);
544   m1->finishInsertingCells();
545   DataArrayDouble *myCoords1=DataArrayDouble::New();
546   myCoords1->alloc(4,2);
547   std::copy(m1Coords,m1Coords+8,myCoords1->getPointer());
548   m1->setCoords(myCoords1);
549   myCoords1->decrRef();
550   //
551   double vec1[3]={0.,0.,1.};
552   double *vec2=new double[2];
553   for(int i=0;i<18;i++)
554     {
555       vec2[0]=3.*cos(M_PI/9.*i);
556       vec2[1]=3.*sin(M_PI/9.*i);
557       MEDCouplingUMesh *m1Cpy=static_cast<MEDCouplingUMesh *>(m1->deepCpy());
558       m1Cpy->translate(vec2);
559       std::vector<int> res;
560       CPPUNIT_ASSERT_THROW(m1Cpy->are2DCellsNotCorrectlyOriented(vec1,false,res),INTERP_KERNEL::Exception);
561       res.clear();
562       m1Cpy->changeSpaceDimension(3);
563       m1Cpy->are2DCellsNotCorrectlyOriented(vec1,false,res);
564       CPPUNIT_ASSERT_EQUAL(1,(int)res.size());
565       CPPUNIT_ASSERT_EQUAL(0,res[0]);
566       m1Cpy->decrRef();
567     }
568   delete [] vec2;
569   //
570   m1->decrRef();
571 }
572
573 void MEDCouplingBasicsTest5::testDataArrayAbs1()
574 {
575   DataArrayDouble *d1=DataArrayDouble::New();
576   const double val1[12]={2.,-3.,-5.,6.,-7.,-8.,9.,10.,-11.,-12.,-13.,-15.};
577   const double expected1[12]={2.,3.,5.,6.,7.,8.,9.,10.,11.,12.,13.,15.};
578   d1->alloc(6,2);
579   std::copy(val1,val1+12,d1->getPointer());
580   DataArrayInt *d2=d1->convertToIntArr();
581   //
582   d1->abs();
583   for(int i=0;i<12;i++)
584     CPPUNIT_ASSERT_DOUBLES_EQUAL(expected1[i],d1->getIJ(0,i),1e-14);
585   //
586   const int expected2[12]={2,3,5,6,7,8,9,10,11,12,13,15};
587   d2->abs();
588   for(int i=0;i<12;i++)
589     CPPUNIT_ASSERT_EQUAL(expected2[i],d2->getIJ(0,i));
590   //
591   d2->decrRef();
592   d1->decrRef();
593 }
594
595 void MEDCouplingBasicsTest5::testGetValueOn3()
596 {
597   const double v[4]={0.,1.,1.5,2.};
598   const double v2[5]={0.7,1.25,0.,2.,1.5};
599   const double disp[12]={5.,50.,500.,6.,60.,600.,7.,70.,700.,8.,80.,800.};
600   MEDCouplingUMesh *m=MEDCouplingUMesh::New("myMesh",1);
601   const int nbNodes=4;
602   const int nbCells=nbNodes-1;
603   m->allocateCells(nbCells);
604   DataArrayDouble *coords=DataArrayDouble::New();
605   coords->alloc(nbNodes,1);
606   std::copy(v,v+nbNodes,coords->getPointer());
607   m->setCoords(coords);
608   coords->decrRef();
609   const int conn[6]={0,1,2,1,2,3};
610   m->insertNextCell(INTERP_KERNEL::NORM_SEG2,2,conn);
611   m->insertNextCell(INTERP_KERNEL::NORM_SEG2,2,conn+2);
612   m->insertNextCell(INTERP_KERNEL::NORM_SEG2,2,conn+4);
613   m->finishInsertingCells();
614   MEDCouplingFieldDouble *f=MEDCouplingFieldDouble::New(ON_NODES);
615   f->setMesh(m);
616   DataArrayDouble *array=DataArrayDouble::New();
617   array->alloc(m->getNumberOfNodes(),3);
618   std::copy(disp,disp+12,array->getPointer());
619   f->setArray(array);
620   array->decrRef();
621   DataArrayDouble *arr1=f->getValueOnMulti(v2,5);
622   CPPUNIT_ASSERT_EQUAL(5,arr1->getNumberOfTuples());
623   CPPUNIT_ASSERT_EQUAL(3,arr1->getNumberOfComponents());
624   const double expected1[15]={5.7,57.,570.,6.5,65.,650.,5.,50.,500.,8.,80.,800.,7.,70.,700.};
625   for(int i=0;i<15;i++)
626     CPPUNIT_ASSERT_DOUBLES_EQUAL(expected1[i],arr1->getIJ(0,i),1e-14);
627   arr1->decrRef();
628   f->decrRef();
629   m->decrRef();
630 }
631
632 void MEDCouplingBasicsTest5::testGetNodeIdsOfCell2()
633 {
634   MEDCouplingCMesh *m1c=MEDCouplingCMesh::New();
635   DataArrayDouble *coordsX=DataArrayDouble::New();
636   double arrX[5] = { -1., 1., 2., 4., 4.5 };
637   coordsX->useArray(arrX,false, CPP_DEALLOC,5,1);
638   DataArrayDouble *coordsY=DataArrayDouble::New();
639   double arrY[4] = { -2., 2., 4., 8. };
640   coordsY->useArray(arrY,false, CPP_DEALLOC,4,1);
641   DataArrayDouble *coordsZ=DataArrayDouble::New();
642   double arrZ[3] = { -2., 2., 4. };
643   coordsZ->useArray(arrZ,false, CPP_DEALLOC,3,1);  
644   // test in 1D
645   m1c->setCoordsAt(0,coordsX);
646   CPPUNIT_ASSERT_EQUAL(4,m1c->getNumberOfCells());
647   const int expected1[4][2]={{0,1},{1,2},{2,3},{3,4}};
648   for(int i=0;i<4;i++)
649     {
650       std::vector<int> v;
651       m1c->getNodeIdsOfCell(i,v);
652       CPPUNIT_ASSERT((int)v.size()==2);
653       std::equal(v.begin(),v.end(),expected1[i]);
654     }
655   // test in 2D
656   m1c->setCoordsAt(1,coordsY);
657   CPPUNIT_ASSERT_EQUAL(12,m1c->getNumberOfCells());
658   const int expected2[12][4]={{0,1,6,5},{1,2,7,6},{2,3,8,7},{3,4,9,8},{4,5,11,10},{5,6,12,11},{6,7,13,12},{7,8,14,13},{8,9,16,15},{9,10,17,16},{10,11,18,17},{11,12,19,18}};
659   for(int i=0;i<12;i++)
660     {
661       std::vector<int> v;
662       m1c->getNodeIdsOfCell(i,v);
663       CPPUNIT_ASSERT((int)v.size()==4);
664       std::equal(v.begin(),v.end(),expected2[i]);
665     }
666   // test in 3D
667   m1c->setCoordsAt(2,coordsZ);
668   CPPUNIT_ASSERT_EQUAL(24,m1c->getNumberOfCells());
669   const int expected3[24][8]={{0,1,6,5,20,21,26,25},{1,2,7,6,21,22,27,26},{2,3,8,7,22,23,28,27},{3,4,9,8,23,24,29,28},{4,5,11,10,24,25,31,30},{5,6,12,11,25,26,32,31},{6,7,13,12,26,27,33,32},{7,8,14,13,27,28,34,33},{8,9,16,15,28,29,36,35},{9,10,17,16,29,30,37,36},{10,11,18,17,30,31,38,37},{11,12,19,18,31,32,39,38},{20,21,26,25,40,41,46,45},{21,22,27,26,41,42,47,46},{22,23,28,27,42,43,48,47},{23,24,29,28,43,44,49,48},{24,25,31,30,44,45,51,50},{25,26,32,31,45,46,52,51},{26,27,33,32,46,47,53,52},{27,28,34,33,47,48,54,53},{28,29,36,35,48,49,56,55},{29,30,37,36,49,50,57,56},{30,31,38,37,50,51,58,57},{31,32,39,38,51,52,59,58}};
670   for(int i=0;i<12;i++)
671     {
672       std::vector<int> v;
673       m1c->getNodeIdsOfCell(i,v);
674       CPPUNIT_ASSERT((int)v.size()==8);
675       std::equal(v.begin(),v.end(),expected3[i]);
676     }
677   //
678   coordsX->decrRef();
679   coordsY->decrRef();
680   coordsZ->decrRef();
681   m1c->decrRef();
682 }
683
684 void MEDCouplingBasicsTest5::testRenumberNodesInConn1()
685 {
686   double mesh2DCoords[27]={-0.3,-0.3,0., 0.2,-0.3,0., 0.7,-0.3,0., -0.3,0.2,0., 0.2,0.2,0., 0.7,0.2,0., -0.3,0.7,0., 0.2,0.7,0., 0.7,0.7,0. };
687   int mesh2DConn[18]={1,4,2, 4,5,2, 0,3,4,1, 6,7,4,3, 7,8,5,4};
688   MEDCouplingUMesh *mesh2D=MEDCouplingUMesh::New("mesh",2);
689   mesh2D->allocateCells(5);
690   mesh2D->insertNextCell(INTERP_KERNEL::NORM_TRI3,3,mesh2DConn);
691   mesh2D->insertNextCell(INTERP_KERNEL::NORM_TRI3,3,mesh2DConn+3);
692   mesh2D->insertNextCell(INTERP_KERNEL::NORM_QUAD4,4,mesh2DConn+6);
693   mesh2D->insertNextCell(INTERP_KERNEL::NORM_QUAD4,4,mesh2DConn+10);
694   mesh2D->insertNextCell(INTERP_KERNEL::NORM_QUAD4,4,mesh2DConn+14);
695   mesh2D->finishInsertingCells();
696   DataArrayDouble *myCoords=DataArrayDouble::New();
697   myCoords->alloc(9,3);
698   std::copy(mesh2DCoords,mesh2DCoords+27,myCoords->getPointer());
699   mesh2D->setCoords(myCoords);
700   myCoords->decrRef();
701   mesh2D->checkCoherency();
702   //
703   double mesh3DCoords[24]={-0.3,-0.3,0., -0.3,0.2,0., 0.2,0.2,0., 0.2,-0.3,0., -0.3,-0.3,1., -0.3,0.2,1., 0.2,0.2,1., 0.2,-0.3,1. };
704   int mesh3DConn[8]={0,1,2,3,4,5,6,7};
705   MEDCouplingUMesh *mesh3D=MEDCouplingUMesh::New("mesh",3);
706   mesh3D->allocateCells(1);
707   mesh3D->insertNextCell(INTERP_KERNEL::NORM_HEXA8,8,mesh3DConn);
708   mesh3D->finishInsertingCells();
709   DataArrayDouble *myCoords3D=DataArrayDouble::New();
710   myCoords3D->alloc(8,3);
711   std::copy(mesh3DCoords,mesh3DCoords+24,myCoords3D->getPointer());
712   mesh3D->setCoords(myCoords3D);
713   myCoords3D->decrRef();
714   mesh3D->checkCoherency();
715   //
716   MEDCouplingUMesh *mesh3D_2=dynamic_cast<MEDCouplingUMesh *>(mesh3D->deepCpy());
717   MEDCouplingUMesh *mesh2D_2=dynamic_cast<MEDCouplingUMesh *>(mesh2D->deepCpy());
718   MEDCouplingUMesh *mesh3D_4=dynamic_cast<MEDCouplingUMesh *>(mesh3D->deepCpy());
719   MEDCouplingUMesh *mesh2D_4=dynamic_cast<MEDCouplingUMesh *>(mesh2D->deepCpy());
720   DataArrayInt *renumNodes=DataArrayInt::New();
721   int oldNbOf3DNodes=mesh3D->getNumberOfNodes();
722   renumNodes->alloc(mesh2D->getNumberOfNodes(),1);
723   renumNodes->iota(oldNbOf3DNodes);
724   DataArrayDouble *coo=DataArrayDouble::Aggregate(mesh3D->getCoords(),mesh2D->getCoords());
725   mesh3D->setCoords(coo);
726   mesh2D->setCoords(coo);
727   coo->decrRef();
728   MEDCouplingUMesh *mesh2D_3=dynamic_cast<MEDCouplingUMesh *>(mesh2D->deepCpy());
729   mesh2D_3->shiftNodeNumbersInConn(oldNbOf3DNodes);
730   mesh2D->renumberNodesInConn(renumNodes->getConstPointer());
731   renumNodes->decrRef();
732   CPPUNIT_ASSERT(mesh2D_3->isEqual(mesh2D,1e-12));
733   mesh2D_3->decrRef();
734   //
735   DataArrayInt *da1,*da2;
736   mesh3D->checkGeoEquivalWith(mesh3D_2,10,1e-12,da1,da2);
737   CPPUNIT_ASSERT(da1==0);
738   CPPUNIT_ASSERT_EQUAL(8,da2->getNumberOfTuples());
739   CPPUNIT_ASSERT_EQUAL(1,da2->getNumberOfComponents());
740   const int expected1[8]={8,11,12,9,4,5,6,7};
741   for(int i=0;i<8;i++)
742     CPPUNIT_ASSERT_EQUAL(expected1[i],da2->getIJ(i,0));
743   da2->decrRef();
744   //
745   mesh2D->checkGeoEquivalWith(mesh2D_2,10,1e-12,da1,da2);
746   CPPUNIT_ASSERT(da1==0);
747   CPPUNIT_ASSERT_EQUAL(9,da2->getNumberOfTuples());
748   CPPUNIT_ASSERT_EQUAL(1,da2->getNumberOfComponents());
749   for(int i=0;i<9;i++)
750     CPPUNIT_ASSERT_EQUAL(8+i,da2->getIJ(i,0));
751   da2->decrRef();
752   //
753   const double vect[3]={1.,0.,0.};
754   MEDCouplingUMesh *mesh2D_5=dynamic_cast<MEDCouplingUMesh *>(mesh2D_4->deepCpy());
755   mesh2D_5->translate(vect);
756   std::vector<MEDCouplingUMesh *> meshes(3);
757   meshes[0]=mesh3D_4; meshes[1]=mesh2D_4; meshes[2]=mesh2D_5;
758   MEDCouplingUMesh::PutUMeshesOnSameAggregatedCoords(meshes);
759   CPPUNIT_ASSERT(mesh3D_4->getCoords()==mesh2D_4->getCoords());
760   CPPUNIT_ASSERT(mesh2D_4->getCoords()==mesh2D_5->getCoords());
761   mesh3D_4->checkCoherency(); mesh2D_4->checkCoherency(); mesh2D_5->checkCoherency();
762   CPPUNIT_ASSERT_EQUAL(26,mesh3D_4->getNumberOfNodes());
763   CPPUNIT_ASSERT_EQUAL(3,mesh3D_4->getSpaceDimension());
764   CPPUNIT_ASSERT_EQUAL(9,mesh3D_4->getNodalConnectivity()->getNumberOfTuples());
765   CPPUNIT_ASSERT_EQUAL(23,mesh2D_4->getNodalConnectivity()->getNumberOfTuples());
766   CPPUNIT_ASSERT_EQUAL(23,mesh2D_5->getNodalConnectivity()->getNumberOfTuples());
767   const int expected2[9]={18,0,1,2,3,4,5,6,7};
768   const int expected3[23]={3,9,12,10, 3,12,13,10, 4,8,11,12,9, 4,14,15,12,11, 4,15,16,13,12};
769   const int expected4[23]={3,18,21,19, 3,21,22,19, 4,17,20,21,18, 4,23,24,21,20, 4,24,25,22,21};
770   const double expected5[78]={-0.3,-0.3,0., -0.3,0.2,0., 0.2,0.2,0., 0.2,-0.3,0., -0.3,-0.3,1., -0.3,0.2,1., 0.2,0.2,1., 0.2,-0.3,1., -0.3,-0.3,0., 0.2,-0.3,0., 0.7,-0.3,0., -0.3,0.2,0., 0.2,0.2,0., 0.7,0.2,0., -0.3,0.7,0., 0.2,0.7,0., 0.7,0.7,0., 0.7, -0.3, 0.0, 1.2, -0.3, 0.0, 1.7, -0.3, 0.0, 0.7, 0.2, 0.0, 1.2, 0.2, 0.0, 1.7, 0.2, 0.0, 0.7, 0.7, 0.0, 1.2, 0.7, 0.0, 1.7, 0.7, 0.0};
771   CPPUNIT_ASSERT(std::equal(expected2,expected2+9,mesh3D_4->getNodalConnectivity()->getConstPointer()));
772   CPPUNIT_ASSERT(std::equal(expected3,expected3+23,mesh2D_4->getNodalConnectivity()->getConstPointer()));
773   CPPUNIT_ASSERT(std::equal(expected4,expected4+23,mesh2D_5->getNodalConnectivity()->getConstPointer()));
774   for(int i=0;i<78;i++)
775     CPPUNIT_ASSERT_DOUBLES_EQUAL(expected5[i],mesh3D_4->getCoords()->getIJ(0,i),1e-12);
776   //
777   MEDCouplingUMesh::MergeNodesOnUMeshesSharingSameCoords(meshes,1e-12);
778   mesh3D_4->checkCoherency(); mesh2D_4->checkCoherency(); mesh2D_5->checkCoherency();
779   CPPUNIT_ASSERT(mesh3D_4->getCoords()==mesh2D_4->getCoords());
780   CPPUNIT_ASSERT(mesh2D_4->getCoords()==mesh2D_5->getCoords());
781   CPPUNIT_ASSERT_EQUAL(19,mesh3D_4->getNumberOfNodes());
782   CPPUNIT_ASSERT_EQUAL(3,mesh3D_4->getSpaceDimension());
783   CPPUNIT_ASSERT_EQUAL(9,mesh3D_4->getNodalConnectivity()->getNumberOfTuples());
784   CPPUNIT_ASSERT_EQUAL(23,mesh2D_4->getNodalConnectivity()->getNumberOfTuples());
785   CPPUNIT_ASSERT_EQUAL(23,mesh2D_5->getNodalConnectivity()->getNumberOfTuples());
786   const int expected6[9]={18,0,1,2,3,4,5,6,7};
787   const int expected7[23]={3,3,2,8, 3,2,9,8, 4,0,1,2,3, 4,10,11,2,1, 4,11,12,9,2};
788   const int expected8[23]={3,13,15,14, 3,15,16,14, 4,8,9,15,13, 4,12,17,15,9, 4,17,18,16,15};
789   const double expected9[57]={-0.3, -0.3, 0., -0.3, 0.2, 0., 0.2, 0.2, 0., 0.2, -0.3, 0., -0.3, -0.3, 1., -0.3, 0.2, 1., 
790                               0.2, 0.2, 1., 0.2, -0.3, 1., 0.7, -0.3, 0., 0.7, 0.2, 0., -0.3, 0.7, 0., 0.2, 0.7, 0., 
791                               0.7, 0.7, 0., 1.2, -0.3, 0., 1.7, -0.3, 0., 1.2, 0.2, 0., 1.7, 0.2, 0., 1.2, 0.7, 0., 1.7, 0.7, 0.};
792   CPPUNIT_ASSERT(std::equal(expected6,expected6+9,mesh3D_4->getNodalConnectivity()->getConstPointer()));
793   CPPUNIT_ASSERT(std::equal(expected7,expected7+23,mesh2D_4->getNodalConnectivity()->getConstPointer()));
794   CPPUNIT_ASSERT(std::equal(expected8,expected8+23,mesh2D_5->getNodalConnectivity()->getConstPointer()));
795   for(int i=0;i<57;i++)
796     CPPUNIT_ASSERT_DOUBLES_EQUAL(expected9[i],mesh3D_4->getCoords()->getIJ(0,i),1e-12);
797   mesh2D_5->decrRef();
798   //
799   mesh3D_4->decrRef();
800   mesh2D_4->decrRef();
801   mesh3D_2->decrRef();
802   mesh2D_2->decrRef();
803   //
804   mesh3D->decrRef();
805   mesh2D->decrRef();
806 }
807
808 void MEDCouplingBasicsTest5::testComputeNeighborsOfCells1()
809 {
810   MEDCouplingUMesh *m=build2DTargetMesh_1();
811   DataArrayInt *d1=0,*d2=0;
812   m->computeNeighborsOfCells(d1,d2);
813   CPPUNIT_ASSERT_EQUAL(6,d2->getNumberOfTuples());
814   CPPUNIT_ASSERT_EQUAL(10,d1->getNumberOfTuples());
815   const int expected1[6]={0,2,4,6,8,10};
816   const int expected2[10]={3,1,0,2,4,1,4,0,2,3};
817   CPPUNIT_ASSERT(std::equal(expected1,expected1+6,d2->getConstPointer()));
818   CPPUNIT_ASSERT(std::equal(expected2,expected2+10,d1->getConstPointer()));
819   d1->decrRef();
820   d2->decrRef();
821   m->decrRef();
822 }
823
824 void MEDCouplingBasicsTest5::testCheckButterflyCellsBug1()
825 {
826   double mesh2DCoords[10]={323.85,120.983748908684,317.5,131.982271536747,336.55,120.983748908686,330.2,131.982271536751,323.85,142.98079416481};
827   int mesh2DConn[5]={4,1,0,2,3};
828   MEDCouplingUMesh *mesh2D=MEDCouplingUMesh::New("mesh",2);
829   mesh2D->allocateCells(1);
830   mesh2D->insertNextCell(INTERP_KERNEL::NORM_POLYGON,5,mesh2DConn);
831   mesh2D->finishInsertingCells();
832   DataArrayDouble *myCoords=DataArrayDouble::New();
833   myCoords->alloc(5,2);
834   std::copy(mesh2DCoords,mesh2DCoords+10,myCoords->getPointer());
835   mesh2D->setCoords(myCoords);
836   myCoords->decrRef();
837   mesh2D->checkCoherency();
838   //
839   std::vector<int> v;
840   mesh2D->checkButterflyCells(v);
841   CPPUNIT_ASSERT_EQUAL(0,(int)v.size());
842   //
843   mesh2D->decrRef();
844 }
845
846 void MEDCouplingBasicsTest5::testDataArrayIntRange1()
847 {
848   DataArrayInt *d=DataArrayInt::Range(2,17,7);
849   const int expected1[3]={2,9,16};
850   CPPUNIT_ASSERT_EQUAL(3,d->getNumberOfTuples());
851   CPPUNIT_ASSERT_EQUAL(1,d->getNumberOfComponents());
852   CPPUNIT_ASSERT(std::equal(expected1,expected1+3,d->getConstPointer()));
853   d->decrRef();
854   //
855   d=DataArrayInt::Range(2,23,7);
856   CPPUNIT_ASSERT_EQUAL(3,d->getNumberOfTuples());
857   CPPUNIT_ASSERT_EQUAL(1,d->getNumberOfComponents());
858   CPPUNIT_ASSERT(std::equal(expected1,expected1+3,d->getConstPointer()));
859   d->decrRef();
860   //
861   d=DataArrayInt::Range(2,24,7);
862   const int expected2[4]={2,9,16,23};
863   CPPUNIT_ASSERT_EQUAL(4,d->getNumberOfTuples());
864   CPPUNIT_ASSERT_EQUAL(1,d->getNumberOfComponents());
865   CPPUNIT_ASSERT(std::equal(expected2,expected2+4,d->getConstPointer()));
866   d->decrRef();
867   //
868   d=DataArrayInt::Range(24,2,-7);
869   const int expected3[4]={24,17,10,3};
870   CPPUNIT_ASSERT_EQUAL(4,d->getNumberOfTuples());
871   CPPUNIT_ASSERT_EQUAL(1,d->getNumberOfComponents());
872   CPPUNIT_ASSERT(std::equal(expected3,expected3+4,d->getConstPointer()));
873   d->decrRef();
874   //
875   d=DataArrayInt::Range(23,2,-7);
876   const int expected4[3]={23,16,9};
877   CPPUNIT_ASSERT_EQUAL(3,d->getNumberOfTuples());
878   CPPUNIT_ASSERT_EQUAL(1,d->getNumberOfComponents());
879   CPPUNIT_ASSERT(std::equal(expected4,expected4+3,d->getConstPointer()));
880   d->decrRef();
881   //
882   d=DataArrayInt::Range(23,22,-7);
883   CPPUNIT_ASSERT_EQUAL(1,d->getNumberOfTuples());
884   CPPUNIT_ASSERT_EQUAL(1,d->getNumberOfComponents());
885   CPPUNIT_ASSERT_EQUAL(23,d->getIJ(0,0));
886   d->decrRef();
887   //
888   d=DataArrayInt::Range(22,23,7);
889   CPPUNIT_ASSERT_EQUAL(1,d->getNumberOfTuples());
890   CPPUNIT_ASSERT_EQUAL(1,d->getNumberOfComponents());
891   CPPUNIT_ASSERT_EQUAL(22,d->getIJ(0,0));
892   d->decrRef();
893   //
894   d=DataArrayInt::Range(22,22,7);
895   CPPUNIT_ASSERT_EQUAL(0,d->getNumberOfTuples());
896   CPPUNIT_ASSERT_EQUAL(1,d->getNumberOfComponents());
897   d->decrRef();
898   //
899   d=DataArrayInt::Range(22,22,-7);
900   CPPUNIT_ASSERT_EQUAL(0,d->getNumberOfTuples());
901   CPPUNIT_ASSERT_EQUAL(1,d->getNumberOfComponents());
902   d->decrRef();
903   //
904   CPPUNIT_ASSERT_THROW(DataArrayInt::Range(22,23,-7),INTERP_KERNEL::Exception);
905   CPPUNIT_ASSERT_THROW(DataArrayInt::Range(23,22,7),INTERP_KERNEL::Exception);
906   CPPUNIT_ASSERT_THROW(DataArrayInt::Range(23,22,0),INTERP_KERNEL::Exception);
907   CPPUNIT_ASSERT_THROW(DataArrayInt::Range(22,23,0),INTERP_KERNEL::Exception);
908 }
909
910 void MEDCouplingBasicsTest5::testDataArrayDoubleGetMinMaxPerComponent1()
911 {
912   const double values1[12]={1.,2.,3.,-0.9,2.1,3.,1.3,1.7,3.,1.,1.8,3.};
913   DataArrayDouble *d1=DataArrayDouble::New();
914   double *res=new double[2*3];
915   CPPUNIT_ASSERT_THROW(d1->getMinMaxPerComponent(res),INTERP_KERNEL::Exception);
916   d1->alloc(4,3);
917   std::copy(values1,values1+12,d1->getPointer());
918   d1->getMinMaxPerComponent(res);
919   const double expected1[6]={-0.9,1.3,1.7,2.1,3.,3.};
920   for(int i=0;i<6;i++)
921     CPPUNIT_ASSERT_DOUBLES_EQUAL(expected1[i],res[i],1e-14);
922   delete [] res;
923   //
924   d1->rearrange(2);
925   res=new double[2*2];
926   d1->getMinMaxPerComponent(res);
927   const double expected2[4]={1.,3.,-0.9,3.};
928   for(int i=0;i<4;i++)
929     CPPUNIT_ASSERT_DOUBLES_EQUAL(expected2[i],res[i],1e-14);
930   delete [] res;
931   //
932   d1->rearrange(1);
933   res=new double[2*1];
934   d1->getMinMaxPerComponent(res);
935   const double expected3[2]={-0.9,3.};
936   for(int i=0;i<2;i++)
937     CPPUNIT_ASSERT_DOUBLES_EQUAL(expected3[i],res[i],1e-14);
938   delete [] res;
939   d1->decrRef();
940 }
941
942 void MEDCouplingBasicsTest5::testDataArrayIntGetHashCode1()
943 {
944   DataArrayInt *d1=DataArrayInt::New(); d1->alloc(3545,1); d1->iota(0);
945   DataArrayInt *d2=DataArrayInt::New(); d2->alloc(3545,1); d2->iota(0);
946   //
947   CPPUNIT_ASSERT_EQUAL(d1->getHashCode(),d2->getHashCode());
948   CPPUNIT_ASSERT_EQUAL(232341068,d1->getHashCode());
949   d1->setIJ(886,0,6);
950   CPPUNIT_ASSERT_EQUAL(232340188,d1->getHashCode());
951   //
952   d1->decrRef();
953   d2->decrRef();
954 }
955
956 void MEDCouplingBasicsTest5::testZipConnectivityPol1()
957 {
958   MEDCouplingUMesh *m1=build2DTargetMesh_1();
959   const int cells1[3]={2,3,4};
960   MEDCouplingPointSet *m2_1=m1->buildPartOfMySelf(cells1,cells1+3,true);
961   MEDCouplingUMesh *m2=dynamic_cast<MEDCouplingUMesh *>(m2_1);
962   DataArrayInt *arr=0;
963   CPPUNIT_ASSERT(m2);
964   // no permutation policy 0
965   CPPUNIT_ASSERT(m1->areCellsIncludedIn(m2,0,arr));
966   CPPUNIT_ASSERT_EQUAL(3,arr->getNumberOfTuples());
967   CPPUNIT_ASSERT_EQUAL(1,arr->getNumberOfComponents());
968   CPPUNIT_ASSERT(std::equal(cells1,cells1+3,arr->getConstPointer()));
969   arr->decrRef();
970   // no permutation policy 1
971   CPPUNIT_ASSERT(m1->areCellsIncludedIn(m2,1,arr));
972   CPPUNIT_ASSERT_EQUAL(3,arr->getNumberOfTuples());
973   CPPUNIT_ASSERT_EQUAL(1,arr->getNumberOfComponents());
974   CPPUNIT_ASSERT(std::equal(cells1,cells1+3,arr->getConstPointer()));
975   arr->decrRef();
976   // no permutation policy 2
977   CPPUNIT_ASSERT(m1->areCellsIncludedIn(m2,2,arr));
978   CPPUNIT_ASSERT_EQUAL(3,arr->getNumberOfTuples());
979   CPPUNIT_ASSERT_EQUAL(1,arr->getNumberOfComponents());
980   CPPUNIT_ASSERT(std::equal(cells1,cells1+3,arr->getConstPointer()));
981   arr->decrRef();
982   // some modification into m2
983   const int modif1[3]={2,4,5};
984   std::copy(modif1,modif1+3,m2->getNodalConnectivity()->getPointer()+1);
985   //policy 0 fails because cell0 in m2 has same orientation be not same connectivity
986   const int expected1[3]={5,3,4};
987   CPPUNIT_ASSERT(!m1->areCellsIncludedIn(m2,0,arr));
988   CPPUNIT_ASSERT_EQUAL(3,arr->getNumberOfTuples());
989   CPPUNIT_ASSERT_EQUAL(1,arr->getNumberOfComponents());
990   CPPUNIT_ASSERT(std::equal(expected1,expected1+3,arr->getConstPointer()));
991   arr->decrRef();
992   //policy 1 succeeds because cell0 in m2 has not exactly the same conn
993   CPPUNIT_ASSERT(m1->areCellsIncludedIn(m2,1,arr));
994   CPPUNIT_ASSERT_EQUAL(3,arr->getNumberOfTuples());
995   CPPUNIT_ASSERT_EQUAL(1,arr->getNumberOfComponents());
996   CPPUNIT_ASSERT(std::equal(cells1,cells1+3,arr->getConstPointer()));
997   arr->decrRef();
998   //policy 2 succeeds because cell0 in m2 has same nodes in connectivity
999   CPPUNIT_ASSERT(m1->areCellsIncludedIn(m2,2,arr));
1000   CPPUNIT_ASSERT_EQUAL(3,arr->getNumberOfTuples());
1001   CPPUNIT_ASSERT_EQUAL(1,arr->getNumberOfComponents());
1002   CPPUNIT_ASSERT(std::equal(cells1,cells1+3,arr->getConstPointer()));
1003   arr->decrRef();
1004   //some new modification into m2
1005   const int modif2[3]={2,5,4};
1006   std::copy(modif2,modif2+3,m2->getNodalConnectivity()->getPointer()+1);
1007   //policy 0 fails because cell0 in m2 has not exactly the same conn
1008   CPPUNIT_ASSERT(!m1->areCellsIncludedIn(m2,0,arr));
1009   CPPUNIT_ASSERT_EQUAL(3,arr->getNumberOfTuples());
1010   CPPUNIT_ASSERT_EQUAL(1,arr->getNumberOfComponents());
1011   CPPUNIT_ASSERT(std::equal(expected1,expected1+3,arr->getConstPointer()));
1012   arr->decrRef();
1013   //policy 1 fails too because cell0 in m2 has not same orientation
1014   CPPUNIT_ASSERT(!m1->areCellsIncludedIn(m2,1,arr));
1015   CPPUNIT_ASSERT_EQUAL(3,arr->getNumberOfTuples());
1016   CPPUNIT_ASSERT_EQUAL(1,arr->getNumberOfComponents());
1017   CPPUNIT_ASSERT(std::equal(expected1,expected1+3,arr->getConstPointer()));
1018   arr->decrRef();
1019   //policy 2 succeeds because cell0 in m2 has same nodes in connectivity
1020   CPPUNIT_ASSERT(m1->areCellsIncludedIn(m2,2,arr));
1021   CPPUNIT_ASSERT_EQUAL(3,arr->getNumberOfTuples());
1022   CPPUNIT_ASSERT_EQUAL(1,arr->getNumberOfComponents());
1023   CPPUNIT_ASSERT(std::equal(cells1,cells1+3,arr->getConstPointer()));
1024   arr->decrRef();
1025   m1->decrRef();
1026   m2->decrRef();
1027   // Now 1D
1028   const int cells2[2]={3,2};
1029   m1=build1DSourceMesh_2();
1030   m2_1=m1->buildPartOfMySelf(cells2,cells2+2,true);
1031   m2=dynamic_cast<MEDCouplingUMesh *>(m2_1);
1032   CPPUNIT_ASSERT(m2);
1033   arr=0;
1034   // no permutation policy 0
1035   CPPUNIT_ASSERT(m1->areCellsIncludedIn(m2,0,arr));
1036   CPPUNIT_ASSERT_EQUAL(2,arr->getNumberOfTuples());
1037   CPPUNIT_ASSERT_EQUAL(1,arr->getNumberOfComponents());
1038   CPPUNIT_ASSERT(std::equal(cells2,cells2+2,arr->getConstPointer()));
1039   arr->decrRef();
1040   // no permutation policy 1
1041   CPPUNIT_ASSERT(m1->areCellsIncludedIn(m2,1,arr));
1042   CPPUNIT_ASSERT_EQUAL(2,arr->getNumberOfTuples());
1043   CPPUNIT_ASSERT_EQUAL(1,arr->getNumberOfComponents());
1044   CPPUNIT_ASSERT(std::equal(cells2,cells2+2,arr->getConstPointer()));
1045   arr->decrRef();
1046   // no permutation policy 2
1047   CPPUNIT_ASSERT(m1->areCellsIncludedIn(m2,2,arr));
1048   CPPUNIT_ASSERT_EQUAL(2,arr->getNumberOfTuples());
1049   CPPUNIT_ASSERT_EQUAL(1,arr->getNumberOfComponents());
1050   CPPUNIT_ASSERT(std::equal(cells2,cells2+2,arr->getConstPointer()));
1051   arr->decrRef();
1052   // some modification into m2
1053   const int modif3[2]={4,3};
1054   std::copy(modif3,modif3+2,m2->getNodalConnectivity()->getPointer()+1);
1055   //policy 0 fails because cell0 in m2 has not exactly the same conn
1056   const int expected2[2]={4,2};
1057   CPPUNIT_ASSERT(!m1->areCellsIncludedIn(m2,0,arr));
1058   CPPUNIT_ASSERT_EQUAL(2,arr->getNumberOfTuples());
1059   CPPUNIT_ASSERT_EQUAL(1,arr->getNumberOfComponents());
1060   CPPUNIT_ASSERT(std::equal(expected2,expected2+2,arr->getConstPointer()));
1061   arr->decrRef();
1062   //policy 1 fails too because cell0 in m2 has not same orientation
1063   CPPUNIT_ASSERT(!m1->areCellsIncludedIn(m2,1,arr));
1064   CPPUNIT_ASSERT_EQUAL(2,arr->getNumberOfTuples());
1065   CPPUNIT_ASSERT_EQUAL(1,arr->getNumberOfComponents());
1066   CPPUNIT_ASSERT(std::equal(expected2,expected2+2,arr->getConstPointer()));
1067   arr->decrRef();
1068   //policy 2 succeeds because cell0 in m2 has same nodes in connectivity
1069   CPPUNIT_ASSERT(m1->areCellsIncludedIn(m2,2,arr));
1070   CPPUNIT_ASSERT_EQUAL(2,arr->getNumberOfTuples());
1071   CPPUNIT_ASSERT_EQUAL(1,arr->getNumberOfComponents());
1072   CPPUNIT_ASSERT(std::equal(cells2,cells2+2,arr->getConstPointer()));
1073   arr->decrRef();
1074   m1->decrRef();
1075   m2->decrRef();
1076 }
1077
1078 void MEDCouplingBasicsTest5::testConvexEnvelop2D1()
1079 {
1080   const double coords[662]={7.54758495819e-14,-1.12270326253e-12,8.43143594193,-1.02835845055e-12,4.21571797096,7.30183771609,-4.21571797097,7.30183771609,-8.43143594193,-1.09439981894e-12,-4.21571797097,-7.30183771609,4.21571797097,-7.30183771609,16.8628718839,-1.02835845055e-12,12.6471539129,7.30183771609,8.43143594193,14.6036754322,2.26427548746e-13,14.6036754322,-8.43143594193,14.6036754322,-12.6471539129,7.30183771609,-16.8628718839,-1.39630321727e-12,-12.6471539129,-7.30183771609,-8.43143594193,-14.6036754322,3.7737924791e-14,-14.6036754322,8.43143594193,-14.6036754322,12.6471539129,-7.30183771609,25.2943078258,-1.07553085654e-12,21.0785898548,7.30183771609,16.8628718839,14.6036754322,12.6471539129,21.9055131483,4.21571797096,21.9055131483,-4.21571797097,21.9055131483,-12.6471539129,21.9055131483,-16.8628718839,14.6036754322,-21.0785898548,7.30183771609,-25.2943078258,-1.02835845055e-12,-21.0785898548,-7.30183771609,-16.8628718839,-14.6036754322,-12.6471539129,-21.9055131483,-4.21571797097,-21.9055131483,4.21571797097,-21.9055131483,12.6471539129,-21.9055131483,16.8628718839,-14.6036754322,21.0785898548,-7.30183771609,33.7257437677,-7.45324014622e-13,29.5100257968,7.30183771609,25.2943078258,14.6036754322,21.0785898548,21.9055131483,16.8628718839,29.2073508644,8.43143594193,29.2073508644,-1.20761359331e-12,29.2073508644,-8.43143594193,29.2073508644,-16.8628718839,29.2073508644,-21.0785898548,21.9055131483,-25.2943078258,14.6036754322,-29.5100257968,7.30183771609,-33.7257437677,-7.26455052226e-13,-29.5100257968,-7.30183771609,-25.2943078258,-14.6036754322,-21.0785898548,-21.9055131483,-16.8628718839,-29.2073508644,-8.43143594193,-29.2073508644,4.15117172701e-13,-29.2073508644,8.43143594193,-29.2073508644,16.8628718839,-29.2073508644,21.0785898548,-21.9055131483,25.2943078258,-14.6036754322,29.5100257968,-7.30183771609,42.1571797097,-1.86802727715e-12,37.9414617387,7.30183771609,33.7257437677,14.6036754322,29.5100257968,21.9055131483,25.2943078258,29.2073508644,21.0785898548,36.5091885805,12.6471539129,36.5091885805,4.21571797096,36.5091885805,-4.21571797096,36.5091885805,-12.6471539129,36.5091885805,-21.0785898548,36.5091885805,-25.2943078258,29.2073508644,-29.5100257968,21.9055131483,-33.7257437677,14.6036754322,-37.9414617387,7.30183771609,-42.1571797097,-9.81186044565e-13,-37.9414617387,-7.30183771609,-33.7257437677,-14.6036754322,-29.5100257968,-21.9055131483,-25.2943078258,-29.2073508644,-21.0785898548,-36.5091885805,-12.6471539129,-36.5091885805,-4.21571797097,-36.5091885805,4.21571797097,-36.5091885805,12.6471539129,-36.5091885805,21.0785898548,-36.5091885805,25.2943078258,-29.2073508644,29.5100257968,-21.9055131483,33.7257437677,-14.6036754322,37.9414617387,-7.30183771609,50.5886156516,-6.98151608633e-13,46.3728976806,7.30183771609,42.1571797097,14.6036754322,37.9414617387,21.9055131483,33.7257437677,29.2073508644,29.5100257968,36.5091885805,25.2943078258,43.8110262966,16.8628718839,43.8110262966,8.43143594193,43.8110262966,-1.84915831476e-12,43.8110262966,-8.43143594193,43.8110262966,-16.8628718839,43.8110262966,-25.2943078258,43.8110262966,-29.5100257968,36.5091885805,-33.7257437677,29.2073508644,-37.9414617387,21.9055131483,-42.1571797097,14.6036754322,-46.3728976806,7.30183771609,-50.5886156516,-1.47177906685e-12,-46.3728976806,-7.30183771609,-42.1571797097,-14.6036754322,-37.9414617387,-21.9055131483,-33.7257437677,-29.2073508644,-29.5100257968,-36.5091885805,-25.2943078258,-43.8110262966,-16.8628718839,-43.8110262966,-8.43143594193,-43.8110262966,7.54758495819e-14,-43.8110262966,8.43143594193,-43.8110262966,16.8628718839,-43.8110262966,25.2943078258,-43.8110262966,29.5100257968,-36.5091885805,33.7257437677,-29.2073508644,37.9414617387,-21.9055131483,42.1571797097,-14.6036754322,46.3728976806,-7.30183771609,59.0200515935,-7.9249642061e-13,54.8043336225,7.30183771609,50.5886156516,14.6036754322,46.3728976806,21.9055131483,42.1571797097,29.2073508644,37.9414617387,36.5091885805,33.7257437677,43.8110262966,29.5100257968,51.1128640127,21.0785898548,51.1128640127,12.6471539129,51.1128640127,4.21571797096,51.1128640127,-4.21571797096,51.1128640127,-12.6471539129,51.1128640127,-21.0785898548,51.1128640127,-29.5100257968,51.1128640127,-33.7257437677,43.8110262966,-37.9414617387,36.5091885805,-42.1571797097,29.2073508644,-46.3728976806,21.9055131483,-50.5886156516,14.6036754322,-54.8043336226,7.30183771609,-59.0200515935,-1.31139288649e-12,-54.8043336226,-7.30183771609,-50.5886156516,-14.6036754322,-46.3728976806,-21.9055131483,-42.1571797097,-29.2073508644,-37.9414617387,-36.5091885805,-33.7257437677,-43.8110262966,-29.5100257968,-51.1128640127,-21.0785898548,-51.1128640127,-12.6471539129,-51.1128640127,-4.21571797097,-51.1128640127,4.21571797097,-51.1128640127,12.6471539129,-51.1128640127,21.0785898548,-51.1128640127,29.5100257968,-51.1128640127,33.7257437677,-43.8110262966,37.9414617387,-36.5091885805,42.1571797097,-29.2073508644,46.3728976806,-21.9055131483,50.5886156516,-14.6036754322,54.8043336225,-7.30183771609,67.4514875354,-2.14162723189e-12,63.2357695645,7.30183771609,59.0200515935,14.6036754322,54.8043336226,21.9055131483,50.5886156516,29.2073508644,46.3728976806,36.5091885805,42.1571797097,43.8110262966,37.9414617387,51.1128640127,33.7257437677,58.4147017287,25.2943078258,58.4147017287,16.8628718839,58.4147017287,8.43143594193,58.4147017287,6.79282646237e-13,58.4147017287,-8.43143594193,58.4147017287,-16.8628718839,58.4147017287,-25.2943078258,58.4147017287,-33.7257437677,58.4147017287,-37.9414617387,51.1128640127,-42.1571797097,43.8110262966,-46.3728976806,36.5091885805,-50.5886156516,29.2073508644,-54.8043336226,21.9055131483,-59.0200515935,14.6036754322,-63.2357695645,7.30183771609,-67.4514875354,-1.16044118732e-12,-63.2357695645,-7.30183771609,-59.0200515935,-14.6036754322,-54.8043336226,-21.9055131483,-50.5886156516,-29.2073508644,-46.3728976806,-36.5091885805,-42.1571797097,-43.8110262966,-37.9414617387,-51.1128640127,-33.7257437677,-58.4147017287,-25.2943078258,-58.4147017287,-16.8628718839,-58.4147017287,-8.43143594193,-58.4147017287,-5.66068871864e-14,-58.4147017287,8.43143594193,-58.4147017287,16.8628718839,-58.4147017287,25.2943078258,-58.4147017287,33.7257437677,-58.4147017287,37.9414617387,-51.1128640127,42.1571797097,-43.8110262966,46.3728976806,-36.5091885805,50.5886156516,-29.2073508644,54.8043336226,-21.9055131483,59.0200515935,-14.6036754322,63.2357695645,-7.30183771609,75.8829234774,-2.29257893105e-12,71.6672055064,7.30183771609,67.4514875354,14.6036754322,63.2357695645,21.9055131483,59.0200515935,29.2073508644,54.8043336226,36.5091885805,50.5886156516,43.8110262966,46.3728976806,51.1128640127,42.1571797097,58.4147017287,37.9414617387,65.7165394448,29.5100257968,65.7165394448,21.0785898548,65.7165394448,12.6471539129,65.7165394448,4.21571797097,65.7165394448,-4.21571797096,65.7165394448,-12.6471539129,65.7165394448,-21.0785898548,65.7165394448,-29.5100257968,65.7165394448,-37.9414617387,65.7165394448,-42.1571797097,58.4147017287,-46.3728976806,51.1128640127,-50.5886156516,43.8110262966,-54.8043336226,36.5091885805,-59.0200515935,29.2073508644,-63.2357695645,21.9055131483,-67.4514875354,14.6036754322,-71.6672055064,7.30183771609,-75.8829234774,-1.31139288649e-12,-71.6672055064,-7.30183771609,-67.4514875354,-14.6036754322,-63.2357695645,-21.9055131483,-59.0200515935,-29.2073508644,-54.8043336226,-36.5091885805,-50.5886156516,-43.8110262966,-46.3728976806,-51.1128640127,-42.1571797097,-58.4147017287,-37.9414617387,-65.7165394448,-29.5100257968,-65.7165394448,-21.0785898548,-65.7165394448,-12.6471539129,-65.7165394448,-4.21571797097,-65.7165394448,4.21571797097,-65.7165394448,12.6471539129,-65.7165394448,21.0785898548,-65.7165394448,29.5100257968,-65.7165394448,37.9414617387,-65.7165394448,42.1571797097,-58.4147017287,46.3728976806,-51.1128640127,50.5886156516,-43.8110262966,54.8043336226,-36.5091885805,59.0200515935,-29.2073508644,63.2357695645,-21.9055131483,67.4514875354,-14.6036754322,71.6672055064,-7.30183771609,84.3143594193,-1.49064802924e-12,80.0986414483,7.30183771609,75.8829234774,14.6036754322,71.6672055064,21.9055131483,67.4514875354,29.2073508644,63.2357695645,36.5091885805,59.0200515935,43.8110262966,54.8043336226,51.1128640127,50.5886156516,58.4147017287,46.3728976806,65.7165394448,42.1571797097,73.0183771609,33.7257437677,73.0183771609,25.2943078258,73.0183771609,16.8628718839,73.0183771609,8.43143594193,73.0183771609,2.0755858635e-12,73.0183771609,-8.43143594193,73.0183771609,-16.8628718839,73.0183771609,-25.2943078258,73.0183771609,-33.7257437677,73.0183771609,-42.1571797097,73.0183771609,-46.3728976806,65.7165394448,-50.5886156516,58.4147017287,-54.8043336226,51.1128640127,-59.0200515935,43.8110262966,-63.2357695645,36.5091885805,-67.4514875354,29.2073508644,-71.6672055064,21.9055131483,-75.8829234774,14.6036754322,-80.0986414483,7.30183771609,-84.3143594193,-1.11326878133e-12,-80.0986414483,-7.30183771609,-75.8829234774,-14.6036754322,-71.6672055064,-21.9055131483,-67.4514875354,-29.2073508644,-63.2357695645,-36.5091885805,-59.0200515935,-43.8110262966,-54.8043336226,-51.1128640127,-50.5886156516,-58.4147017287,-46.3728976806,-65.7165394448,-42.1571797097,-73.0183771609,-33.7257437677,-73.0183771609,-25.2943078258,-73.0183771609,-16.8628718839,-73.0183771609,-8.43143594193,-73.0183771609,-5.66068871864e-14,-73.0183771609,8.43143594193,-73.0183771609,16.8628718839,-73.0183771609,25.2943078258,-73.0183771609,33.7257437677,-73.0183771609,42.1571797097,-73.0183771609,46.3728976806,-65.7165394448,50.5886156516,-58.4147017287,54.8043336226,-51.1128640127,59.0200515935,-43.8110262966,63.2357695645,-36.5091885805,67.4514875354,-29.2073508644,71.6672055064,-21.9055131483,75.8829234774,-14.6036754322,80.0986414483,-7.3018377161};
1081   const int conn[2137]={0,2,3,4,5,6,1,1,8,2,0,6,18,7,2,9,10,3,0,1,8,3,10,11,12,4,0,2,4,3,12,13,14,5,0,5,0,4,14,15,16,6,6,1,0,5,16,17,18,7,20,8,1,18,36,19,8,21,9,2,1,7,20,9,22,23,10,2,8,21,10,23,24,11,3,2,9,11,24,25,26,12,3,10,12,11,26,27,13,4,3,13,12,27,28,29,14,4,14,4,13,29,30,15,5,15,5,14,30,31,32,16,16,6,5,15,32,33,17,17,18,6,16,33,34,35,18,7,1,6,17,35,36,19,38,20,7,36,60,37,20,39,21,8,7,19,38,21,40,22,9,8,20,39,22,41,42,23,9,21,40,23,42,43,24,10,9,22,24,43,44,25,11,10,23,25,44,45,46,26,11,24,26,25,46,47,27,12,11,27,26,47,48,28,13,12,28,27,48,49,50,29,13,29,13,28,50,51,30,14,30,14,29,51,52,31,15,31,15,30,52,53,54,32,32,16,15,31,54,55,33,33,17,16,32,55,56,34,34,35,17,33,56,57,58,35,36,18,17,34,58,59,36,19,7,18,35,59,60,37,62,38,19,60,90,61,38,63,39,20,19,37,62,39,64,40,21,20,38,63,40,65,41,22,21,39,64,41,66,67,42,22,40,65,42,67,68,43,23,22,41,43,68,69,44,24,23,42,44,69,70,45,25,24,43,45,70,71,72,46,25,44,46,45,72,73,47,26,25,47,46,73,74,48,27,26,48,47,74,75,49,28,27,49,48,75,76,77,50,28,50,28,49,77,78,51,29,51,29,50,78,79,52,30,52,30,51,79,80,53,31,53,31,52,80,81,82,54,54,32,31,53,82,83,55,55,33,32,54,83,84,56,56,34,33,55,84,85,57,57,58,34,56,85,86,87,58,59,35,34,57,87,88,59,60,36,35,58,88,89,60,37,19,36,59,89,90,61,92,62,37,90,126,91,62,93,63,38,37,61,92,63,94,64,39,38,62,93,64,95,65,40,39,63,94,65,96,66,41,40,64,95,66,97,98,67,41,65,96,67,98,99,68,42,41,66,68,99,100,69,43,42,67,69,100,101,70,44,43,68,70,101,102,71,45,44,69,71,102,103,104,72,45,70,72,71,104,105,73,46,45,73,72,105,106,74,47,46,74,73,106,107,75,48,47,75,74,107,108,76,49,48,76,75,108,109,110,77,49,77,49,76,110,111,78,50,78,50,77,111,112,79,51,79,51,78,112,113,80,52,80,52,79,113,114,81,53,81,53,80,114,115,116,82,82,54,53,81,116,117,83,83,55,54,82,117,118,84,84,56,55,83,118,119,85,85,57,56,84,119,120,86,86,87,57,85,120,121,122,87,88,58,57,86,122,123,88,89,59,58,87,123,124,89,90,60,59,88,124,125,90,61,37,60,89,125,126,91,128,92,61,126,168,127,92,129,93,62,61,91,128,93,130,94,63,62,92,129,94,131,95,64,63,93,130,95,132,96,65,64,94,131,96,133,97,66,65,95,132,97,134,135,98,66,96,133,98,135,136,99,67,66,97,99,136,137,100,68,67,98,100,137,138,101,69,68,99,101,138,139,102,70,69,100,102,139,140,103,71,70,101,103,140,141,142,104,71,102,104,103,142,143,105,72,71,105,104,143,144,106,73,72,106,105,144,145,107,74,73,107,106,145,146,108,75,74,108,107,146,147,109,76,75,109,108,147,148,149,110,76,110,76,109,149,150,111,77,111,77,110,150,151,112,78,112,78,111,151,152,113,79,113,79,112,152,153,114,80,114,80,113,153,154,115,81,115,81,114,154,155,156,116,116,82,81,115,156,157,117,117,83,82,116,157,158,118,118,84,83,117,158,159,119,119,85,84,118,159,160,120,120,86,85,119,160,161,121,121,122,86,120,161,162,163,122,123,87,86,121,163,164,123,124,88,87,122,164,165,124,125,89,88,123,165,166,125,126,90,89,124,166,167,126,91,61,90,125,167,168,127,170,128,91,168,216,169,128,171,129,92,91,127,170,129,172,130,93,92,128,171,130,173,131,94,93,129,172,131,174,132,95,94,130,173,132,175,133,96,95,131,174,133,176,134,97,96,132,175,134,177,178,135,97,133,176,135,178,179,136,98,97,134,136,179,180,137,99,98,135,137,180,181,138,100,99,136,138,181,182,139,101,100,137,139,182,183,140,102,101,138,140,183,184,141,103,102,139,141,184,185,186,142,103,140,142,141,186,187,143,104,103,143,142,187,188,144,105,104,144,143,188,189,145,106,105,145,144,189,190,146,107,106,146,145,190,191,147,108,107,147,146,191,192,148,109,108,148,147,192,193,194,149,109,149,109,148,194,195,150,110,150,110,149,195,196,151,111,151,111,150,196,197,152,112,152,112,151,197,198,153,113,153,113,152,198,199,154,114,154,114,153,199,200,155,115,155,115,154,200,201,202,156,156,116,115,155,202,203,157,157,117,116,156,203,204,158,158,118,117,157,204,205,159,159,119,118,158,205,206,160,160,120,119,159,206,207,161,161,121,120,160,207,208,162,162,163,121,161,208,209,210,163,164,122,121,162,210,211,164,165,123,122,163,211,212,165,166,124,123,164,212,213,166,167,125,124,165,213,214,167,168,126,125,166,214,215,168,127,91,126,167,215,216,169,218,170,127,216,270,217,170,219,171,128,127,169,218,171,220,172,129,128,170,219,172,221,173,130,129,171,220,173,222,174,131,130,172,221,174,223,175,132,131,173,222,175,224,176,133,132,174,223,176,225,177,134,133,175,224,177,226,227,178,134,176,225,178,227,228,179,135,134,177,179,228,229,180,136,135,178,180,229,230,181,137,136,179,181,230,231,182,138,137,180,182,231,232,183,139,138,181,183,232,233,184,140,139,182,184,233,234,185,141,140,183,185,234,235,236,186,141,184,186,185,236,237,187,142,141,187,186,237,238,188,143,142,188,187,238,239,189,144,143,189,188,239,240,190,145,144,190,189,240,241,191,146,145,191,190,241,242,192,147,146,192,191,242,243,193,148,147,193,192,243,244,245,194,148,194,148,193,245,246,195,149,195,149,194,246,247,196,150,196,150,195,247,248,197,151,197,151,196,248,249,198,152,198,152,197,249,250,199,153,199,153,198,250,251,200,154,200,154,199,251,252,201,155,201,155,200,252,253,254,202,202,156,155,201,254,255,203,203,157,156,202,255,256,204,204,158,157,203,256,257,205,205,159,158,204,257,258,206,206,160,159,205,258,259,207,207,161,160,206,259,260,208,208,162,161,207,260,261,209,209,210,162,208,261,262,263,210,211,163,162,209,263,264,211,212,164,163,210,264,265,212,213,165,164,211,265,266,213,214,166,165,212,266,267,214,215,167,166,213,267,268,215,216,168,167,214,268,269,216,169,127,168,215,269,270,217,272,218,169,270,330,271,218,273,219,170,169,217,272,219,274,220,171,170,218,273,220,275,221,172,171,219,274,221,276,222,173,172,220,275,222,277,223,174,173,221,276,223,278,224,175,174,222,277,224,279,225,176,175,223,278,225,280,226,177,176,224,279,226,281,282,227,177,225,280,227,282,283,228,178,177,226,228,283,284,229,179,178,227,229,284,285,230,180,179,228,230,285,286,231,181,180,229,231,286,287,232,182,181,230,232,287,288,233,183,182,231,233,288,289,234,184,183,232,234,289,290,235,185,184,233,235,290,291,292,236,185,234,236,235,292,293,237,186,185,237,236,293,294,238,187,186,238,237,294,295,239,188,187,239,238,295,296,240,189,188,240,239,296,297,241,190,189,241,240,297,298,242,191,190,242,241,298,299,243,192,191,243,242,299,300,244,193,192,244,243,300,301,302,245,193,245,193,244,302,303,246,194,246,194,245,303,304,247,195,247,195,246,304,305,248,196,248,196,247,305,306,249,197,249,197,248,306,307,250,198,250,198,249,307,308,251,199,251,199,250,308,309,252,200,252,200,251,309,310,253,201,253,201,252,310,311,312,254,254,202,201,253,312,313,255,255,203,202,254,313,314,256,256,204,203,255,314,315,257,257,205,204,256,315,316,258,258,206,205,257,316,317,259,259,207,206,258,317,318,260,260,208,207,259,318,319,261,261,209,208,260,319,320,262,262,263,209,261,320,321,322,263,264,210,209,262,322,323,264,265,211,210,263,323,324,265,266,212,211,264,324,325,266,267,213,212,265,325,326,267,268,214,213,266,326,327,268,269,215,214,267,327,328,269,270,216,215,268,328,329,270,217,169,216,269,329,330,271,272,217,330,273,218,217,271,274,219,218,272,275,220,219,273,276,221,220,274,277,222,221,275,278,223,222,276,279,224,223,277,280,225,224,278,281,226,225,279,281,282,226,280,283,227,226,281,284,228,227,282,285,229,228,283,286,230,229,284,287,231,230,285,288,232,231,286,289,233,232,287,290,234,233,288,291,235,234,289,291,292,235,290,291,293,236,235,292,294,237,236,293,295,238,237,294,296,239,238,295,297,240,239,296,298,241,240,297,299,242,241,298,300,243,242,299,301,244,243,301,300,302,244,244,301,303,245,245,302,304,246,246,303,305,247,247,304,306,248,248,305,307,249,249,306,308,250,250,307,309,251,251,308,310,252,252,309,311,253,311,253,310,312,254,253,311,313,255,254,312,314,256,255,313,315,257,256,314,316,258,257,315,317,259,258,316,318,260,259,317,319,261,260,318,320,262,261,319,321,321,322,262,320,323,263,262,321,324,264,263,322,325,265,264,323,326,266,265,324,327,267,266,325,328,268,267,326,329,269,268,327,330,270,269,328,271,217,270,329};
1082   const int connI[332]={0,7,14,21,28,35,42,49,56,63,70,77,84,91,98,105,112,119,126,133,140,147,154,161,168,175,182,189,196,203,210,217,224,231,238,245,252,259,266,273,280,287,294,301,308,315,322,329,336,343,350,357,364,371,378,385,392,399,406,413,420,427,434,441,448,455,462,469,476,483,490,497,504,511,518,525,532,539,546,553,560,567,574,581,588,595,602,609,616,623,630,637,644,651,658,665,672,679,686,693,700,707,714,721,728,735,742,749,756,763,770,777,784,791,798,805,812,819,826,833,840,847,854,861,868,875,882,889,896,903,910,917,924,931,938,945,952,959,966,973,980,987,994,1001,1008,1015,1022,1029,1036,1043,1050,1057,1064,1071,1078,1085,1092,1099,1106,1113,1120,1127,1134,1141,1148,1155,1162,1169,1176,1183,1190,1197,1204,1211,1218,1225,1232,1239,1246,1253,1260,1267,1274,1281,1288,1295,1302,1309,1316,1323,1330,1337,1344,1351,1358,1365,1372,1379,1386,1393,1400,1407,1414,1421,1428,1435,1442,1449,1456,1463,1470,1477,1484,1491,1498,1505,1512,1519,1526,1533,1540,1547,1554,1561,1568,1575,1582,1589,1596,1603,1610,1617,1624,1631,1638,1645,1652,1659,1666,1673,1680,1687,1694,1701,1708,1715,1722,1729,1736,1743,1750,1757,1764,1771,1778,1785,1792,1799,1806,1813,1820,1827,1834,1841,1848,1855,1862,1869,1876,1883,1890,1897,1901,1905,1909,1913,1917,1921,1925,1929,1933,1937,1941,1945,1949,1953,1957,1961,1965,1969,1973,1977,1981,1985,1989,1993,1997,2001,2005,2009,2013,2017,2021,2025,2029,2033,2037,2041,2045,2049,2053,2057,2061,2065,2069,2073,2077,2081,2085,2089,2093,2097,2101,2105,2109,2113,2117,2121,2125,2129,2133,2137};
1083   //
1084   MEDCouplingUMesh *m=MEDCouplingUMesh::New("convexhull",2);
1085   m->allocateCells(331);
1086   for(int i=0;i<331;i++)
1087     m->insertNextCell(INTERP_KERNEL::NORM_POLYGON,connI[i+1]-connI[i],conn+connI[i]);
1088   m->finishInsertingCells();
1089   DataArrayDouble *coordsDa=DataArrayDouble::New();
1090   coordsDa->alloc(331,2);
1091   std::copy(coords,coords+662,coordsDa->getPointer());
1092   m->setCoords(coordsDa);
1093   coordsDa->decrRef();
1094   m->checkCoherency();
1095   //
1096   DataArrayInt *da=m->convexEnvelop2D();
1097   m->checkCoherency();
1098   CPPUNIT_ASSERT(coordsDa==m->getCoords());
1099   DataArrayInt *daC=da->buildComplement(331);
1100   da->decrRef();
1101   const int expected[58]={271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,302,303,304,305,306,307,308,309,310,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330};
1102   DataArrayInt *expected2=DataArrayInt::New();
1103   expected2->alloc(58,1);
1104   std::copy(expected,expected+58,expected2->getPointer());
1105   CPPUNIT_ASSERT(expected2->isEqual(*daC));
1106   //
1107   expected2->decrRef();
1108   daC->decrRef();
1109   //
1110   MEDCouplingFieldDouble *valsF=m->getMeasureField(ON_CELLS);
1111   DataArrayDouble *vals=valsF->getArray();
1112   const double ref[331]={184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,184.69493088478035,-61.564976961404426,-92.34746544254946,-92.34746544259811,-92.34746544253488,-92.3474654425349,-92.34746544180479,-92.34746544253493,-92.3474654419026,-92.34746544190256,-92.34746544253491,-61.564976961404426,-92.34746544254946,-92.34746544259811,-92.34746544253488,-92.3474654425349,-92.34746544180479,-92.34746544253493,-92.3474654419026,-92.34746544190256,-92.34746544253491,-61.564976961404426,-92.34746544254946,-92.34746544259811,-92.34746544253488,-92.3474654425349,-92.34746544180479,-92.34746544253493,-92.3474654419026,-92.34746544190256,-92.34746544253491,61.564976961404426,-92.34746544254946,-92.34746544259811,-92.34746544253488,-92.3474654425349,-92.34746544180479,-92.34746544253493,-92.3474654419026,-92.34746544190256,-92.34746544253491,61.564976961404426,-92.34746544254946,-92.34746544259811,-92.34746544253488,-92.3474654425349,-92.34746544180479,-92.34746544253493,-92.3474654419026,-92.34746544190256,-92.34746544253491,-61.564976961404426,-92.34746544254946,-92.34746544259811,-92.34746544253488,-92.3474654425349,-92.34746544180479,-92.34746544253493,-92.3474654419026,-92.34746544190256,-92.34746544253491};
1113   DataArrayDouble *ref2=DataArrayDouble::New(); ref2->alloc(331,1); std::copy(ref,ref+331,ref2->getPointer());
1114   vals->substractEqual(ref2);
1115   ref2->decrRef();
1116   vals->abs();
1117   DataArrayInt *theTest=vals->getIdsInRange(-1.,1e-7);
1118   CPPUNIT_ASSERT(theTest->isIdentity());
1119   CPPUNIT_ASSERT_EQUAL(331,theTest->getNumberOfTuples());
1120   theTest->decrRef();
1121   valsF->decrRef();
1122   //
1123   m->decrRef();
1124 }
1125
1126 void MEDCouplingBasicsTest5::testDataArraySort1()
1127 {
1128   DataArrayInt *arr=DataArrayInt::New();
1129   CPPUNIT_ASSERT_THROW(arr->sort(true),INTERP_KERNEL::Exception);//no allocation
1130   CPPUNIT_ASSERT_THROW(arr->sort(false),INTERP_KERNEL::Exception);//no allocation
1131   const int values[6]={2,1,6,5,4,7};
1132   arr->alloc(3,2);
1133   CPPUNIT_ASSERT_THROW(arr->sort(true),INTERP_KERNEL::Exception);//no one component
1134   CPPUNIT_ASSERT_THROW(arr->sort(false),INTERP_KERNEL::Exception);//no one component
1135   arr->rearrange(1);
1136   std::copy(values,values+6,arr->getPointer());
1137   DataArrayInt *arr1=arr->deepCpy();
1138   DataArrayInt *arr2=arr->deepCpy();
1139   arr1->sort(true);
1140   const int expected1[6]={1,2,4,5,6,7};
1141   CPPUNIT_ASSERT_EQUAL(6,arr1->getNumberOfTuples());
1142   CPPUNIT_ASSERT_EQUAL(1,arr1->getNumberOfComponents());
1143   CPPUNIT_ASSERT(std::equal(expected1,expected1+6,arr1->begin()));
1144   arr2->sort(false);
1145   const int expected2[6]={7,6,5,4,2,1};
1146   CPPUNIT_ASSERT_EQUAL(6,arr2->getNumberOfTuples());
1147   CPPUNIT_ASSERT_EQUAL(1,arr2->getNumberOfComponents());
1148   CPPUNIT_ASSERT(std::equal(expected2,expected2+6,arr2->begin()));
1149   arr1->decrRef();
1150   arr2->decrRef();
1151   arr->decrRef();
1152   //
1153   DataArrayDouble *ard=DataArrayDouble::New();
1154   CPPUNIT_ASSERT_THROW(ard->sort(true),INTERP_KERNEL::Exception);//no allocation
1155   CPPUNIT_ASSERT_THROW(ard->sort(false),INTERP_KERNEL::Exception);//no allocation
1156   const double valuesD[6]={2.,1.,6.,5.,4.,7.};
1157   ard->alloc(3,2);
1158   CPPUNIT_ASSERT_THROW(ard->sort(true),INTERP_KERNEL::Exception);//no one component
1159   CPPUNIT_ASSERT_THROW(ard->sort(false),INTERP_KERNEL::Exception);//no one component
1160   ard->rearrange(1);
1161   std::copy(valuesD,valuesD+6,ard->getPointer());
1162   DataArrayDouble *ard1=ard->deepCpy();
1163   DataArrayDouble *ard2=ard->deepCpy();
1164   ard1->sort(true);
1165   const double expected3[6]={1.,2.,4.,5.,6.,7.};
1166   CPPUNIT_ASSERT_EQUAL(6,ard1->getNumberOfTuples());
1167   CPPUNIT_ASSERT_EQUAL(1,ard1->getNumberOfComponents());
1168   for(int i=0;i<6;i++)
1169     CPPUNIT_ASSERT_DOUBLES_EQUAL(expected3[i],ard1->getIJ(i,0),1e-12);
1170   ard2->sort(false);
1171   const double expected4[6]={7.,6.,5.,4.,2.,1.};
1172   CPPUNIT_ASSERT_EQUAL(6,ard2->getNumberOfTuples());
1173   CPPUNIT_ASSERT_EQUAL(1,ard2->getNumberOfComponents());
1174   for(int i=0;i<6;i++)
1175     CPPUNIT_ASSERT_DOUBLES_EQUAL(expected4[i],ard2->getIJ(i,0),1e-12);
1176   ard1->decrRef();
1177   ard2->decrRef();
1178   ard->decrRef();
1179 }
1180
1181 void MEDCouplingBasicsTest5::testPartitionBySpreadZone1()
1182 {
1183   MEDCouplingUMesh *m=build2DTargetMesh_1();
1184   const int part0[3]={2,3,4};
1185   const int part1[2]={0,1};
1186   MEDCouplingUMesh *m1=static_cast<MEDCouplingUMesh *>(m->buildPartOfMySelf(part0,part0+3));
1187   MEDCouplingUMesh *m2=static_cast<MEDCouplingUMesh *>(m->buildPartOfMySelf(part1,part1+2));
1188   std::vector<const MEDCouplingUMesh *> v(3); v[0]=m; v[1]=m1; v[2]=m2;
1189   MEDCouplingUMesh *m4=MEDCouplingUMesh::MergeUMeshes(v);
1190   const int renum[10]={5,2,9,6,4,7,0,1,3,8};
1191   m4->renumberCells(renum);
1192   //
1193   std::vector<DataArrayInt *> v2=m4->partitionBySpreadZone();
1194   CPPUNIT_ASSERT_EQUAL(3,(int)v2.size());
1195   const int expected0[3]={0,1,7};
1196   const int expected1[5]={2,4,5,6,9};
1197   const int expected2[2]={3,8};
1198   CPPUNIT_ASSERT_EQUAL(3,v2[0]->getNumberOfTuples());
1199   CPPUNIT_ASSERT_EQUAL(1,v2[0]->getNumberOfComponents());
1200   CPPUNIT_ASSERT_EQUAL(5,v2[1]->getNumberOfTuples());
1201   CPPUNIT_ASSERT_EQUAL(1,v2[1]->getNumberOfComponents());
1202   CPPUNIT_ASSERT_EQUAL(2,v2[2]->getNumberOfTuples());
1203   CPPUNIT_ASSERT_EQUAL(1,v2[2]->getNumberOfComponents());
1204   //
1205   CPPUNIT_ASSERT(std::equal(expected0,expected0+3,v2[0]->getConstPointer()));
1206   CPPUNIT_ASSERT(std::equal(expected1,expected1+5,v2[1]->getConstPointer()));
1207   CPPUNIT_ASSERT(std::equal(expected2,expected2+2,v2[2]->getConstPointer()));
1208   v2[0]->decrRef();
1209   v2[1]->decrRef();
1210   v2[2]->decrRef();
1211   //
1212   MEDCouplingUMesh *m5=m4->buildSpreadZonesWithPoly();
1213   CPPUNIT_ASSERT_EQUAL(3,m5->getNumberOfCells());
1214   CPPUNIT_ASSERT(m5->getCoords()==m4->getCoords());
1215   const int expected3[23]={5,15,16,17,14,11,13,12,5,2,1,0,3,6,7,8,5,5,18,21,22,20,19};
1216   const int expected4[4]={0,8,17,23};
1217   CPPUNIT_ASSERT_EQUAL(23,m5->getNodalConnectivity()->getNumberOfTuples());
1218   CPPUNIT_ASSERT(std::equal(expected3,expected3+23,m5->getNodalConnectivity()->getConstPointer()));
1219   CPPUNIT_ASSERT_EQUAL(4,m5->getNodalConnectivityIndex()->getNumberOfTuples());
1220   CPPUNIT_ASSERT(std::equal(expected4,expected4+4,m5->getNodalConnectivityIndex()->getConstPointer()));
1221   //
1222   m->decrRef();
1223   m1->decrRef();
1224   m2->decrRef();
1225   m4->decrRef();
1226   m5->decrRef();
1227 }
1228
1229 void MEDCouplingBasicsTest5::testGiveCellsWithType1()
1230 {
1231   const int expected0[2]={1,2};
1232   const int expected1[3]={0,3,4};
1233   MEDCouplingUMesh *m=build2DTargetMesh_1();
1234   DataArrayInt *da=m->giveCellsWithType(INTERP_KERNEL::NORM_TRI3);
1235   CPPUNIT_ASSERT_EQUAL(2,da->getNumberOfTuples());
1236   CPPUNIT_ASSERT_EQUAL(1,da->getNumberOfComponents());
1237   CPPUNIT_ASSERT(std::equal(expected0,expected0+2,da->getConstPointer()));
1238   da->decrRef();
1239   //
1240   da=m->giveCellsWithType(INTERP_KERNEL::NORM_QUAD4);
1241   CPPUNIT_ASSERT_EQUAL(3,da->getNumberOfTuples());
1242   CPPUNIT_ASSERT_EQUAL(1,da->getNumberOfComponents());
1243   CPPUNIT_ASSERT(std::equal(expected1,expected1+3,da->getConstPointer()));
1244   da->decrRef();
1245   //
1246   da=m->giveCellsWithType(INTERP_KERNEL::NORM_TRI6);
1247   CPPUNIT_ASSERT_EQUAL(0,da->getNumberOfTuples());
1248   CPPUNIT_ASSERT_EQUAL(1,da->getNumberOfComponents());
1249   da->decrRef();
1250   //
1251   CPPUNIT_ASSERT_THROW(m->giveCellsWithType(INTERP_KERNEL::NORM_SEG2),INTERP_KERNEL::Exception);
1252   CPPUNIT_ASSERT_THROW(m->giveCellsWithType(INTERP_KERNEL::NORM_HEXA8),INTERP_KERNEL::Exception);
1253   //
1254   m->decrRef();
1255 }
1256
1257 void MEDCouplingBasicsTest5::testBuildSlice3D2()
1258 {
1259   MEDCouplingUMesh *mesh2D=0;
1260   MEDCouplingUMesh *mesh3D=build3DExtrudedUMesh_1(mesh2D);
1261   mesh2D->decrRef();
1262   // First slice in the middle of 3D cells
1263   const double vec1[3]={-0.07,1.,0.07};
1264   const double origin1[3]={1.524,1.4552,1.74768};
1265   DataArrayInt *ids=0;
1266   MEDCouplingUMesh *slice1=mesh3D->buildSlice3D(origin1,vec1,1e-10,ids);
1267   //
1268   MEDCouplingFieldDouble *f=MEDCouplingFieldDouble::New(ON_CELLS,ONE_TIME);
1269   f->setTime(4.5,6,7) ; f->setMesh(mesh3D);
1270   DataArrayDouble *arr=DataArrayDouble::New(); arr->alloc(mesh3D->getNumberOfCells(),2);
1271   arr->rearrange(1); arr->iota(2.); arr->rearrange(2);
1272   f->setArray(arr);
1273   f->checkCoherency();
1274   const int exp1[9]={1,3,4,7,9,10,13,15,16};
1275   DataArrayInt *expected1=DataArrayInt::New(); expected1->alloc(9,1); std::copy(exp1,exp1+9,expected1->getPointer());
1276   CPPUNIT_ASSERT(expected1->isEqual(*ids));
1277   DataArrayDouble *arr2=arr->selectByTupleIdSafe(expected1->begin(),expected1->end());
1278   //
1279   MEDCouplingFieldDouble *f2=f->extractSlice3D(origin1,vec1,1e-10);
1280   CPPUNIT_ASSERT(f2->getArray()->isEqual(*arr2,1e-12));
1281   CPPUNIT_ASSERT(slice1->isEqual(f2->getMesh(),1e-12));
1282   int a,b;
1283   double c=f2->getTime(a,b);
1284   CPPUNIT_ASSERT_EQUAL(6,a);
1285   CPPUNIT_ASSERT_EQUAL(7,b);
1286   CPPUNIT_ASSERT_DOUBLES_EQUAL(4.5,c,1e-12);
1287   //
1288   ids->decrRef();
1289   slice1->decrRef();
1290   arr2->decrRef();
1291   arr->decrRef();
1292   f2->decrRef();
1293   f->decrRef();
1294   mesh3D->decrRef();
1295   expected1->decrRef();
1296 }
1297
1298 void MEDCouplingBasicsTest5::testComputeTupleIdsToSelectFromCellIds1()
1299 {
1300   MEDCouplingUMesh *m=build2DTargetMesh_3();
1301   MEDCouplingFieldDouble *f=MEDCouplingFieldDouble::New(ON_GAUSS_NE,NO_TIME);
1302   f->setMesh(m);
1303   DataArrayDouble *arr=DataArrayDouble::New(); arr->alloc(52,2) ; arr->rearrange(1) ; arr->iota(7.); arr->rearrange(2);
1304   f->setArray(arr);
1305   //
1306   const int subPart1[3]={1,5,9};
1307   MEDCouplingFieldDouble *f2=f->buildSubPart(subPart1,subPart1+3);
1308   f2->checkCoherency();
1309   DataArrayInt *cI=m->computeNbOfNodesPerCell();
1310   cI->computeOffsets2();
1311   const int sel1[3]={1,5,9};
1312   DataArrayInt *sel=DataArrayInt::New(); sel->useArray(sel1,false,CPP_DEALLOC,3,1);
1313   DataArrayInt *res=sel->buildExplicitArrByRanges(cI);
1314   DataArrayDouble *arr2=arr->selectByTupleIdSafe(res->begin(),res->end());
1315   const double expected1[30]={13.,14.,15.,16.,17.,18.,19.,20.,59.,60.,61.,62.,63.,64.,95.,96.,97.,98.,99.,100.,101.,102.,103.,104.,105.,106.,107.,108.,109.,110.};
1316   DataArrayDouble *arr3=DataArrayDouble::New(); arr3->useArray(expected1,false,CPP_DEALLOC,15,2);
1317   CPPUNIT_ASSERT(arr2->isEqual(*arr3,1e-12));
1318   CPPUNIT_ASSERT(arr2->isEqual(*f2->getArray(),1e-12));
1319   //
1320   cI->decrRef();
1321   arr3->decrRef();
1322   arr2->decrRef();
1323   arr->decrRef();
1324   m->decrRef();
1325   f->decrRef();
1326   f2->decrRef();
1327   sel->decrRef();
1328   res->decrRef();
1329 }
1330
1331 void MEDCouplingBasicsTest5::testComputeSkin1()
1332 {
1333   const double input1[5]={2.,3.4,5.6,7.7,8.0};
1334   const double input2[6]={2.,3.4,5.6,7.7,9.0,14.2};
1335   DataArrayDouble *arrX=DataArrayDouble::New(); arrX->alloc(5,1); std::copy(input1,input1+5,arrX->getPointer());
1336   DataArrayDouble *arrY=DataArrayDouble::New(); arrY->alloc(6,1); std::copy(input2,input2+6,arrY->getPointer());
1337   MEDCouplingCMesh *cmesh=MEDCouplingCMesh::New() ; cmesh->setCoordsAt(0,arrX) ; cmesh->setCoordsAt(1,arrY);
1338   MEDCouplingUMesh *umesh=cmesh->buildUnstructured();
1339   cmesh->decrRef(); arrX->decrRef(); arrY->decrRef();
1340   //
1341   MEDCouplingUMesh *skin=umesh->computeSkin();
1342   CPPUNIT_ASSERT_EQUAL(18,skin->getNumberOfCells());
1343   CPPUNIT_ASSERT_EQUAL(1,skin->getMeshDimension());
1344   CPPUNIT_ASSERT(skin->getCoords()==umesh->getCoords());
1345   const int expected1[19]={0,3,6,9,12,15,18,21,24,27,30,33,36,39,42,45,48,51,54};
1346   const int expected2[54]={1,1,0,1,0,5,1,2,1,1,3,2,1,4,3,1,9,4,1,5,10,1,14,9,1,10,15,1,19,14,1,15,20,1,24,19,1,20,25,1,25,26,1,26,27,1,27,28,1,28,29,1,29,24};
1347   CPPUNIT_ASSERT_EQUAL(19,skin->getNodalConnectivityIndex()->getNbOfElems());
1348   CPPUNIT_ASSERT(std::equal(expected1,expected1+19,skin->getNodalConnectivityIndex()->getConstPointer()));
1349   CPPUNIT_ASSERT_EQUAL(54,skin->getNodalConnectivity()->getNbOfElems());
1350   CPPUNIT_ASSERT(std::equal(expected2,expected2+54,skin->getNodalConnectivity()->getConstPointer()));
1351   DataArrayInt *ids=skin->computeFetchedNodeIds();
1352   const int expected3[18]={0,1,2,3,4,5,9,10,14,15,19,20,24,25,26,27,28,29};
1353   CPPUNIT_ASSERT_EQUAL(18,ids->getNbOfElems());
1354   CPPUNIT_ASSERT(std::equal(expected3,expected3+18,ids->getConstPointer()));
1355   MEDCouplingUMesh *part=dynamic_cast<MEDCouplingUMesh *>(umesh->buildFacePartOfMySelfNode(ids->begin(),ids->end(),true));
1356   part->setName(skin->getName());
1357   CPPUNIT_ASSERT(part->isEqual(skin,1e-12));
1358   MEDCouplingUMesh *part2=dynamic_cast<MEDCouplingUMesh *>(part->buildPartOfMySelf2(1,18,2,true));
1359   DataArrayInt *ids2=DataArrayInt::Range(0,18,2);
1360   part->setPartOfMySelf(ids2->begin(),ids2->end(),*part2);
1361   ids2->decrRef();
1362   CPPUNIT_ASSERT(!part->isEqual(skin,1e-12));
1363   DataArrayInt *trad=part->zipConnectivityTraducer(0);
1364   CPPUNIT_ASSERT_EQUAL(9,part->getNumberOfCells());
1365   const int expected4[18]={0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8};
1366   CPPUNIT_ASSERT(std::equal(expected4,expected4+18,trad->getConstPointer()));
1367   CPPUNIT_ASSERT_EQUAL(18,trad->getNbOfElems());
1368   trad->decrRef();
1369   part->decrRef();
1370   part2->decrRef();
1371   //
1372   ids->decrRef();
1373   umesh->decrRef();
1374   skin->decrRef();
1375 }
1376
1377 void MEDCouplingBasicsTest5::testUMeshSetPartOfMySelf2()
1378 {
1379   // resize with explicit ids list
1380   MEDCouplingUMesh *m=build2DTargetMesh_1();
1381   std::set<INTERP_KERNEL::NormalizedCellType> s; s.insert(INTERP_KERNEL::NORM_TRI3); s.insert(INTERP_KERNEL::NORM_QUAD4);
1382   CPPUNIT_ASSERT(s==m->getAllTypes());
1383   const int ids1[3]={0,3,4};
1384   MEDCouplingUMesh *part=static_cast<MEDCouplingUMesh *>(m->buildPartOfMySelf(ids1,ids1+3,true));
1385   part->simplexize(0)->decrRef();
1386   const int ids2[3]={1,2,5};
1387   MEDCouplingUMesh *part2=static_cast<MEDCouplingUMesh *>(part->buildPartOfMySelf(ids2,ids2+3,true));
1388   m->setPartOfMySelf(ids1,ids1+3,*part2);
1389   const int expected1[20]={3,0,4,1,3,1,4,2,3,4,5,2,3,6,7,4,3,7,5,4};
1390   CPPUNIT_ASSERT(std::equal(expected1,expected1+20,m->getNodalConnectivity()->getConstPointer()));
1391   CPPUNIT_ASSERT_EQUAL(20,m->getNodalConnectivity()->getNbOfElems());
1392   const int expected2[6]={0,4,8,12,16,20};
1393   CPPUNIT_ASSERT(std::equal(expected2,expected2+6,m->getNodalConnectivityIndex()->getConstPointer()));
1394   CPPUNIT_ASSERT_EQUAL(6,m->getNodalConnectivityIndex()->getNbOfElems());
1395   s.clear(); s.insert(INTERP_KERNEL::NORM_TRI3);
1396   CPPUNIT_ASSERT(s==m->getAllTypes());
1397   m->decrRef(); part->decrRef(); part2->decrRef();
1398   // no resize with explicit ids list
1399   m=build2DTargetMesh_1();
1400   part=static_cast<MEDCouplingUMesh *>(m->buildPartOfMySelf(ids1,ids1+2,true));
1401   part->convertAllToPoly();
1402   m->setPartOfMySelf(ids1+1,ids1+3,*part);
1403   const int expected3[23]={4,0,3,4,1,3,1,4,2,3,4,5,2,5,0,3,4,1,5,6,7,4,3};
1404   CPPUNIT_ASSERT(std::equal(expected3,expected3+23,m->getNodalConnectivity()->getConstPointer()));
1405   CPPUNIT_ASSERT_EQUAL(23,m->getNodalConnectivity()->getNbOfElems());
1406   const int expected4[6]={0,5,9,13,18,23};
1407   CPPUNIT_ASSERT(std::equal(expected4,expected4+6,m->getNodalConnectivityIndex()->getConstPointer()));
1408   CPPUNIT_ASSERT_EQUAL(6,m->getNodalConnectivityIndex()->getNbOfElems());
1409   s.clear(); s.insert(INTERP_KERNEL::NORM_TRI3); s.insert(INTERP_KERNEL::NORM_QUAD4); s.insert(INTERP_KERNEL::NORM_POLYGON);
1410   CPPUNIT_ASSERT(s==m->getAllTypes());
1411   m->decrRef(); part->decrRef();
1412   // resize with range ids
1413   m=build2DTargetMesh_1();
1414   part=static_cast<MEDCouplingUMesh *>(m->buildPartOfMySelf2(3,5,1,true));
1415   m->setPartOfMySelf2(1,3,1,*part);
1416   const int expected5[25]={4,0,3,4,1,4,6,7,4,3,4,7,8,5,4,4,6,7,4,3,4,7,8,5,4};
1417   CPPUNIT_ASSERT(std::equal(expected5,expected5+25,m->getNodalConnectivity()->getConstPointer()));
1418   CPPUNIT_ASSERT_EQUAL(25,m->getNodalConnectivity()->getNbOfElems());
1419   const int expected6[6]={0,5,10,15,20,25};
1420   CPPUNIT_ASSERT(std::equal(expected6,expected6+6,m->getNodalConnectivityIndex()->getConstPointer()));
1421   CPPUNIT_ASSERT_EQUAL(6,m->getNodalConnectivityIndex()->getNbOfElems());
1422   s.clear(); s.insert(INTERP_KERNEL::NORM_QUAD4);
1423   CPPUNIT_ASSERT(s==m->getAllTypes());
1424   m->decrRef(); part->decrRef();
1425   // no resize with range ids
1426   m=build2DTargetMesh_1();
1427   part=static_cast<MEDCouplingUMesh *>(m->buildPartOfMySelf2(0,5,3,true));
1428   part->convertAllToPoly();
1429   m->setPartOfMySelf2(3,5,1,*part);
1430   const int expected7[23]={4,0,3,4,1,3,1,4,2,3,4,5,2,5,0,3,4,1,5,6,7,4,3};
1431   CPPUNIT_ASSERT(std::equal(expected7,expected7+23,m->getNodalConnectivity()->getConstPointer()));
1432   CPPUNIT_ASSERT_EQUAL(23,m->getNodalConnectivity()->getNbOfElems());
1433   const int expected8[6]={0,5,9,13,18,23};
1434   CPPUNIT_ASSERT(std::equal(expected8,expected8+6,m->getNodalConnectivityIndex()->getConstPointer()));
1435   CPPUNIT_ASSERT_EQUAL(6,m->getNodalConnectivityIndex()->getNbOfElems());
1436 s.clear(); s.insert(INTERP_KERNEL::NORM_TRI3); s.insert(INTERP_KERNEL::NORM_QUAD4); s.insert(INTERP_KERNEL::NORM_POLYGON);
1437   CPPUNIT_ASSERT(s==m->getAllTypes());
1438   m->decrRef(); part->decrRef();
1439   // no resize with range ids negative direction
1440   m=build2DTargetMesh_1();
1441   part=static_cast<MEDCouplingUMesh *>(m->buildPartOfMySelf2(3,-1,-3,true));
1442   part->convertAllToPoly();
1443   m->setPartOfMySelf2(4,2,-1,*part);
1444   const int expected9[23]={4,0,3,4,1,3,1,4,2,3,4,5,2,5,0,3,4,1,5,6,7,4,3};
1445   CPPUNIT_ASSERT(std::equal(expected9,expected9+23,m->getNodalConnectivity()->getConstPointer()));
1446   CPPUNIT_ASSERT_EQUAL(23,m->getNodalConnectivity()->getNbOfElems());
1447   const int expected10[6]={0,5,9,13,18,23};
1448   CPPUNIT_ASSERT(std::equal(expected10,expected10+6,m->getNodalConnectivityIndex()->getConstPointer()));
1449   CPPUNIT_ASSERT_EQUAL(6,m->getNodalConnectivityIndex()->getNbOfElems());
1450   s.clear(); s.insert(INTERP_KERNEL::NORM_TRI3); s.insert(INTERP_KERNEL::NORM_QUAD4); s.insert(INTERP_KERNEL::NORM_POLYGON);
1451   CPPUNIT_ASSERT(s==m->getAllTypes());
1452   part->decrRef();
1453   m->decrRef();
1454 }
1455
1456 void MEDCouplingBasicsTest5::testUnPolyze3()
1457 {
1458   const double coord[18]={0.0,0.5,-0.5,-0.5,-0.5,-0.5,0.5,-0.5,-0.5,0.0,0.5,0.5,-0.5,-0.5,0.5,0.5,-0.5,0.5};
1459   const int conn[22]={1,2,5,4,-1,4,3,0,1,-1,2,0,3,5,-1,0,2,1,-1,4,5,3};
1460   MEDCouplingUMesh *m=MEDCouplingUMesh::New("a mesh",3);
1461   m->allocateCells(1);
1462   m->insertNextCell(INTERP_KERNEL::NORM_POLYHED,22,conn);
1463   m->finishInsertingCells();
1464   DataArrayDouble *coords=DataArrayDouble::New();
1465   coords->alloc(6,3);
1466   std::copy(coord,coord+18,coords->getPointer());
1467   m->setCoords(coords);
1468   coords->decrRef();
1469   m->checkCoherency();
1470   //
1471   MEDCouplingFieldDouble *vol=m->getMeasureField(ON_CELLS);
1472   CPPUNIT_ASSERT_EQUAL(1,vol->getArray()->getNumberOfTuples());
1473   CPPUNIT_ASSERT_DOUBLES_EQUAL(0.5,vol->getArray()->getIJ(0,0),1e-12);
1474   vol->decrRef();
1475   //
1476   m->unPolyze();
1477   CPPUNIT_ASSERT_EQUAL(1,m->getNumberOfCells());
1478   std::set<INTERP_KERNEL::NormalizedCellType> s; s.insert(INTERP_KERNEL::NORM_PENTA6);
1479   CPPUNIT_ASSERT(s==m->getAllTypes());
1480   //
1481   const int expected1[2]={0,7};
1482   const int expected2[7]={16,0,2,1,3,5,4};
1483   CPPUNIT_ASSERT_EQUAL(2,m->getNodalConnectivityIndex()->getNumberOfTuples());
1484   CPPUNIT_ASSERT(std::equal(expected1,expected1+2,m->getNodalConnectivityIndex()->getConstPointer()));
1485   CPPUNIT_ASSERT_EQUAL(7,m->getNodalConnectivity()->getNumberOfTuples());
1486   CPPUNIT_ASSERT(std::equal(expected2,expected2+7,m->getNodalConnectivity()->getConstPointer()));
1487   //
1488   vol=m->getMeasureField(ON_CELLS);
1489   CPPUNIT_ASSERT_EQUAL(1,vol->getArray()->getNumberOfTuples());
1490   CPPUNIT_ASSERT_DOUBLES_EQUAL(0.5,vol->getArray()->getIJ(0,0),1e-12);
1491   vol->decrRef();
1492   //
1493   m->decrRef();
1494 }
1495
1496 void MEDCouplingBasicsTest5::testKrSpatialDiscretization1()
1497 {
1498   const double srcPointCoordsX[10]={0.8401877171547095, 0.7830992237586059, 0.9116473579367843, 0.335222755714889, 0.2777747108031878, 0.4773970518621602, 0.3647844727918433, 0.9522297251747128, 0.6357117279599009, 0.1416025553558034};
1499   const double srcFieldValsOnPoints[10]={2.129892434968836, 2.295320474540621, 1.931948594981134, 2.728013590937196, 2.715603240418478, 2.661778472822935, 2.695696990104364, 1.893710234970982, 2.529628016549284, 2.728432341300668};
1500   const double targetPointCoordsX[40]={-0.5,-0.45,-0.4,-0.35,-0.3,-0.25,-0.2,-0.15,-0.1,-0.05,-6.93889390391e-17,0.05,0.1,0.15,0.2,0.25,0.3,0.35,0.4,0.45,0.5,0.55,0.6,0.65,0.7,0.75,0.8,0.85,0.9,0.95,1.0,1.05,1.1,1.15,1.2,1.25,1.3,1.35,1.4,1.45};
1501   const double targetFieldValsExpected[40]={2.975379475824351, 2.95613491917003, 2.936890362515361, 2.917645805861018, 2.898401249206574, 2.879156692552137, 2.859912135897732, 2.840667579243201, 2.821423022588731, 2.802178465934342, 2.78293390927989, 2.763689352625457, 2.744444795971001, 2.725209522098197, 2.709077577124666, 2.706677252549218, 2.727467797847971, 2.713338094723676, 2.671342424824244, 2.664877370146978, 2.653840141412181, 2.619607861392791, 2.569777214476479, 2.513263929794591, 2.450732752808528, 2.368313560985155, 2.250909795670307, 2.098194272085416, 1.954257891732065, 1.895040660973802, 1.865256788315972, 1.835475248687992, 1.80569370905998, 1.775912169431971, 1.746130629803976, 1.716349090175918, 1.686567550547855, 1.656786010919941, 1.627004471291988, 1.597222931663817};
1502   //
1503   int nbOfInputPoints=10;
1504   MEDCouplingFieldDouble *f=MEDCouplingFieldDouble::New(ON_NODES_KR,ONE_TIME);
1505   DataArrayDouble *srcArrX=DataArrayDouble::New();
1506   srcArrX->alloc(nbOfInputPoints,1);
1507   std::copy(srcPointCoordsX,srcPointCoordsX+nbOfInputPoints,srcArrX->getPointer());
1508   MEDCouplingCMesh *cmesh=MEDCouplingCMesh::New("aMesh");
1509   cmesh->setCoordsAt(0,srcArrX);
1510   MEDCouplingUMesh *umesh=cmesh->buildUnstructured();
1511   f->setMesh(umesh);
1512   DataArrayDouble *srcVals=DataArrayDouble::New();
1513   srcVals->alloc(nbOfInputPoints,1);
1514   std::copy(srcFieldValsOnPoints,srcFieldValsOnPoints+nbOfInputPoints,srcVals->getPointer());
1515   f->setArray(srcVals);
1516   f->checkCoherency();
1517   //
1518   double *res0=new double[1];
1519   f->getValueOn(targetPointCoordsX,res0);
1520   CPPUNIT_ASSERT_DOUBLES_EQUAL(targetFieldValsExpected[0],res0[0],1e-10);
1521   delete [] res0;
1522   //
1523   DataArrayDouble *valuesToTest=f->getValueOnMulti(targetPointCoordsX,40);
1524   CPPUNIT_ASSERT_EQUAL(40,valuesToTest->getNumberOfTuples());
1525   CPPUNIT_ASSERT_EQUAL(1,valuesToTest->getNumberOfComponents());
1526   for(int i=0;i<40;i++)
1527     CPPUNIT_ASSERT_DOUBLES_EQUAL(targetFieldValsExpected[i],valuesToTest->getIJ(i,0),1e-10);
1528   valuesToTest->decrRef();
1529   //
1530   cmesh->decrRef();
1531   umesh->decrRef();
1532   srcArrX->decrRef();
1533   srcVals->decrRef();
1534   f->decrRef();
1535 }
1536
1537 void MEDCouplingBasicsTest5::testDuplicateEachTupleNTimes1()
1538 {
1539   const double vals0[4]={9.,8.,7.,6.};
1540   DataArrayDouble *d=DataArrayDouble::New(); d->useArray(vals0,false,CPP_DEALLOC,4,1); d->setInfoOnComponent(0,"mass [kg]"); d->setName("aname");
1541   DataArrayDouble *d2=d->duplicateEachTupleNTimes(3);
1542   const double vals1[12]={9.,9.,9.,8.,8.,8.,7.,7.,7.,6.,6.,6.};
1543   DataArrayDouble *d3=DataArrayDouble::New(); d3->useArray(vals1,false,CPP_DEALLOC,4*3,1); d3->setName("aname"); d3->setInfoOnComponent(0,"mass [kg]");
1544   CPPUNIT_ASSERT(d2->isEqual(*d2,1e-14)); d3->decrRef();
1545   d->decrRef();
1546   d2->decrRef();
1547   //
1548   const int vals2[4]={9,8,7,6};
1549   DataArrayInt *d4=DataArrayInt::New(); d4->useArray(vals2,false,CPP_DEALLOC,4,1); d4->setInfoOnComponent(0,"mass [kg]") ; d4->setName("aname");
1550   DataArrayInt *d5=d4->duplicateEachTupleNTimes(3);
1551   const int vals3[12]={9,9,9,8,8,8,7,7,7,6,6,6};
1552   DataArrayInt *d6=DataArrayInt::New(); d6->useArray(vals3,false,CPP_DEALLOC,4*3,1); d6->setName("aname"); d6->setInfoOnComponent(0,"mass [kg]");
1553   CPPUNIT_ASSERT(d5->isEqual(*d6)); d6->decrRef();
1554   d4->decrRef();
1555   d5->decrRef();
1556 }