]> SALOME platform Git repositories - tools/medcoupling.git/blob - src/MEDCoupling/Test/MEDCouplingBasicsTest5.cxx
Salome HOME
Bug fix: CellModel - POLYL cell model was buggy (missing 'break' in a switch())
[tools/medcoupling.git] / src / MEDCoupling / Test / MEDCouplingBasicsTest5.cxx
1 // Copyright (C) 2007-2013  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 void MEDCouplingBasicsTest5::testUMeshTessellate2DCurve1()
88 {
89   // A quarter of circle:
90   double mcoords[6] = {0.4,0.0,   0.0,-0.4,   0.283,-0.283};
91   int mconnec[3] = {0,1,2};
92
93   MEDCouplingUMesh *m1 = MEDCouplingUMesh::New();
94   m1->setMeshDimension(1);
95   m1->allocateCells(1);
96   m1->insertNextCell(INTERP_KERNEL::NORM_SEG3, 3, mconnec);
97
98   DataArrayDouble *myCoords = DataArrayDouble::New();
99   myCoords->alloc(3,2);
100   std::copy(mcoords,mcoords+6,myCoords->getPointer());
101   m1->setCoords(myCoords);
102   myCoords->decrRef();
103
104   MEDCouplingUMesh *m2 = static_cast<MEDCouplingUMesh *>(m1->deepCpy());
105   m2->tessellate2DCurve(0.1);
106   CPPUNIT_ASSERT_NO_THROW(m2->checkCoherency1(0.0)); // eps param not used
107 }
108
109 /*!
110  * idem MEDCouplingBasicsTest4::testIntersect2DMeshesTmp3 except that m1 and m2 are permuted on call to MEDCouplingUMesh::Intersect2DMeshes
111  */
112 void MEDCouplingBasicsTest5::testIntersect2DMeshesTmp4()
113 {
114   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};
115   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};
116   MEDCouplingUMesh *m1=MEDCouplingUMesh::New();
117   m1->setMeshDimension(2);
118   m1->allocateCells(8);
119   m1->insertNextCell(INTERP_KERNEL::NORM_TRI6,6,m1Conn);
120   m1->insertNextCell(INTERP_KERNEL::NORM_QUAD8,8,m1Conn+6);
121   m1->insertNextCell(INTERP_KERNEL::NORM_TRI6,6,m1Conn+14);
122   m1->insertNextCell(INTERP_KERNEL::NORM_QUAD8,8,m1Conn+20);
123   m1->insertNextCell(INTERP_KERNEL::NORM_TRI6,6,m1Conn+28);
124   m1->insertNextCell(INTERP_KERNEL::NORM_QUAD8,8,m1Conn+34);
125   m1->insertNextCell(INTERP_KERNEL::NORM_TRI6,6,m1Conn+42);
126   m1->insertNextCell(INTERP_KERNEL::NORM_QUAD8,8,m1Conn+48);
127   m1->finishInsertingCells();
128   DataArrayDouble *myCoords1=DataArrayDouble::New();
129   myCoords1->alloc(25,2);
130   std::copy(m1Coords,m1Coords+50,myCoords1->getPointer());
131   m1->setCoords(myCoords1);
132   myCoords1->decrRef();
133   //
134   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.};
135   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};
136   MEDCouplingUMesh *m2=MEDCouplingUMesh::New();
137   m2->setMeshDimension(2);
138   m2->allocateCells(8);
139   for(int i=0;i<8;i++)
140     m2->insertNextCell(INTERP_KERNEL::NORM_QUAD4,4,m2Conn+4*i);
141   m2->finishInsertingCells();
142   DataArrayDouble *myCoords2=DataArrayDouble::New();
143   myCoords2->alloc(15,2);
144   std::copy(m2Coords,m2Coords+30,myCoords2->getPointer());
145   m2->setCoords(myCoords2);
146   myCoords2->decrRef();
147   //
148   DataArrayInt *d1=0,*d2=0;
149   MEDCouplingUMesh *m3=MEDCouplingUMesh::Intersect2DMeshes(m2,m1,1e-10,d1,d2);
150   m3->unPolyze();
151   const int expected1[16]={0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7};
152   const int expected2[16]={0,1,1,-1,2,3,3,-1,4,5,5,-1,6,7,7,-1};
153   CPPUNIT_ASSERT_EQUAL(16,d1->getNumberOfTuples());
154   CPPUNIT_ASSERT_EQUAL(16,d2->getNumberOfTuples());
155   CPPUNIT_ASSERT_EQUAL(16,m3->getNumberOfCells());
156   CPPUNIT_ASSERT_EQUAL(104,m3->getNumberOfNodes());
157   CPPUNIT_ASSERT_EQUAL(2,m3->getSpaceDimension());
158   CPPUNIT_ASSERT(std::equal(expected1,expected1+16,d1->getConstPointer()));
159   CPPUNIT_ASSERT(std::equal(expected2,expected2+16,d2->getConstPointer()));
160   const int expected3[136]={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,8,40,5,4,17,55,56,57,58,6,18,15,20,59,60,61,8,20,7,6,18,62,63,64,65,8,41,6,7,21,66,67,68,69,8,21,8,9,41,70,71,72,73,6,20,15,22,74,75,76,8,22,11,7,20,77,78,79,80,8,21,7,11,42,81,82,83,84,8,42,10,8,21,85,86,87,88,6,22,15,16,89,90,91,8,16,1,13,22,92,93,94,95,8,43,13,1,17,96,97,98,99,8,17,4,14,43,100,101,102,103};
161   const int expected4[17]={0,7,16,25,34,41,50,59,68,75,84,93,102,109,118,127,136};
162   const double expected5[208]={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.7071067811865475,1.3,0.,1.1,0.5,1.1090169943749475,1.,1.4012585384440737,0.535233134659635,1.4090169943749475,1.,1.7,0.5,1.6,0.,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.7071067811865478,0.7071067811865475,-1.1090169943749475,1.,-1.1,0.5,-1.3,0.,-1.4012585384440737,0.5352331346596344,-1.6,0.,-1.7,0.5,-1.4090169943749475,1.,-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.7071067811865475,-0.7071067811865477,-1.3,0.,-1.1,-0.5,-1.1090169943749475,-1.,-1.4012585384440734,-0.5352331346596354,-1.4090169943749475,-1.,-1.7,-0.5,-1.6,0.,-1.4012585384440732,-0.5352331346596354,0.,-0.5,0.5,0.,0.7071067811865475,-0.7071067811865477,1.05,0.,1.1,-0.5,0.55,-1.,0.7071067811865475,-0.7071067811865477,1.1090169943749475,-1.,1.1,-0.5,1.3,0.,1.4012585384440737,-0.535233134659635,1.6,0.,1.7,-0.5,1.4090169943749475,-1.,1.4012585384440737,-0.535233134659635};
163   CPPUNIT_ASSERT_EQUAL(136,m3->getNodalConnectivity()->getNumberOfTuples());
164   CPPUNIT_ASSERT_EQUAL(17,m3->getNodalConnectivityIndex()->getNumberOfTuples());
165   CPPUNIT_ASSERT(std::equal(expected3,expected3+136,m3->getNodalConnectivity()->getConstPointer()));
166   CPPUNIT_ASSERT(std::equal(expected4,expected4+17,m3->getNodalConnectivityIndex()->getConstPointer()));
167   for(int i=0;i<208;i++)
168     CPPUNIT_ASSERT_DOUBLES_EQUAL(expected5[i],m3->getCoords()->getIJ(0,i),1e-12);
169   d1->decrRef();
170   d2->decrRef();
171   m3->decrRef();
172   //
173   m1->decrRef();
174   m2->decrRef();
175 }
176
177 void MEDCouplingBasicsTest5::testGetCellIdsCrossingPlane1()
178 {
179   MEDCouplingUMesh *mesh2D=0;
180   MEDCouplingUMesh *mesh3D=build3DExtrudedUMesh_1(mesh2D);
181   const double vec[3]={-0.07,1.,0.07};
182   const double origin[3]={1.524,1.4552,1.74768};
183   DataArrayInt *ids1=mesh3D->getCellIdsCrossingPlane(origin,vec,1e-10);
184   CPPUNIT_ASSERT_EQUAL(9,ids1->getNumberOfTuples());
185   const int expected1[9]={1,3,4,7,9,10,13,15,16};
186   CPPUNIT_ASSERT(std::equal(expected1,expected1+9,ids1->getConstPointer()));
187   const double vec2[3]={0.,0.,1.};
188   DataArrayInt *ids2=mesh3D->getCellIdsCrossingPlane(origin,vec2,1e-10);
189   const int expected2[6]={6,7,8,9,10,11};
190   CPPUNIT_ASSERT_EQUAL(6,ids2->getNumberOfTuples());
191   CPPUNIT_ASSERT(std::equal(expected2,expected2+6,ids2->getConstPointer()));
192   ids1->decrRef();
193   ids2->decrRef();
194   mesh3D->decrRef();
195   mesh2D->decrRef();
196 }
197
198 void MEDCouplingBasicsTest5::testBuildSlice3D1()
199 {
200   MEDCouplingUMesh *mesh2D=0;
201   MEDCouplingUMesh *mesh3D=build3DExtrudedUMesh_1(mesh2D);
202   mesh2D->decrRef();
203   // First slice in the middle of 3D cells
204   const double vec1[3]={-0.07,1.,0.07};
205   const double origin1[3]={1.524,1.4552,1.74768};
206   DataArrayInt *ids=0;
207   MEDCouplingUMesh *slice1=mesh3D->buildSlice3D(origin1,vec1,1e-10,ids);
208   const int expected1[9]={1,3,4,7,9,10,13,15,16};
209   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};
210   const int expected3[10]={0,6,11,17,22,27,32,37,42,47};
211   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.};
212   CPPUNIT_ASSERT_EQUAL(2,slice1->getMeshDimension());
213   CPPUNIT_ASSERT_EQUAL(3,slice1->getSpaceDimension());
214   CPPUNIT_ASSERT_EQUAL(57,slice1->getNumberOfNodes());
215   CPPUNIT_ASSERT_EQUAL(9,slice1->getNumberOfCells());
216   CPPUNIT_ASSERT_EQUAL(9,ids->getNumberOfTuples());
217   CPPUNIT_ASSERT_EQUAL(47,slice1->getNodalConnectivity()->getNumberOfTuples());
218   CPPUNIT_ASSERT_EQUAL(10,slice1->getNodalConnectivityIndex()->getNumberOfTuples());
219   CPPUNIT_ASSERT(std::equal(expected1,expected1+9,ids->getConstPointer()));
220   CPPUNIT_ASSERT(std::equal(expected2,expected2+47,slice1->getNodalConnectivity()->getConstPointer()));
221   CPPUNIT_ASSERT(std::equal(expected3,expected3+10,slice1->getNodalConnectivityIndex()->getConstPointer()));
222   for(int i=0;i<171;i++)
223     CPPUNIT_ASSERT_DOUBLES_EQUAL(expected4[i],slice1->getCoords()->getIJ(0,i),1e-12);
224   ids->decrRef();
225   slice1->decrRef();
226   // 2nd slice based on already existing nodes of mesh3D.
227   const double vec2[3]={0.,3.,1.};
228   const double origin2[3]={2.5,1.,3.};
229   slice1=mesh3D->buildSlice3D(origin2,vec2,1e-10,ids);
230   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};
231   const int expected6[10]={0,5,10,15,21,26,32,38,43,49};
232   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};
233   CPPUNIT_ASSERT_EQUAL(2,slice1->getMeshDimension());
234   CPPUNIT_ASSERT_EQUAL(3,slice1->getSpaceDimension());
235   CPPUNIT_ASSERT_EQUAL(60,slice1->getNumberOfNodes());
236   CPPUNIT_ASSERT_EQUAL(9,slice1->getNumberOfCells());
237   CPPUNIT_ASSERT_EQUAL(9,ids->getNumberOfTuples());
238   CPPUNIT_ASSERT_EQUAL(49,slice1->getNodalConnectivity()->getNumberOfTuples());
239   CPPUNIT_ASSERT_EQUAL(10,slice1->getNodalConnectivityIndex()->getNumberOfTuples());
240   CPPUNIT_ASSERT(std::equal(expected1,expected1+9,ids->getConstPointer()));
241   CPPUNIT_ASSERT(std::equal(expected5,expected5+49,slice1->getNodalConnectivity()->getConstPointer()));
242   CPPUNIT_ASSERT(std::equal(expected6,expected6+10,slice1->getNodalConnectivityIndex()->getConstPointer()));
243   for(int i=0;i<180;i++)
244     CPPUNIT_ASSERT_DOUBLES_EQUAL(expected7[i],slice1->getCoords()->getIJ(0,i),1e-12);
245   ids->decrRef();
246   slice1->decrRef();
247   // 3rd slice based on shared face of mesh3D.
248   const double vec3[3]={0.,0.,1.};
249   const double origin3[3]={2.5,1.,2.};
250   slice1=mesh3D->buildSlice3D(origin3,vec3,1e-10,ids);
251   const int expected8[12]={6,7,8,9,10,11,12,13,14,15,16,17};
252   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};
253   const int expected10[13]={0,5,12,17,22,29,34,39,46,51,56,63,68};
254   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.};
255   CPPUNIT_ASSERT_EQUAL(2,slice1->getMeshDimension());
256   CPPUNIT_ASSERT_EQUAL(3,slice1->getSpaceDimension());
257   CPPUNIT_ASSERT_EQUAL(45,slice1->getNumberOfNodes());
258   CPPUNIT_ASSERT_EQUAL(12,slice1->getNumberOfCells());
259   CPPUNIT_ASSERT_EQUAL(12,ids->getNumberOfTuples());
260   CPPUNIT_ASSERT_EQUAL(68,slice1->getNodalConnectivity()->getNumberOfTuples());
261   CPPUNIT_ASSERT_EQUAL(13,slice1->getNodalConnectivityIndex()->getNumberOfTuples());
262   CPPUNIT_ASSERT(std::equal(expected8,expected8+12,ids->getConstPointer()));
263   CPPUNIT_ASSERT(std::equal(expected9,expected9+68,slice1->getNodalConnectivity()->getConstPointer()));
264   CPPUNIT_ASSERT(std::equal(expected10,expected10+13,slice1->getNodalConnectivityIndex()->getConstPointer()));
265   for(int i=0;i<135;i++)
266     CPPUNIT_ASSERT_DOUBLES_EQUAL(expected11[i],slice1->getCoords()->getIJ(0,i),1e-12);
267   ids->decrRef();
268   slice1->decrRef();
269   //
270   mesh3D->decrRef();
271 }
272
273 void MEDCouplingBasicsTest5::testBuildSlice3DSurf1()
274 {
275   MEDCouplingUMesh *mesh2D=0;
276   MEDCouplingUMesh *mesh3D=build3DExtrudedUMesh_1(mesh2D);
277   mesh2D->decrRef();
278   DataArrayInt *a=DataArrayInt::New(),*b=DataArrayInt::New(),*c=DataArrayInt::New(),*d=DataArrayInt::New();
279   mesh2D=mesh3D->buildDescendingConnectivity(a,b,c,d);
280   a->decrRef(); b->decrRef(); c->decrRef(); d->decrRef();
281   mesh3D->decrRef();
282   //
283   const double vec1[3]={-0.07,1.,0.07};
284   const double origin1[3]={1.524,1.4552,1.74768};
285   DataArrayInt *ids=0;
286   MEDCouplingUMesh *slice1=mesh2D->buildSlice3DSurf(origin1,vec1,1e-10,ids);
287   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};
288   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};
289   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};
290   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.};
291   CPPUNIT_ASSERT_EQUAL(1,slice1->getMeshDimension());
292   CPPUNIT_ASSERT_EQUAL(3,slice1->getSpaceDimension());
293   CPPUNIT_ASSERT_EQUAL(57,slice1->getNumberOfNodes());
294   CPPUNIT_ASSERT_EQUAL(25,slice1->getNumberOfCells());
295   CPPUNIT_ASSERT_EQUAL(25,ids->getNumberOfTuples());
296   CPPUNIT_ASSERT_EQUAL(75,slice1->getNodalConnectivity()->getNumberOfTuples());
297   CPPUNIT_ASSERT_EQUAL(26,slice1->getNodalConnectivityIndex()->getNumberOfTuples());
298   CPPUNIT_ASSERT(std::equal(expected1,expected1+25,ids->getConstPointer()));
299   CPPUNIT_ASSERT(std::equal(expected2,expected2+47,slice1->getNodalConnectivity()->getConstPointer()));
300   CPPUNIT_ASSERT(std::equal(expected3,expected3+26,slice1->getNodalConnectivityIndex()->getConstPointer()));
301   for(int i=0;i<171;i++)
302     CPPUNIT_ASSERT_DOUBLES_EQUAL(expected4[i],slice1->getCoords()->getIJ(0,i),1e-12);
303   ids->decrRef();
304   slice1->decrRef();
305   //
306   const double vec2[3]={0.,0.,1.};
307   const double origin2[3]={2.5,1.,2.};
308   slice1=mesh2D->buildSlice3DSurf(origin2,vec2,1e-10,ids);
309   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};
310   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};
311   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};
312   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.};
313   CPPUNIT_ASSERT_EQUAL(1,slice1->getMeshDimension());
314   CPPUNIT_ASSERT_EQUAL(3,slice1->getSpaceDimension());
315   CPPUNIT_ASSERT_EQUAL(45,slice1->getNumberOfNodes());
316   CPPUNIT_ASSERT_EQUAL(68,slice1->getNumberOfCells());
317   CPPUNIT_ASSERT_EQUAL(68,ids->getNumberOfTuples());
318   CPPUNIT_ASSERT_EQUAL(204,slice1->getNodalConnectivity()->getNumberOfTuples());
319   CPPUNIT_ASSERT_EQUAL(69,slice1->getNodalConnectivityIndex()->getNumberOfTuples());
320   CPPUNIT_ASSERT(std::equal(expected5,expected5+68,ids->getConstPointer()));
321   CPPUNIT_ASSERT(std::equal(expected6,expected6+171,slice1->getNodalConnectivity()->getConstPointer()));
322   CPPUNIT_ASSERT(std::equal(expected7,expected7+69,slice1->getNodalConnectivityIndex()->getConstPointer()));
323   for(int i=0;i<135;i++)
324     CPPUNIT_ASSERT_DOUBLES_EQUAL(expected8[i],slice1->getCoords()->getIJ(0,i),1e-12);
325   ids->decrRef();
326   slice1->decrRef();
327   //
328   mesh2D->decrRef();
329 }
330
331 void MEDCouplingBasicsTest5::testDataArrayDoubleAdvSetting1()
332 {
333   const double data1[14]={1.,11.,2.,12.,3.,13.,4.,14.,5.,15.,6.,16.,7.,17.};
334   const double data2[10]={8.,38.,9.,39.,0.,30.,11.,41.,12.,42.};
335   const char *comps[2]={"comp1","comp2"};
336   std::vector<std::string> compsCpp(comps,comps+2);
337   DataArrayDouble *da=DataArrayDouble::New();
338   DataArrayDouble *tmp=0;
339   da->setInfoAndChangeNbOfCompo(compsCpp);
340   da->setName("da");
341   da->alloc(7,2);
342   compsCpp.pop_back();
343   CPPUNIT_ASSERT_THROW(da->setInfoAndChangeNbOfCompo(compsCpp),INTERP_KERNEL::Exception);
344   std::copy(data1,data1+14,da->getPointer());
345   //
346   std::vector<std::pair<int,int> > p(3);
347   p[0].first=0; p[0].second=3; p[1].first=3; p[1].second=5; p[2].first=5; p[2].second=7;
348   tmp=dynamic_cast<DataArrayDouble *>(da->selectByTupleRanges(p));
349   CPPUNIT_ASSERT(tmp->isEqual(*da,1e-14));
350   tmp->decrRef();
351   p[0].first=0; p[0].second=2; p[1].first=3; p[1].second=4; p[2].first=5; p[2].second=7;
352   tmp=dynamic_cast<DataArrayDouble *>(da->selectByTupleRanges(p));
353   const double expected1[10]={1.,11.,2.,12.,4.,14.,6.,16.,7.,17.};
354   CPPUNIT_ASSERT_EQUAL(5,tmp->getNumberOfTuples());
355   CPPUNIT_ASSERT_EQUAL(2,tmp->getNumberOfComponents());
356   for(int i=0;i<10;i++)
357     CPPUNIT_ASSERT_DOUBLES_EQUAL(expected1[i],tmp->getIJ(0,i),1e-14);
358   tmp->decrRef();
359   p[0].first=0; p[0].second=2; p[1].first=0; p[1].second=2; p[2].first=5; p[2].second=6;
360   tmp=dynamic_cast<DataArrayDouble *>(da->selectByTupleRanges(p));
361   const double expected2[10]={1.,11.,2.,12.,1.,11.,2.,12.,6.,16.};
362   CPPUNIT_ASSERT_EQUAL(5,tmp->getNumberOfTuples());
363   CPPUNIT_ASSERT_EQUAL(2,tmp->getNumberOfComponents());
364   for(int i=0;i<10;i++)
365     CPPUNIT_ASSERT_DOUBLES_EQUAL(expected2[i],tmp->getIJ(0,i),1e-14);
366   tmp->decrRef();
367   p[0].first=0; p[0].second=2; p[1].first=-1; p[1].second=2; p[2].first=5; p[2].second=6;
368   CPPUNIT_ASSERT_THROW(da->selectByTupleRanges(p),INTERP_KERNEL::Exception);
369   p[0].first=0; p[0].second=2; p[1].first=0; p[1].second=2; p[2].first=5; p[2].second=8;
370   CPPUNIT_ASSERT_THROW(da->selectByTupleRanges(p),INTERP_KERNEL::Exception);
371   //
372   DataArrayDouble *da2=DataArrayDouble::New();
373   da2->alloc(5,2);
374   std::copy(data2,data2+10,da2->getPointer());
375   //
376   DataArrayDouble *dac=da->deepCpy();
377   dac->setContigPartOfSelectedValues2(1,da2,2,4,1);
378   const double expected3[14]={1.,11.,0.,30.,11.,41.,4.,14.,5.,15.,6.,16.,7.,17.};
379   for(int i=0;i<14;i++)
380     CPPUNIT_ASSERT_DOUBLES_EQUAL(expected3[i],dac->getIJ(0,i),1e-14);
381   dac->decrRef();
382   //
383   dac=da->deepCpy();
384   CPPUNIT_ASSERT_THROW(dac->setContigPartOfSelectedValues2(3,da2,0,5,1),INTERP_KERNEL::Exception);
385   CPPUNIT_ASSERT_THROW(dac->setContigPartOfSelectedValues2(0,da2,4,6,1),INTERP_KERNEL::Exception);
386   CPPUNIT_ASSERT_THROW(dac->setContigPartOfSelectedValues2(3,da2,5,0,1),INTERP_KERNEL::Exception);
387   dac->setContigPartOfSelectedValues2(3,da2,1,5,1);
388   const double expected4[14]={1.,11.,2.,12.,3.,13.,9.,39.,0.,30.,11.,41.,12.,42.};
389   for(int i=0;i<14;i++)
390     CPPUNIT_ASSERT_DOUBLES_EQUAL(expected4[i],dac->getIJ(0,i),1e-14);
391   dac->decrRef();
392   //
393   DataArrayInt *ids=DataArrayInt::New();
394   ids->alloc(3,1);
395   dac=da->deepCpy();
396   ids->setIJ(0,0,2); ids->setIJ(1,0,0); ids->setIJ(2,0,4);
397   dac->setContigPartOfSelectedValues(2,da2,ids);
398   const double expected5[14]={1.,11.,2.,12.,0.,30.,8.,38.,12.,42.,6.,16.,7.,17.};
399   for(int i=0;i<14;i++)
400     CPPUNIT_ASSERT_DOUBLES_EQUAL(expected5[i],dac->getIJ(0,i),1e-14);
401   dac->decrRef();
402   //
403   dac=da->deepCpy();
404   ids->setIJ(0,0,2); ids->setIJ(1,0,5); ids->setIJ(2,0,4);
405   CPPUNIT_ASSERT_THROW(dac->setContigPartOfSelectedValues(1,da2,ids),INTERP_KERNEL::Exception);
406   ids->setIJ(0,0,2); ids->setIJ(1,0,2); ids->setIJ(2,0,-1);
407   CPPUNIT_ASSERT_THROW(dac->setContigPartOfSelectedValues(1,da2,ids),INTERP_KERNEL::Exception);
408   ids->setIJ(0,0,2); ids->setIJ(1,0,2); ids->setIJ(2,0,1);
409   CPPUNIT_ASSERT_THROW(dac->setContigPartOfSelectedValues(5,da2,ids),INTERP_KERNEL::Exception);
410   dac->decrRef();
411   //
412   ids->setIJ(0,0,2); ids->setIJ(1,0,2); ids->setIJ(2,0,1);
413   dac=da->deepCpy();
414   dac->setContigPartOfSelectedValues(4,da2,ids);
415   const double expected6[14]={1.,11.,2.,12.,3.,13.,4.,14.,0.,30.,0.,30.,9.,39.};
416   for(int i=0;i<14;i++)
417     CPPUNIT_ASSERT_DOUBLES_EQUAL(expected6[i],dac->getIJ(0,i),1e-14);
418   dac->decrRef();
419   ids->decrRef();
420   //
421   da2->decrRef();
422   da->decrRef();
423 }
424
425 void MEDCouplingBasicsTest5::testDataArrayIntAdvSetting1()
426 {
427   const int data1[14]={1,11,2,12,3,13,4,14,5,15,6,16,7,17};
428   const int data2[10]={8,38,9,39,0,30,11,41,12,42};
429   const char *comps[2]={"comp1","comp2"};
430   std::vector<std::string> compsCpp(comps,comps+2);
431   DataArrayInt *da=DataArrayInt::New();
432   DataArrayInt *tmp=0;
433   da->setInfoAndChangeNbOfCompo(compsCpp);
434   da->setName("da");
435   da->alloc(7,2);
436   compsCpp.pop_back();
437   CPPUNIT_ASSERT_THROW(da->setInfoAndChangeNbOfCompo(compsCpp),INTERP_KERNEL::Exception);
438   std::copy(data1,data1+14,da->getPointer());
439   //
440   std::vector<std::pair<int,int> > p(3);
441   p[0].first=0; p[0].second=3; p[1].first=3; p[1].second=5; p[2].first=5; p[2].second=7;
442   tmp=dynamic_cast<DataArrayInt *>(da->selectByTupleRanges(p));
443   CPPUNIT_ASSERT(tmp->isEqual(*da));
444   tmp->decrRef();
445   p[0].first=0; p[0].second=2; p[1].first=3; p[1].second=4; p[2].first=5; p[2].second=7;
446   tmp=dynamic_cast<DataArrayInt *>(da->selectByTupleRanges(p));
447   const int expected1[10]={1,11,2,12,4,14,6,16,7,17};
448   CPPUNIT_ASSERT_EQUAL(5,tmp->getNumberOfTuples());
449   CPPUNIT_ASSERT_EQUAL(2,tmp->getNumberOfComponents());
450   for(int i=0;i<10;i++)
451     CPPUNIT_ASSERT_EQUAL(expected1[i],tmp->getIJ(0,i));
452   tmp->decrRef();
453   p[0].first=0; p[0].second=2; p[1].first=0; p[1].second=2; p[2].first=5; p[2].second=6;
454   tmp=dynamic_cast<DataArrayInt *>(da->selectByTupleRanges(p));
455   const int expected2[10]={1,11,2,12,1,11,2,12,6,16};
456   CPPUNIT_ASSERT_EQUAL(5,tmp->getNumberOfTuples());
457   CPPUNIT_ASSERT_EQUAL(2,tmp->getNumberOfComponents());
458   for(int i=0;i<10;i++)
459     CPPUNIT_ASSERT_EQUAL(expected2[i],tmp->getIJ(0,i));
460   tmp->decrRef();
461   p[0].first=0; p[0].second=2; p[1].first=-1; p[1].second=2; p[2].first=5; p[2].second=6;
462   CPPUNIT_ASSERT_THROW(da->selectByTupleRanges(p),INTERP_KERNEL::Exception);
463   p[0].first=0; p[0].second=2; p[1].first=0; p[1].second=2; p[2].first=5; p[2].second=8;
464   CPPUNIT_ASSERT_THROW(da->selectByTupleRanges(p),INTERP_KERNEL::Exception);
465   //
466   DataArrayInt *da2=DataArrayInt::New();
467   da2->alloc(5,2);
468   std::copy(data2,data2+10,da2->getPointer());
469   //
470   DataArrayInt *dac=da->deepCpy();
471   dac->setContigPartOfSelectedValues2(1,da2,2,4,1);
472   const int expected3[14]={1,11,0,30,11,41,4,14,5,15,6,16,7,17};
473   for(int i=0;i<14;i++)
474     CPPUNIT_ASSERT_EQUAL(expected3[i],dac->getIJ(0,i));
475   dac->decrRef();
476   //
477   dac=da->deepCpy();
478   CPPUNIT_ASSERT_THROW(dac->setContigPartOfSelectedValues2(3,da2,0,5,1),INTERP_KERNEL::Exception);
479   CPPUNIT_ASSERT_THROW(dac->setContigPartOfSelectedValues2(0,da2,4,6,1),INTERP_KERNEL::Exception);
480   CPPUNIT_ASSERT_THROW(dac->setContigPartOfSelectedValues2(3,da2,5,0,1),INTERP_KERNEL::Exception);
481   dac->setContigPartOfSelectedValues2(3,da2,1,5,1);
482   const int expected4[14]={1,11,2,12,3,13,9,39,0,30,11,41,12,42};
483   for(int i=0;i<14;i++)
484     CPPUNIT_ASSERT_EQUAL(expected4[i],dac->getIJ(0,i));
485   dac->decrRef();
486   //
487   DataArrayInt *ids=DataArrayInt::New();
488   ids->alloc(3,1);
489   dac=da->deepCpy();
490   ids->setIJ(0,0,2); ids->setIJ(1,0,0); ids->setIJ(2,0,4);
491   dac->setContigPartOfSelectedValues(2,da2,ids);
492   const int expected5[14]={1,11,2,12,0,30,8,38,12,42,6,16,7,17};
493   for(int i=0;i<14;i++)
494     CPPUNIT_ASSERT_EQUAL(expected5[i],dac->getIJ(0,i));
495   dac->decrRef();
496   //
497   dac=da->deepCpy();
498   ids->setIJ(0,0,2); ids->setIJ(1,0,5); ids->setIJ(2,0,4);
499   CPPUNIT_ASSERT_THROW(dac->setContigPartOfSelectedValues(1,da2,ids),INTERP_KERNEL::Exception);
500   ids->setIJ(0,0,2); ids->setIJ(1,0,2); ids->setIJ(2,0,-1);
501   CPPUNIT_ASSERT_THROW(dac->setContigPartOfSelectedValues(1,da2,ids),INTERP_KERNEL::Exception);
502   ids->setIJ(0,0,2); ids->setIJ(1,0,2); ids->setIJ(2,0,1);
503   CPPUNIT_ASSERT_THROW(dac->setContigPartOfSelectedValues(5,da2,ids),INTERP_KERNEL::Exception);
504   dac->decrRef();
505   //
506   ids->setIJ(0,0,2); ids->setIJ(1,0,2); ids->setIJ(2,0,1);
507   dac=da->deepCpy();
508   dac->setContigPartOfSelectedValues(4,da2,ids);
509   const int expected6[14]={1,11,2,12,3,13,4,14,0,30,0,30,9,39};
510   for(int i=0;i<14;i++)
511     CPPUNIT_ASSERT_EQUAL(expected6[i],dac->getIJ(0,i));
512   dac->decrRef();
513   ids->decrRef();
514   //
515   da2->decrRef();
516   da->decrRef();
517 }
518
519 void MEDCouplingBasicsTest5::testBuildDescendingConnec2Of3DMesh1()
520 {
521   MEDCouplingUMesh *mesh=build3DSourceMesh_1();
522   DataArrayInt *desc=DataArrayInt::New();
523   DataArrayInt *descIndx=DataArrayInt::New();
524   DataArrayInt *revDesc=DataArrayInt::New();
525   DataArrayInt *revDescIndx=DataArrayInt::New();
526   //
527   MEDCouplingUMesh *mesh2=mesh->buildDescendingConnectivity2(desc,descIndx,revDesc,revDescIndx);
528   mesh2->checkCoherency();
529   CPPUNIT_ASSERT_EQUAL(2,mesh2->getMeshDimension());
530   CPPUNIT_ASSERT_EQUAL(30,mesh2->getNumberOfCells());
531   CPPUNIT_ASSERT_EQUAL((std::size_t)31,revDescIndx->getNbOfElems()); CPPUNIT_ASSERT_EQUAL(31,revDescIndx->getNumberOfTuples());
532   CPPUNIT_ASSERT_EQUAL((std::size_t)13,descIndx->getNbOfElems()); CPPUNIT_ASSERT_EQUAL(13,descIndx->getNumberOfTuples());
533   CPPUNIT_ASSERT_EQUAL((std::size_t)48,desc->getNbOfElems()); CPPUNIT_ASSERT_EQUAL(48,desc->getNumberOfTuples());
534   CPPUNIT_ASSERT_EQUAL((std::size_t)48,revDesc->getNbOfElems()); CPPUNIT_ASSERT_EQUAL(48,revDesc->getNumberOfTuples());
535   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};
536   CPPUNIT_ASSERT(std::equal(expected1,expected1+48,desc->getConstPointer()));
537   const int expected2[13]={0,4,8,12,16,20,24,28,32,36,40,44,48};
538   CPPUNIT_ASSERT(std::equal(expected2,expected2+13,descIndx->getConstPointer()));
539   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};
540   CPPUNIT_ASSERT(std::equal(expected3,expected3+31,revDescIndx->getConstPointer()));
541   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};
542   CPPUNIT_ASSERT(std::equal(expected4,expected4+48,revDesc->getConstPointer()));
543   DataArrayInt *conn=mesh2->getNodalConnectivity();
544   DataArrayInt *connIndex=mesh2->getNodalConnectivityIndex();
545   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};
546   CPPUNIT_ASSERT(std::equal(expected5,expected5+31,connIndex->getConstPointer()));
547   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};
548   CPPUNIT_ASSERT(std::equal(expected6,expected6+120,conn->getConstPointer()));
549   //
550   desc->decrRef();
551   descIndx->decrRef();
552   revDesc->decrRef();
553   revDescIndx->decrRef();
554   mesh2->decrRef();
555   mesh->decrRef();
556 }
557
558 void MEDCouplingBasicsTest5::testAre2DCellsNotCorrectlyOriented1()
559 {
560   double m1Coords[8]={1.,1.,-1.,-1.,-1.,-1.,1.,-1.};
561   int m1Conn[4]={0,3,1,2};
562   MEDCouplingUMesh *m1=MEDCouplingUMesh::New();
563   m1->setMeshDimension(2);
564   m1->allocateCells(1);
565   m1->insertNextCell(INTERP_KERNEL::NORM_QUAD4,4,m1Conn);
566   m1->finishInsertingCells();
567   DataArrayDouble *myCoords1=DataArrayDouble::New();
568   myCoords1->alloc(4,2);
569   std::copy(m1Coords,m1Coords+8,myCoords1->getPointer());
570   m1->setCoords(myCoords1);
571   myCoords1->decrRef();
572   //
573   double vec1[3]={0.,0.,1.};
574   double *vec2=new double[2];
575   for(int i=0;i<18;i++)
576     {
577       vec2[0]=3.*cos(M_PI/9.*i);
578       vec2[1]=3.*sin(M_PI/9.*i);
579       MEDCouplingUMesh *m1Cpy=static_cast<MEDCouplingUMesh *>(m1->deepCpy());
580       m1Cpy->translate(vec2);
581       std::vector<int> res;
582       CPPUNIT_ASSERT_THROW(m1Cpy->are2DCellsNotCorrectlyOriented(vec1,false,res),INTERP_KERNEL::Exception);
583       res.clear();
584       m1Cpy->changeSpaceDimension(3);
585       m1Cpy->are2DCellsNotCorrectlyOriented(vec1,false,res);
586       CPPUNIT_ASSERT_EQUAL(1,(int)res.size());
587       CPPUNIT_ASSERT_EQUAL(0,res[0]);
588       m1Cpy->decrRef();
589     }
590   delete [] vec2;
591   //
592   m1->decrRef();
593 }
594
595 void MEDCouplingBasicsTest5::testDataArrayAbs1()
596 {
597   DataArrayDouble *d1=DataArrayDouble::New();
598   const double val1[12]={2.,-3.,-5.,6.,-7.,-8.,9.,10.,-11.,-12.,-13.,-15.};
599   const double expected1[12]={2.,3.,5.,6.,7.,8.,9.,10.,11.,12.,13.,15.};
600   d1->alloc(6,2);
601   std::copy(val1,val1+12,d1->getPointer());
602   DataArrayInt *d2=d1->convertToIntArr();
603   //
604   d1->abs();
605   for(int i=0;i<12;i++)
606     CPPUNIT_ASSERT_DOUBLES_EQUAL(expected1[i],d1->getIJ(0,i),1e-14);
607   //
608   const int expected2[12]={2,3,5,6,7,8,9,10,11,12,13,15};
609   d2->abs();
610   for(int i=0;i<12;i++)
611     CPPUNIT_ASSERT_EQUAL(expected2[i],d2->getIJ(0,i));
612   //
613   d2->decrRef();
614   d1->decrRef();
615 }
616
617 void MEDCouplingBasicsTest5::testGetValueOn3()
618 {
619   const double v[4]={0.,1.,1.5,2.};
620   const double v2[5]={0.7,1.25,0.,2.,1.5};
621   const double disp[12]={5.,50.,500.,6.,60.,600.,7.,70.,700.,8.,80.,800.};
622   MEDCouplingUMesh *m=MEDCouplingUMesh::New("myMesh",1);
623   const int nbNodes=4;
624   const int nbCells=nbNodes-1;
625   m->allocateCells(nbCells);
626   DataArrayDouble *coords=DataArrayDouble::New();
627   coords->alloc(nbNodes,1);
628   std::copy(v,v+nbNodes,coords->getPointer());
629   m->setCoords(coords);
630   coords->decrRef();
631   const int conn[6]={0,1,2,1,2,3};
632   m->insertNextCell(INTERP_KERNEL::NORM_SEG2,2,conn);
633   m->insertNextCell(INTERP_KERNEL::NORM_SEG2,2,conn+2);
634   m->insertNextCell(INTERP_KERNEL::NORM_SEG2,2,conn+4);
635   m->finishInsertingCells();
636   MEDCouplingFieldDouble *f=MEDCouplingFieldDouble::New(ON_NODES);
637   f->setMesh(m);
638   DataArrayDouble *array=DataArrayDouble::New();
639   array->alloc(m->getNumberOfNodes(),3);
640   std::copy(disp,disp+12,array->getPointer());
641   f->setArray(array);
642   array->decrRef();
643   DataArrayDouble *arr1=f->getValueOnMulti(v2,5);
644   CPPUNIT_ASSERT_EQUAL(5,arr1->getNumberOfTuples());
645   CPPUNIT_ASSERT_EQUAL(3,arr1->getNumberOfComponents());
646   const double expected1[15]={5.7,57.,570.,6.5,65.,650.,5.,50.,500.,8.,80.,800.,7.,70.,700.};
647   for(int i=0;i<15;i++)
648     CPPUNIT_ASSERT_DOUBLES_EQUAL(expected1[i],arr1->getIJ(0,i),1e-14);
649   arr1->decrRef();
650   f->decrRef();
651   m->decrRef();
652 }
653
654 void MEDCouplingBasicsTest5::testGetNodeIdsOfCell2()
655 {
656   MEDCouplingCMesh *m1c=MEDCouplingCMesh::New();
657   DataArrayDouble *coordsX=DataArrayDouble::New();
658   double arrX[5] = { -1., 1., 2., 4., 4.5 };
659   coordsX->useArray(arrX,false, CPP_DEALLOC,5,1);
660   DataArrayDouble *coordsY=DataArrayDouble::New();
661   double arrY[4] = { -2., 2., 4., 8. };
662   coordsY->useArray(arrY,false, CPP_DEALLOC,4,1);
663   DataArrayDouble *coordsZ=DataArrayDouble::New();
664   double arrZ[3] = { -2., 2., 4. };
665   coordsZ->useArray(arrZ,false, CPP_DEALLOC,3,1);  
666   // test in 1D
667   m1c->setCoordsAt(0,coordsX);
668   CPPUNIT_ASSERT_EQUAL(4,m1c->getNumberOfCells());
669   const int expected1[4][2]={{0,1},{1,2},{2,3},{3,4}};
670   for(int i=0;i<4;i++)
671     {
672       std::vector<int> v;
673       m1c->getNodeIdsOfCell(i,v);
674       CPPUNIT_ASSERT((int)v.size()==2);
675       std::equal(v.begin(),v.end(),expected1[i]);
676     }
677   // test in 2D
678   m1c->setCoordsAt(1,coordsY);
679   CPPUNIT_ASSERT_EQUAL(12,m1c->getNumberOfCells());
680   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}};
681   for(int i=0;i<12;i++)
682     {
683       std::vector<int> v;
684       m1c->getNodeIdsOfCell(i,v);
685       CPPUNIT_ASSERT((int)v.size()==4);
686       std::equal(v.begin(),v.end(),expected2[i]);
687     }
688   // test in 3D
689   m1c->setCoordsAt(2,coordsZ);
690   CPPUNIT_ASSERT_EQUAL(24,m1c->getNumberOfCells());
691   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}};
692   for(int i=0;i<12;i++)
693     {
694       std::vector<int> v;
695       m1c->getNodeIdsOfCell(i,v);
696       CPPUNIT_ASSERT((int)v.size()==8);
697       std::equal(v.begin(),v.end(),expected3[i]);
698     }
699   //
700   coordsX->decrRef();
701   coordsY->decrRef();
702   coordsZ->decrRef();
703   m1c->decrRef();
704 }
705
706 void MEDCouplingBasicsTest5::testRenumberNodesInConn1()
707 {
708   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. };
709   int mesh2DConn[18]={1,4,2, 4,5,2, 0,3,4,1, 6,7,4,3, 7,8,5,4};
710   MEDCouplingUMesh *mesh2D=MEDCouplingUMesh::New("mesh",2);
711   mesh2D->allocateCells(5);
712   mesh2D->insertNextCell(INTERP_KERNEL::NORM_TRI3,3,mesh2DConn);
713   mesh2D->insertNextCell(INTERP_KERNEL::NORM_TRI3,3,mesh2DConn+3);
714   mesh2D->insertNextCell(INTERP_KERNEL::NORM_QUAD4,4,mesh2DConn+6);
715   mesh2D->insertNextCell(INTERP_KERNEL::NORM_QUAD4,4,mesh2DConn+10);
716   mesh2D->insertNextCell(INTERP_KERNEL::NORM_QUAD4,4,mesh2DConn+14);
717   mesh2D->finishInsertingCells();
718   DataArrayDouble *myCoords=DataArrayDouble::New();
719   myCoords->alloc(9,3);
720   std::copy(mesh2DCoords,mesh2DCoords+27,myCoords->getPointer());
721   mesh2D->setCoords(myCoords);
722   myCoords->decrRef();
723   mesh2D->checkCoherency();
724   //
725   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. };
726   int mesh3DConn[8]={0,1,2,3,4,5,6,7};
727   MEDCouplingUMesh *mesh3D=MEDCouplingUMesh::New("mesh",3);
728   mesh3D->allocateCells(1);
729   mesh3D->insertNextCell(INTERP_KERNEL::NORM_HEXA8,8,mesh3DConn);
730   mesh3D->finishInsertingCells();
731   DataArrayDouble *myCoords3D=DataArrayDouble::New();
732   myCoords3D->alloc(8,3);
733   std::copy(mesh3DCoords,mesh3DCoords+24,myCoords3D->getPointer());
734   mesh3D->setCoords(myCoords3D);
735   myCoords3D->decrRef();
736   mesh3D->checkCoherency();
737   //
738   MEDCouplingUMesh *mesh3D_2=dynamic_cast<MEDCouplingUMesh *>(mesh3D->deepCpy());
739   MEDCouplingUMesh *mesh2D_2=dynamic_cast<MEDCouplingUMesh *>(mesh2D->deepCpy());
740   MEDCouplingUMesh *mesh3D_4=dynamic_cast<MEDCouplingUMesh *>(mesh3D->deepCpy());
741   MEDCouplingUMesh *mesh2D_4=dynamic_cast<MEDCouplingUMesh *>(mesh2D->deepCpy());
742   DataArrayInt *renumNodes=DataArrayInt::New();
743   int oldNbOf3DNodes=mesh3D->getNumberOfNodes();
744   renumNodes->alloc(mesh2D->getNumberOfNodes(),1);
745   renumNodes->iota(oldNbOf3DNodes);
746   DataArrayDouble *coo=DataArrayDouble::Aggregate(mesh3D->getCoords(),mesh2D->getCoords());
747   mesh3D->setCoords(coo);
748   mesh2D->setCoords(coo);
749   coo->decrRef();
750   MEDCouplingUMesh *mesh2D_3=dynamic_cast<MEDCouplingUMesh *>(mesh2D->deepCpy());
751   mesh2D_3->shiftNodeNumbersInConn(oldNbOf3DNodes);
752   mesh2D->renumberNodesInConn(renumNodes->getConstPointer());
753   renumNodes->decrRef();
754   CPPUNIT_ASSERT(mesh2D_3->isEqual(mesh2D,1e-12));
755   mesh2D_3->decrRef();
756   //
757   DataArrayInt *da1,*da2;
758   mesh3D->checkGeoEquivalWith(mesh3D_2,10,1e-12,da1,da2);
759   CPPUNIT_ASSERT(da1==0);
760   CPPUNIT_ASSERT_EQUAL(8,da2->getNumberOfTuples());
761   CPPUNIT_ASSERT_EQUAL(1,da2->getNumberOfComponents());
762   const int expected1[8]={8,11,12,9,4,5,6,7};
763   for(int i=0;i<8;i++)
764     CPPUNIT_ASSERT_EQUAL(expected1[i],da2->getIJ(i,0));
765   da2->decrRef();
766   //
767   mesh2D->checkGeoEquivalWith(mesh2D_2,10,1e-12,da1,da2);
768   CPPUNIT_ASSERT(da1==0);
769   CPPUNIT_ASSERT_EQUAL(9,da2->getNumberOfTuples());
770   CPPUNIT_ASSERT_EQUAL(1,da2->getNumberOfComponents());
771   for(int i=0;i<9;i++)
772     CPPUNIT_ASSERT_EQUAL(8+i,da2->getIJ(i,0));
773   da2->decrRef();
774   //
775   const double vect[3]={1.,0.,0.};
776   MEDCouplingUMesh *mesh2D_5=dynamic_cast<MEDCouplingUMesh *>(mesh2D_4->deepCpy());
777   mesh2D_5->translate(vect);
778   std::vector<MEDCouplingUMesh *> meshes(3);
779   meshes[0]=mesh3D_4; meshes[1]=mesh2D_4; meshes[2]=mesh2D_5;
780   MEDCouplingUMesh::PutUMeshesOnSameAggregatedCoords(meshes);
781   CPPUNIT_ASSERT(mesh3D_4->getCoords()==mesh2D_4->getCoords());
782   CPPUNIT_ASSERT(mesh2D_4->getCoords()==mesh2D_5->getCoords());
783   mesh3D_4->checkCoherency(); mesh2D_4->checkCoherency(); mesh2D_5->checkCoherency();
784   CPPUNIT_ASSERT_EQUAL(26,mesh3D_4->getNumberOfNodes());
785   CPPUNIT_ASSERT_EQUAL(3,mesh3D_4->getSpaceDimension());
786   CPPUNIT_ASSERT_EQUAL(9,mesh3D_4->getNodalConnectivity()->getNumberOfTuples());
787   CPPUNIT_ASSERT_EQUAL(23,mesh2D_4->getNodalConnectivity()->getNumberOfTuples());
788   CPPUNIT_ASSERT_EQUAL(23,mesh2D_5->getNodalConnectivity()->getNumberOfTuples());
789   const int expected2[9]={18,0,1,2,3,4,5,6,7};
790   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};
791   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};
792   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};
793   CPPUNIT_ASSERT(std::equal(expected2,expected2+9,mesh3D_4->getNodalConnectivity()->getConstPointer()));
794   CPPUNIT_ASSERT(std::equal(expected3,expected3+23,mesh2D_4->getNodalConnectivity()->getConstPointer()));
795   CPPUNIT_ASSERT(std::equal(expected4,expected4+23,mesh2D_5->getNodalConnectivity()->getConstPointer()));
796   for(int i=0;i<78;i++)
797     CPPUNIT_ASSERT_DOUBLES_EQUAL(expected5[i],mesh3D_4->getCoords()->getIJ(0,i),1e-12);
798   //
799   MEDCouplingUMesh::MergeNodesOnUMeshesSharingSameCoords(meshes,1e-12);
800   mesh3D_4->checkCoherency(); mesh2D_4->checkCoherency(); mesh2D_5->checkCoherency();
801   CPPUNIT_ASSERT(mesh3D_4->getCoords()==mesh2D_4->getCoords());
802   CPPUNIT_ASSERT(mesh2D_4->getCoords()==mesh2D_5->getCoords());
803   CPPUNIT_ASSERT_EQUAL(19,mesh3D_4->getNumberOfNodes());
804   CPPUNIT_ASSERT_EQUAL(3,mesh3D_4->getSpaceDimension());
805   CPPUNIT_ASSERT_EQUAL(9,mesh3D_4->getNodalConnectivity()->getNumberOfTuples());
806   CPPUNIT_ASSERT_EQUAL(23,mesh2D_4->getNodalConnectivity()->getNumberOfTuples());
807   CPPUNIT_ASSERT_EQUAL(23,mesh2D_5->getNodalConnectivity()->getNumberOfTuples());
808   const int expected6[9]={18,0,1,2,3,4,5,6,7};
809   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};
810   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};
811   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., 
812                               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., 
813                               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.};
814   CPPUNIT_ASSERT(std::equal(expected6,expected6+9,mesh3D_4->getNodalConnectivity()->getConstPointer()));
815   CPPUNIT_ASSERT(std::equal(expected7,expected7+23,mesh2D_4->getNodalConnectivity()->getConstPointer()));
816   CPPUNIT_ASSERT(std::equal(expected8,expected8+23,mesh2D_5->getNodalConnectivity()->getConstPointer()));
817   for(int i=0;i<57;i++)
818     CPPUNIT_ASSERT_DOUBLES_EQUAL(expected9[i],mesh3D_4->getCoords()->getIJ(0,i),1e-12);
819   mesh2D_5->decrRef();
820   //
821   mesh3D_4->decrRef();
822   mesh2D_4->decrRef();
823   mesh3D_2->decrRef();
824   mesh2D_2->decrRef();
825   //
826   mesh3D->decrRef();
827   mesh2D->decrRef();
828 }
829
830 void MEDCouplingBasicsTest5::testComputeNeighborsOfCells1()
831 {
832   MEDCouplingUMesh *m=build2DTargetMesh_1();
833   DataArrayInt *d1=0,*d2=0;
834   m->computeNeighborsOfCells(d1,d2);
835   CPPUNIT_ASSERT_EQUAL(6,d2->getNumberOfTuples());
836   CPPUNIT_ASSERT_EQUAL(10,d1->getNumberOfTuples());
837   const int expected1[6]={0,2,4,6,8,10};
838   const int expected2[10]={3,1,0,2,4,1,4,0,2,3};
839   CPPUNIT_ASSERT(std::equal(expected1,expected1+6,d2->getConstPointer()));
840   CPPUNIT_ASSERT(std::equal(expected2,expected2+10,d1->getConstPointer()));
841   d1->decrRef();
842   d2->decrRef();
843   m->decrRef();
844 }
845
846 void MEDCouplingBasicsTest5::testCheckButterflyCellsBug1()
847 {
848   double mesh2DCoords[10]={323.85,120.983748908684,317.5,131.982271536747,336.55,120.983748908686,330.2,131.982271536751,323.85,142.98079416481};
849   int mesh2DConn[5]={4,1,0,2,3};
850   MEDCouplingUMesh *mesh2D=MEDCouplingUMesh::New("mesh",2);
851   mesh2D->allocateCells(1);
852   mesh2D->insertNextCell(INTERP_KERNEL::NORM_POLYGON,5,mesh2DConn);
853   mesh2D->finishInsertingCells();
854   DataArrayDouble *myCoords=DataArrayDouble::New();
855   myCoords->alloc(5,2);
856   std::copy(mesh2DCoords,mesh2DCoords+10,myCoords->getPointer());
857   mesh2D->setCoords(myCoords);
858   myCoords->decrRef();
859   mesh2D->checkCoherency();
860   //
861   std::vector<int> v;
862   mesh2D->checkButterflyCells(v);
863   CPPUNIT_ASSERT_EQUAL(0,(int)v.size());
864   //
865   mesh2D->decrRef();
866 }
867
868 void MEDCouplingBasicsTest5::testDataArrayIntRange1()
869 {
870   DataArrayInt *d=DataArrayInt::Range(2,17,7);
871   const int expected1[3]={2,9,16};
872   CPPUNIT_ASSERT_EQUAL(3,d->getNumberOfTuples());
873   CPPUNIT_ASSERT_EQUAL(1,d->getNumberOfComponents());
874   CPPUNIT_ASSERT(std::equal(expected1,expected1+3,d->getConstPointer()));
875   d->decrRef();
876   //
877   d=DataArrayInt::Range(2,23,7);
878   CPPUNIT_ASSERT_EQUAL(3,d->getNumberOfTuples());
879   CPPUNIT_ASSERT_EQUAL(1,d->getNumberOfComponents());
880   CPPUNIT_ASSERT(std::equal(expected1,expected1+3,d->getConstPointer()));
881   d->decrRef();
882   //
883   d=DataArrayInt::Range(2,24,7);
884   const int expected2[4]={2,9,16,23};
885   CPPUNIT_ASSERT_EQUAL(4,d->getNumberOfTuples());
886   CPPUNIT_ASSERT_EQUAL(1,d->getNumberOfComponents());
887   CPPUNIT_ASSERT(std::equal(expected2,expected2+4,d->getConstPointer()));
888   d->decrRef();
889   //
890   d=DataArrayInt::Range(24,2,-7);
891   const int expected3[4]={24,17,10,3};
892   CPPUNIT_ASSERT_EQUAL(4,d->getNumberOfTuples());
893   CPPUNIT_ASSERT_EQUAL(1,d->getNumberOfComponents());
894   CPPUNIT_ASSERT(std::equal(expected3,expected3+4,d->getConstPointer()));
895   d->decrRef();
896   //
897   d=DataArrayInt::Range(23,2,-7);
898   const int expected4[3]={23,16,9};
899   CPPUNIT_ASSERT_EQUAL(3,d->getNumberOfTuples());
900   CPPUNIT_ASSERT_EQUAL(1,d->getNumberOfComponents());
901   CPPUNIT_ASSERT(std::equal(expected4,expected4+3,d->getConstPointer()));
902   d->decrRef();
903   //
904   d=DataArrayInt::Range(23,22,-7);
905   CPPUNIT_ASSERT_EQUAL(1,d->getNumberOfTuples());
906   CPPUNIT_ASSERT_EQUAL(1,d->getNumberOfComponents());
907   CPPUNIT_ASSERT_EQUAL(23,d->getIJ(0,0));
908   d->decrRef();
909   //
910   d=DataArrayInt::Range(22,23,7);
911   CPPUNIT_ASSERT_EQUAL(1,d->getNumberOfTuples());
912   CPPUNIT_ASSERT_EQUAL(1,d->getNumberOfComponents());
913   CPPUNIT_ASSERT_EQUAL(22,d->getIJ(0,0));
914   d->decrRef();
915   //
916   d=DataArrayInt::Range(22,22,7);
917   CPPUNIT_ASSERT_EQUAL(0,d->getNumberOfTuples());
918   CPPUNIT_ASSERT_EQUAL(1,d->getNumberOfComponents());
919   d->decrRef();
920   //
921   d=DataArrayInt::Range(22,22,-7);
922   CPPUNIT_ASSERT_EQUAL(0,d->getNumberOfTuples());
923   CPPUNIT_ASSERT_EQUAL(1,d->getNumberOfComponents());
924   d->decrRef();
925   //
926   CPPUNIT_ASSERT_THROW(DataArrayInt::Range(22,23,-7),INTERP_KERNEL::Exception);
927   CPPUNIT_ASSERT_THROW(DataArrayInt::Range(23,22,7),INTERP_KERNEL::Exception);
928   CPPUNIT_ASSERT_THROW(DataArrayInt::Range(23,22,0),INTERP_KERNEL::Exception);
929   CPPUNIT_ASSERT_THROW(DataArrayInt::Range(22,23,0),INTERP_KERNEL::Exception);
930 }
931
932 void MEDCouplingBasicsTest5::testDataArrayDoubleGetMinMaxPerComponent1()
933 {
934   const double values1[12]={1.,2.,3.,-0.9,2.1,3.,1.3,1.7,3.,1.,1.8,3.};
935   DataArrayDouble *d1=DataArrayDouble::New();
936   double *res=new double[2*3];
937   CPPUNIT_ASSERT_THROW(d1->getMinMaxPerComponent(res),INTERP_KERNEL::Exception);
938   d1->alloc(4,3);
939   std::copy(values1,values1+12,d1->getPointer());
940   d1->getMinMaxPerComponent(res);
941   const double expected1[6]={-0.9,1.3,1.7,2.1,3.,3.};
942   for(int i=0;i<6;i++)
943     CPPUNIT_ASSERT_DOUBLES_EQUAL(expected1[i],res[i],1e-14);
944   delete [] res;
945   //
946   d1->rearrange(2);
947   res=new double[2*2];
948   d1->getMinMaxPerComponent(res);
949   const double expected2[4]={1.,3.,-0.9,3.};
950   for(int i=0;i<4;i++)
951     CPPUNIT_ASSERT_DOUBLES_EQUAL(expected2[i],res[i],1e-14);
952   delete [] res;
953   //
954   d1->rearrange(1);
955   res=new double[2*1];
956   d1->getMinMaxPerComponent(res);
957   const double expected3[2]={-0.9,3.};
958   for(int i=0;i<2;i++)
959     CPPUNIT_ASSERT_DOUBLES_EQUAL(expected3[i],res[i],1e-14);
960   delete [] res;
961   d1->decrRef();
962 }
963
964 void MEDCouplingBasicsTest5::testDataArrayIntGetHashCode1()
965 {
966   DataArrayInt *d1=DataArrayInt::New(); d1->alloc(3545,1); d1->iota(0);
967   DataArrayInt *d2=DataArrayInt::New(); d2->alloc(3545,1); d2->iota(0);
968   //
969   CPPUNIT_ASSERT_EQUAL(d1->getHashCode(),d2->getHashCode());
970   CPPUNIT_ASSERT_EQUAL(232341068,d1->getHashCode());
971   d1->setIJ(886,0,6);
972   CPPUNIT_ASSERT_EQUAL(232340188,d1->getHashCode());
973   //
974   d1->decrRef();
975   d2->decrRef();
976 }
977
978 void MEDCouplingBasicsTest5::testZipConnectivityPol1()
979 {
980   MEDCouplingUMesh *m1=build2DTargetMesh_1();
981   const int cells1[3]={2,3,4};
982   MEDCouplingPointSet *m2_1=m1->buildPartOfMySelf(cells1,cells1+3,true);
983   MEDCouplingUMesh *m2=dynamic_cast<MEDCouplingUMesh *>(m2_1);
984   DataArrayInt *arr=0;
985   CPPUNIT_ASSERT(m2);
986   // no permutation policy 0
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(cells1,cells1+3,arr->getConstPointer()));
991   arr->decrRef();
992   // no permutation policy 1
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   // no permutation policy 2
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 modification into m2
1005   const int modif1[3]={2,4,5};
1006   std::copy(modif1,modif1+3,m2->getNodalConnectivity()->getPointer()+1);
1007   //policy 0 fails because cell0 in m2 has same orientation be not same connectivity
1008   const int expected1[3]={5,3,4};
1009   CPPUNIT_ASSERT(!m1->areCellsIncludedIn(m2,0,arr));
1010   CPPUNIT_ASSERT_EQUAL(3,arr->getNumberOfTuples());
1011   CPPUNIT_ASSERT_EQUAL(1,arr->getNumberOfComponents());
1012   CPPUNIT_ASSERT(std::equal(expected1,expected1+3,arr->getConstPointer()));
1013   arr->decrRef();
1014   //policy 1 succeeds because cell0 in m2 has not exactly the same conn
1015   CPPUNIT_ASSERT(m1->areCellsIncludedIn(m2,1,arr));
1016   CPPUNIT_ASSERT_EQUAL(3,arr->getNumberOfTuples());
1017   CPPUNIT_ASSERT_EQUAL(1,arr->getNumberOfComponents());
1018   CPPUNIT_ASSERT(std::equal(cells1,cells1+3,arr->getConstPointer()));
1019   arr->decrRef();
1020   //policy 2 succeeds because cell0 in m2 has same nodes in connectivity
1021   CPPUNIT_ASSERT(m1->areCellsIncludedIn(m2,2,arr));
1022   CPPUNIT_ASSERT_EQUAL(3,arr->getNumberOfTuples());
1023   CPPUNIT_ASSERT_EQUAL(1,arr->getNumberOfComponents());
1024   CPPUNIT_ASSERT(std::equal(cells1,cells1+3,arr->getConstPointer()));
1025   arr->decrRef();
1026   //some new modification into m2
1027   const int modif2[3]={2,5,4};
1028   std::copy(modif2,modif2+3,m2->getNodalConnectivity()->getPointer()+1);
1029   //policy 0 fails because cell0 in m2 has not exactly the same conn
1030   CPPUNIT_ASSERT(!m1->areCellsIncludedIn(m2,0,arr));
1031   CPPUNIT_ASSERT_EQUAL(3,arr->getNumberOfTuples());
1032   CPPUNIT_ASSERT_EQUAL(1,arr->getNumberOfComponents());
1033   CPPUNIT_ASSERT(std::equal(expected1,expected1+3,arr->getConstPointer()));
1034   arr->decrRef();
1035   //policy 1 fails too because cell0 in m2 has not same orientation
1036   CPPUNIT_ASSERT(!m1->areCellsIncludedIn(m2,1,arr));
1037   CPPUNIT_ASSERT_EQUAL(3,arr->getNumberOfTuples());
1038   CPPUNIT_ASSERT_EQUAL(1,arr->getNumberOfComponents());
1039   CPPUNIT_ASSERT(std::equal(expected1,expected1+3,arr->getConstPointer()));
1040   arr->decrRef();
1041   //policy 2 succeeds because cell0 in m2 has same nodes in connectivity
1042   CPPUNIT_ASSERT(m1->areCellsIncludedIn(m2,2,arr));
1043   CPPUNIT_ASSERT_EQUAL(3,arr->getNumberOfTuples());
1044   CPPUNIT_ASSERT_EQUAL(1,arr->getNumberOfComponents());
1045   CPPUNIT_ASSERT(std::equal(cells1,cells1+3,arr->getConstPointer()));
1046   arr->decrRef();
1047   m1->decrRef();
1048   m2->decrRef();
1049   // Now 1D
1050   const int cells2[2]={3,2};
1051   m1=build1DSourceMesh_2();
1052   m2_1=m1->buildPartOfMySelf(cells2,cells2+2,true);
1053   m2=dynamic_cast<MEDCouplingUMesh *>(m2_1);
1054   CPPUNIT_ASSERT(m2);
1055   arr=0;
1056   // no permutation policy 0
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(cells2,cells2+2,arr->getConstPointer()));
1061   arr->decrRef();
1062   // no permutation policy 1
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(cells2,cells2+2,arr->getConstPointer()));
1067   arr->decrRef();
1068   // no permutation policy 2
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   // some modification into m2
1075   const int modif3[2]={4,3};
1076   std::copy(modif3,modif3+2,m2->getNodalConnectivity()->getPointer()+1);
1077   //policy 0 fails because cell0 in m2 has not exactly the same conn
1078   const int expected2[2]={4,2};
1079   CPPUNIT_ASSERT(!m1->areCellsIncludedIn(m2,0,arr));
1080   CPPUNIT_ASSERT_EQUAL(2,arr->getNumberOfTuples());
1081   CPPUNIT_ASSERT_EQUAL(1,arr->getNumberOfComponents());
1082   CPPUNIT_ASSERT(std::equal(expected2,expected2+2,arr->getConstPointer()));
1083   arr->decrRef();
1084   //policy 1 fails too because cell0 in m2 has not same orientation
1085   CPPUNIT_ASSERT(!m1->areCellsIncludedIn(m2,1,arr));
1086   CPPUNIT_ASSERT_EQUAL(2,arr->getNumberOfTuples());
1087   CPPUNIT_ASSERT_EQUAL(1,arr->getNumberOfComponents());
1088   CPPUNIT_ASSERT(std::equal(expected2,expected2+2,arr->getConstPointer()));
1089   arr->decrRef();
1090   //policy 2 succeeds because cell0 in m2 has same nodes in connectivity
1091   CPPUNIT_ASSERT(m1->areCellsIncludedIn(m2,2,arr));
1092   CPPUNIT_ASSERT_EQUAL(2,arr->getNumberOfTuples());
1093   CPPUNIT_ASSERT_EQUAL(1,arr->getNumberOfComponents());
1094   CPPUNIT_ASSERT(std::equal(cells2,cells2+2,arr->getConstPointer()));
1095   arr->decrRef();
1096   m1->decrRef();
1097   m2->decrRef();
1098 }
1099
1100 void MEDCouplingBasicsTest5::testConvexEnvelop2D1()
1101 {
1102   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};
1103   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};
1104   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};
1105   //
1106   MEDCouplingUMesh *m=MEDCouplingUMesh::New("convexhull",2);
1107   m->allocateCells(331);
1108   for(int i=0;i<331;i++)
1109     m->insertNextCell(INTERP_KERNEL::NORM_POLYGON,connI[i+1]-connI[i],conn+connI[i]);
1110   m->finishInsertingCells();
1111   DataArrayDouble *coordsDa=DataArrayDouble::New();
1112   coordsDa->alloc(331,2);
1113   std::copy(coords,coords+662,coordsDa->getPointer());
1114   m->setCoords(coordsDa);
1115   coordsDa->decrRef();
1116   m->checkCoherency();
1117   //
1118   DataArrayInt *da=m->convexEnvelop2D();
1119   m->checkCoherency();
1120   CPPUNIT_ASSERT(coordsDa==m->getCoords());
1121   DataArrayInt *daC=da->buildComplement(331);
1122   da->decrRef();
1123   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};
1124   DataArrayInt *expected2=DataArrayInt::New();
1125   expected2->alloc(58,1);
1126   std::copy(expected,expected+58,expected2->getPointer());
1127   CPPUNIT_ASSERT(expected2->isEqual(*daC));
1128   //
1129   expected2->decrRef();
1130   daC->decrRef();
1131   //
1132   MEDCouplingFieldDouble *valsF=m->getMeasureField(ON_CELLS);
1133   DataArrayDouble *vals=valsF->getArray();
1134   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};
1135   DataArrayDouble *ref2=DataArrayDouble::New(); ref2->alloc(331,1); std::copy(ref,ref+331,ref2->getPointer());
1136   vals->substractEqual(ref2);
1137   ref2->decrRef();
1138   vals->abs();
1139   DataArrayInt *theTest=vals->getIdsInRange(-1.,1e-7);
1140   CPPUNIT_ASSERT(theTest->isIdentity());
1141   CPPUNIT_ASSERT_EQUAL(331,theTest->getNumberOfTuples());
1142   theTest->decrRef();
1143   valsF->decrRef();
1144   //
1145   m->decrRef();
1146 }
1147
1148 void MEDCouplingBasicsTest5::testDataArraySort1()
1149 {
1150   DataArrayInt *arr=DataArrayInt::New();
1151   CPPUNIT_ASSERT_THROW(arr->sort(true),INTERP_KERNEL::Exception);//no allocation
1152   CPPUNIT_ASSERT_THROW(arr->sort(false),INTERP_KERNEL::Exception);//no allocation
1153   const int values[6]={2,1,6,5,4,7};
1154   arr->alloc(3,2);
1155   CPPUNIT_ASSERT_THROW(arr->sort(true),INTERP_KERNEL::Exception);//no one component
1156   CPPUNIT_ASSERT_THROW(arr->sort(false),INTERP_KERNEL::Exception);//no one component
1157   arr->rearrange(1);
1158   std::copy(values,values+6,arr->getPointer());
1159   DataArrayInt *arr1=arr->deepCpy();
1160   DataArrayInt *arr2=arr->deepCpy();
1161   arr1->sort(true);
1162   const int expected1[6]={1,2,4,5,6,7};
1163   CPPUNIT_ASSERT_EQUAL(6,arr1->getNumberOfTuples());
1164   CPPUNIT_ASSERT_EQUAL(1,arr1->getNumberOfComponents());
1165   CPPUNIT_ASSERT(std::equal(expected1,expected1+6,arr1->begin()));
1166   arr2->sort(false);
1167   const int expected2[6]={7,6,5,4,2,1};
1168   CPPUNIT_ASSERT_EQUAL(6,arr2->getNumberOfTuples());
1169   CPPUNIT_ASSERT_EQUAL(1,arr2->getNumberOfComponents());
1170   CPPUNIT_ASSERT(std::equal(expected2,expected2+6,arr2->begin()));
1171   arr1->decrRef();
1172   arr2->decrRef();
1173   arr->decrRef();
1174   //
1175   DataArrayDouble *ard=DataArrayDouble::New();
1176   CPPUNIT_ASSERT_THROW(ard->sort(true),INTERP_KERNEL::Exception);//no allocation
1177   CPPUNIT_ASSERT_THROW(ard->sort(false),INTERP_KERNEL::Exception);//no allocation
1178   const double valuesD[6]={2.,1.,6.,5.,4.,7.};
1179   ard->alloc(3,2);
1180   CPPUNIT_ASSERT_THROW(ard->sort(true),INTERP_KERNEL::Exception);//no one component
1181   CPPUNIT_ASSERT_THROW(ard->sort(false),INTERP_KERNEL::Exception);//no one component
1182   ard->rearrange(1);
1183   std::copy(valuesD,valuesD+6,ard->getPointer());
1184   DataArrayDouble *ard1=ard->deepCpy();
1185   DataArrayDouble *ard2=ard->deepCpy();
1186   ard1->sort(true);
1187   const double expected3[6]={1.,2.,4.,5.,6.,7.};
1188   CPPUNIT_ASSERT_EQUAL(6,ard1->getNumberOfTuples());
1189   CPPUNIT_ASSERT_EQUAL(1,ard1->getNumberOfComponents());
1190   for(int i=0;i<6;i++)
1191     CPPUNIT_ASSERT_DOUBLES_EQUAL(expected3[i],ard1->getIJ(i,0),1e-12);
1192   ard2->sort(false);
1193   const double expected4[6]={7.,6.,5.,4.,2.,1.};
1194   CPPUNIT_ASSERT_EQUAL(6,ard2->getNumberOfTuples());
1195   CPPUNIT_ASSERT_EQUAL(1,ard2->getNumberOfComponents());
1196   for(int i=0;i<6;i++)
1197     CPPUNIT_ASSERT_DOUBLES_EQUAL(expected4[i],ard2->getIJ(i,0),1e-12);
1198   ard1->decrRef();
1199   ard2->decrRef();
1200   ard->decrRef();
1201 }
1202
1203 void MEDCouplingBasicsTest5::testPartitionBySpreadZone1()
1204 {
1205   MEDCouplingUMesh *m=build2DTargetMesh_1();
1206   const int part0[3]={2,3,4};
1207   const int part1[2]={0,1};
1208   MEDCouplingUMesh *m1=static_cast<MEDCouplingUMesh *>(m->buildPartOfMySelf(part0,part0+3));
1209   MEDCouplingUMesh *m2=static_cast<MEDCouplingUMesh *>(m->buildPartOfMySelf(part1,part1+2));
1210   std::vector<const MEDCouplingUMesh *> v(3); v[0]=m; v[1]=m1; v[2]=m2;
1211   MEDCouplingUMesh *m4=MEDCouplingUMesh::MergeUMeshes(v);
1212   const int renum[10]={5,2,9,6,4,7,0,1,3,8};
1213   m4->renumberCells(renum);
1214   //
1215   std::vector<DataArrayInt *> v2=m4->partitionBySpreadZone();
1216   CPPUNIT_ASSERT_EQUAL(3,(int)v2.size());
1217   const int expected0[3]={0,1,7};
1218   const int expected1[5]={2,4,5,6,9};
1219   const int expected2[2]={3,8};
1220   CPPUNIT_ASSERT_EQUAL(3,v2[0]->getNumberOfTuples());
1221   CPPUNIT_ASSERT_EQUAL(1,v2[0]->getNumberOfComponents());
1222   CPPUNIT_ASSERT_EQUAL(5,v2[1]->getNumberOfTuples());
1223   CPPUNIT_ASSERT_EQUAL(1,v2[1]->getNumberOfComponents());
1224   CPPUNIT_ASSERT_EQUAL(2,v2[2]->getNumberOfTuples());
1225   CPPUNIT_ASSERT_EQUAL(1,v2[2]->getNumberOfComponents());
1226   //
1227   CPPUNIT_ASSERT(std::equal(expected0,expected0+3,v2[0]->getConstPointer()));
1228   CPPUNIT_ASSERT(std::equal(expected1,expected1+5,v2[1]->getConstPointer()));
1229   CPPUNIT_ASSERT(std::equal(expected2,expected2+2,v2[2]->getConstPointer()));
1230   v2[0]->decrRef();
1231   v2[1]->decrRef();
1232   v2[2]->decrRef();
1233   //
1234   MEDCouplingUMesh *m5=m4->buildSpreadZonesWithPoly();
1235   CPPUNIT_ASSERT_EQUAL(3,m5->getNumberOfCells());
1236   CPPUNIT_ASSERT(m5->getCoords()==m4->getCoords());
1237   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};
1238   const int expected4[4]={0,8,17,23};
1239   CPPUNIT_ASSERT_EQUAL(23,m5->getNodalConnectivity()->getNumberOfTuples());
1240   CPPUNIT_ASSERT(std::equal(expected3,expected3+23,m5->getNodalConnectivity()->getConstPointer()));
1241   CPPUNIT_ASSERT_EQUAL(4,m5->getNodalConnectivityIndex()->getNumberOfTuples());
1242   CPPUNIT_ASSERT(std::equal(expected4,expected4+4,m5->getNodalConnectivityIndex()->getConstPointer()));
1243   //
1244   m->decrRef();
1245   m1->decrRef();
1246   m2->decrRef();
1247   m4->decrRef();
1248   m5->decrRef();
1249 }
1250
1251 void MEDCouplingBasicsTest5::testGiveCellsWithType1()
1252 {
1253   const int expected0[2]={1,2};
1254   const int expected1[3]={0,3,4};
1255   MEDCouplingUMesh *m=build2DTargetMesh_1();
1256   DataArrayInt *da=m->giveCellsWithType(INTERP_KERNEL::NORM_TRI3);
1257   CPPUNIT_ASSERT_EQUAL(2,da->getNumberOfTuples());
1258   CPPUNIT_ASSERT_EQUAL(1,da->getNumberOfComponents());
1259   CPPUNIT_ASSERT(std::equal(expected0,expected0+2,da->getConstPointer()));
1260   da->decrRef();
1261   //
1262   da=m->giveCellsWithType(INTERP_KERNEL::NORM_QUAD4);
1263   CPPUNIT_ASSERT_EQUAL(3,da->getNumberOfTuples());
1264   CPPUNIT_ASSERT_EQUAL(1,da->getNumberOfComponents());
1265   CPPUNIT_ASSERT(std::equal(expected1,expected1+3,da->getConstPointer()));
1266   da->decrRef();
1267   //
1268   da=m->giveCellsWithType(INTERP_KERNEL::NORM_TRI6);
1269   CPPUNIT_ASSERT_EQUAL(0,da->getNumberOfTuples());
1270   CPPUNIT_ASSERT_EQUAL(1,da->getNumberOfComponents());
1271   da->decrRef();
1272   //
1273   CPPUNIT_ASSERT_THROW(m->giveCellsWithType(INTERP_KERNEL::NORM_SEG2),INTERP_KERNEL::Exception);
1274   CPPUNIT_ASSERT_THROW(m->giveCellsWithType(INTERP_KERNEL::NORM_HEXA8),INTERP_KERNEL::Exception);
1275   //
1276   m->decrRef();
1277 }
1278
1279 void MEDCouplingBasicsTest5::testBuildSlice3D2()
1280 {
1281   MEDCouplingUMesh *mesh2D=0;
1282   MEDCouplingUMesh *mesh3D=build3DExtrudedUMesh_1(mesh2D);
1283   mesh2D->decrRef();
1284   // First slice in the middle of 3D cells
1285   const double vec1[3]={-0.07,1.,0.07};
1286   const double origin1[3]={1.524,1.4552,1.74768};
1287   DataArrayInt *ids=0;
1288   MEDCouplingUMesh *slice1=mesh3D->buildSlice3D(origin1,vec1,1e-10,ids);
1289   //
1290   MEDCouplingFieldDouble *f=MEDCouplingFieldDouble::New(ON_CELLS,ONE_TIME);
1291   f->setTime(4.5,6,7) ; f->setMesh(mesh3D);
1292   DataArrayDouble *arr=DataArrayDouble::New(); arr->alloc(mesh3D->getNumberOfCells(),2);
1293   arr->rearrange(1); arr->iota(2.); arr->rearrange(2);
1294   f->setArray(arr);
1295   f->checkCoherency();
1296   const int exp1[9]={1,3,4,7,9,10,13,15,16};
1297   DataArrayInt *expected1=DataArrayInt::New(); expected1->alloc(9,1); std::copy(exp1,exp1+9,expected1->getPointer());
1298   CPPUNIT_ASSERT(expected1->isEqual(*ids));
1299   DataArrayDouble *arr2=arr->selectByTupleIdSafe(expected1->begin(),expected1->end());
1300   //
1301   MEDCouplingFieldDouble *f2=f->extractSlice3D(origin1,vec1,1e-10);
1302   CPPUNIT_ASSERT(f2->getArray()->isEqual(*arr2,1e-12));
1303   CPPUNIT_ASSERT(slice1->isEqual(f2->getMesh(),1e-12));
1304   int a,b;
1305   double c=f2->getTime(a,b);
1306   CPPUNIT_ASSERT_EQUAL(6,a);
1307   CPPUNIT_ASSERT_EQUAL(7,b);
1308   CPPUNIT_ASSERT_DOUBLES_EQUAL(4.5,c,1e-12);
1309   //
1310   ids->decrRef();
1311   slice1->decrRef();
1312   arr2->decrRef();
1313   arr->decrRef();
1314   f2->decrRef();
1315   f->decrRef();
1316   mesh3D->decrRef();
1317   expected1->decrRef();
1318 }
1319
1320 void MEDCouplingBasicsTest5::testComputeTupleIdsToSelectFromCellIds1()
1321 {
1322   MEDCouplingUMesh *m=build2DTargetMesh_3();
1323   MEDCouplingFieldDouble *f=MEDCouplingFieldDouble::New(ON_GAUSS_NE,NO_TIME);
1324   f->setMesh(m);
1325   DataArrayDouble *arr=DataArrayDouble::New(); arr->alloc(52,2) ; arr->rearrange(1) ; arr->iota(7.); arr->rearrange(2);
1326   f->setArray(arr);
1327   //
1328   const int subPart1[3]={1,5,9};
1329   MEDCouplingFieldDouble *f2=f->buildSubPart(subPart1,subPart1+3);
1330   f2->checkCoherency();
1331   DataArrayInt *cI=m->computeNbOfNodesPerCell();
1332   cI->computeOffsets2();
1333   const int sel1[3]={1,5,9};
1334   DataArrayInt *sel=DataArrayInt::New(); sel->useArray(sel1,false,CPP_DEALLOC,3,1);
1335   DataArrayInt *res=sel->buildExplicitArrByRanges(cI);
1336   DataArrayDouble *arr2=arr->selectByTupleIdSafe(res->begin(),res->end());
1337   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.};
1338   DataArrayDouble *arr3=DataArrayDouble::New(); arr3->useArray(expected1,false,CPP_DEALLOC,15,2);
1339   CPPUNIT_ASSERT(arr2->isEqual(*arr3,1e-12));
1340   CPPUNIT_ASSERT(arr2->isEqual(*f2->getArray(),1e-12));
1341   //
1342   cI->decrRef();
1343   arr3->decrRef();
1344   arr2->decrRef();
1345   arr->decrRef();
1346   m->decrRef();
1347   f->decrRef();
1348   f2->decrRef();
1349   sel->decrRef();
1350   res->decrRef();
1351 }
1352
1353 void MEDCouplingBasicsTest5::testComputeSkin1()
1354 {
1355   const double input1[5]={2.,3.4,5.6,7.7,8.0};
1356   const double input2[6]={2.,3.4,5.6,7.7,9.0,14.2};
1357   DataArrayDouble *arrX=DataArrayDouble::New(); arrX->alloc(5,1); std::copy(input1,input1+5,arrX->getPointer());
1358   DataArrayDouble *arrY=DataArrayDouble::New(); arrY->alloc(6,1); std::copy(input2,input2+6,arrY->getPointer());
1359   MEDCouplingCMesh *cmesh=MEDCouplingCMesh::New() ; cmesh->setCoordsAt(0,arrX) ; cmesh->setCoordsAt(1,arrY);
1360   MEDCouplingUMesh *umesh=cmesh->buildUnstructured();
1361   cmesh->decrRef(); arrX->decrRef(); arrY->decrRef();
1362   //
1363   MEDCouplingUMesh *skin=umesh->computeSkin();
1364   CPPUNIT_ASSERT_EQUAL(18,skin->getNumberOfCells());
1365   CPPUNIT_ASSERT_EQUAL(1,skin->getMeshDimension());
1366   CPPUNIT_ASSERT(skin->getCoords()==umesh->getCoords());
1367   const int expected1[19]={0,3,6,9,12,15,18,21,24,27,30,33,36,39,42,45,48,51,54};
1368   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};
1369   CPPUNIT_ASSERT_EQUAL((std::size_t)19,skin->getNodalConnectivityIndex()->getNbOfElems());
1370   CPPUNIT_ASSERT(std::equal(expected1,expected1+19,skin->getNodalConnectivityIndex()->getConstPointer()));
1371   CPPUNIT_ASSERT_EQUAL((std::size_t)54,skin->getNodalConnectivity()->getNbOfElems());
1372   CPPUNIT_ASSERT(std::equal(expected2,expected2+54,skin->getNodalConnectivity()->getConstPointer()));
1373   DataArrayInt *ids=skin->computeFetchedNodeIds();
1374   const int expected3[18]={0,1,2,3,4,5,9,10,14,15,19,20,24,25,26,27,28,29};
1375   CPPUNIT_ASSERT_EQUAL((std::size_t)18,ids->getNbOfElems());
1376   CPPUNIT_ASSERT(std::equal(expected3,expected3+18,ids->getConstPointer()));
1377   MEDCouplingUMesh *part=dynamic_cast<MEDCouplingUMesh *>(umesh->buildFacePartOfMySelfNode(ids->begin(),ids->end(),true));
1378   part->setName(skin->getName().c_str());
1379   CPPUNIT_ASSERT(part->isEqual(skin,1e-12));
1380   MEDCouplingUMesh *part2=dynamic_cast<MEDCouplingUMesh *>(part->buildPartOfMySelf2(1,18,2,true));
1381   DataArrayInt *ids2=DataArrayInt::Range(0,18,2);
1382   part->setPartOfMySelf(ids2->begin(),ids2->end(),*part2);
1383   ids2->decrRef();
1384   CPPUNIT_ASSERT(!part->isEqual(skin,1e-12));
1385   DataArrayInt *trad=part->zipConnectivityTraducer(0);
1386   CPPUNIT_ASSERT_EQUAL(9,part->getNumberOfCells());
1387   const int expected4[18]={0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8};
1388   CPPUNIT_ASSERT(std::equal(expected4,expected4+18,trad->getConstPointer()));
1389   CPPUNIT_ASSERT_EQUAL((std::size_t)18,trad->getNbOfElems());
1390   trad->decrRef();
1391   part->decrRef();
1392   part2->decrRef();
1393   //
1394   ids->decrRef();
1395   umesh->decrRef();
1396   skin->decrRef();
1397 }
1398
1399 void MEDCouplingBasicsTest5::testUMeshSetPartOfMySelf2()
1400 {
1401   // resize with explicit ids list
1402   MEDCouplingUMesh *m=build2DTargetMesh_1();
1403   std::set<INTERP_KERNEL::NormalizedCellType> s; s.insert(INTERP_KERNEL::NORM_TRI3); s.insert(INTERP_KERNEL::NORM_QUAD4);
1404   CPPUNIT_ASSERT(s==m->getAllTypes());
1405   const int ids1[3]={0,3,4};
1406   MEDCouplingUMesh *part=static_cast<MEDCouplingUMesh *>(m->buildPartOfMySelf(ids1,ids1+3,true));
1407   part->simplexize(0)->decrRef();
1408   const int ids2[3]={1,2,5};
1409   MEDCouplingUMesh *part2=static_cast<MEDCouplingUMesh *>(part->buildPartOfMySelf(ids2,ids2+3,true));
1410   m->setPartOfMySelf(ids1,ids1+3,*part2);
1411   const int expected1[20]={3,0,4,1,3,1,4,2,3,4,5,2,3,6,7,4,3,7,5,4};
1412   CPPUNIT_ASSERT(std::equal(expected1,expected1+20,m->getNodalConnectivity()->getConstPointer()));
1413   CPPUNIT_ASSERT_EQUAL((std::size_t)20,m->getNodalConnectivity()->getNbOfElems());
1414   const int expected2[6]={0,4,8,12,16,20};
1415   CPPUNIT_ASSERT(std::equal(expected2,expected2+6,m->getNodalConnectivityIndex()->getConstPointer()));
1416   CPPUNIT_ASSERT_EQUAL((std::size_t)6,m->getNodalConnectivityIndex()->getNbOfElems());
1417   s.clear(); s.insert(INTERP_KERNEL::NORM_TRI3);
1418   CPPUNIT_ASSERT(s==m->getAllTypes());
1419   m->decrRef(); part->decrRef(); part2->decrRef();
1420   // no resize with explicit ids list
1421   m=build2DTargetMesh_1();
1422   part=static_cast<MEDCouplingUMesh *>(m->buildPartOfMySelf(ids1,ids1+2,true));
1423   part->convertAllToPoly();
1424   m->setPartOfMySelf(ids1+1,ids1+3,*part);
1425   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};
1426   CPPUNIT_ASSERT(std::equal(expected3,expected3+23,m->getNodalConnectivity()->getConstPointer()));
1427   CPPUNIT_ASSERT_EQUAL((std::size_t)23,m->getNodalConnectivity()->getNbOfElems());
1428   const int expected4[6]={0,5,9,13,18,23};
1429   CPPUNIT_ASSERT(std::equal(expected4,expected4+6,m->getNodalConnectivityIndex()->getConstPointer()));
1430   CPPUNIT_ASSERT_EQUAL((std::size_t)6,m->getNodalConnectivityIndex()->getNbOfElems());
1431   s.clear(); s.insert(INTERP_KERNEL::NORM_TRI3); s.insert(INTERP_KERNEL::NORM_QUAD4); s.insert(INTERP_KERNEL::NORM_POLYGON);
1432   CPPUNIT_ASSERT(s==m->getAllTypes());
1433   m->decrRef(); part->decrRef();
1434   // resize with range ids
1435   m=build2DTargetMesh_1();
1436   part=static_cast<MEDCouplingUMesh *>(m->buildPartOfMySelf2(3,5,1,true));
1437   m->setPartOfMySelf2(1,3,1,*part);
1438   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};
1439   CPPUNIT_ASSERT(std::equal(expected5,expected5+25,m->getNodalConnectivity()->getConstPointer()));
1440   CPPUNIT_ASSERT_EQUAL((std::size_t)25,m->getNodalConnectivity()->getNbOfElems());
1441   const int expected6[6]={0,5,10,15,20,25};
1442   CPPUNIT_ASSERT(std::equal(expected6,expected6+6,m->getNodalConnectivityIndex()->getConstPointer()));
1443   CPPUNIT_ASSERT_EQUAL((std::size_t)6,m->getNodalConnectivityIndex()->getNbOfElems());
1444   s.clear(); s.insert(INTERP_KERNEL::NORM_QUAD4);
1445   CPPUNIT_ASSERT(s==m->getAllTypes());
1446   m->decrRef(); part->decrRef();
1447   // no resize with range ids
1448   m=build2DTargetMesh_1();
1449   part=static_cast<MEDCouplingUMesh *>(m->buildPartOfMySelf2(0,5,3,true));
1450   part->convertAllToPoly();
1451   m->setPartOfMySelf2(3,5,1,*part);
1452   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};
1453   CPPUNIT_ASSERT(std::equal(expected7,expected7+23,m->getNodalConnectivity()->getConstPointer()));
1454   CPPUNIT_ASSERT_EQUAL((std::size_t)23,m->getNodalConnectivity()->getNbOfElems());
1455   const int expected8[6]={0,5,9,13,18,23};
1456   CPPUNIT_ASSERT(std::equal(expected8,expected8+6,m->getNodalConnectivityIndex()->getConstPointer()));
1457   CPPUNIT_ASSERT_EQUAL((std::size_t)6,m->getNodalConnectivityIndex()->getNbOfElems());
1458 s.clear(); s.insert(INTERP_KERNEL::NORM_TRI3); s.insert(INTERP_KERNEL::NORM_QUAD4); s.insert(INTERP_KERNEL::NORM_POLYGON);
1459   CPPUNIT_ASSERT(s==m->getAllTypes());
1460   m->decrRef(); part->decrRef();
1461   // no resize with range ids negative direction
1462   m=build2DTargetMesh_1();
1463   part=static_cast<MEDCouplingUMesh *>(m->buildPartOfMySelf2(3,-1,-3,true));
1464   part->convertAllToPoly();
1465   m->setPartOfMySelf2(4,2,-1,*part);
1466   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};
1467   CPPUNIT_ASSERT(std::equal(expected9,expected9+23,m->getNodalConnectivity()->getConstPointer()));
1468   CPPUNIT_ASSERT_EQUAL((std::size_t)23,m->getNodalConnectivity()->getNbOfElems());
1469   const int expected10[6]={0,5,9,13,18,23};
1470   CPPUNIT_ASSERT(std::equal(expected10,expected10+6,m->getNodalConnectivityIndex()->getConstPointer()));
1471   CPPUNIT_ASSERT_EQUAL((std::size_t)6,m->getNodalConnectivityIndex()->getNbOfElems());
1472   s.clear(); s.insert(INTERP_KERNEL::NORM_TRI3); s.insert(INTERP_KERNEL::NORM_QUAD4); s.insert(INTERP_KERNEL::NORM_POLYGON);
1473   CPPUNIT_ASSERT(s==m->getAllTypes());
1474   part->decrRef();
1475   m->decrRef();
1476 }
1477
1478 void MEDCouplingBasicsTest5::testUnPolyze3()
1479 {
1480   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};
1481   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};
1482   MEDCouplingUMesh *m=MEDCouplingUMesh::New("a mesh",3);
1483   m->allocateCells(1);
1484   m->insertNextCell(INTERP_KERNEL::NORM_POLYHED,22,conn);
1485   m->finishInsertingCells();
1486   DataArrayDouble *coords=DataArrayDouble::New();
1487   coords->alloc(6,3);
1488   std::copy(coord,coord+18,coords->getPointer());
1489   m->setCoords(coords);
1490   coords->decrRef();
1491   m->checkCoherency();
1492   //
1493   MEDCouplingFieldDouble *vol=m->getMeasureField(ON_CELLS);
1494   CPPUNIT_ASSERT_EQUAL(1,vol->getArray()->getNumberOfTuples());
1495   CPPUNIT_ASSERT_DOUBLES_EQUAL(0.5,vol->getArray()->getIJ(0,0),1e-12);
1496   vol->decrRef();
1497   //
1498   m->unPolyze();
1499   CPPUNIT_ASSERT_EQUAL(1,m->getNumberOfCells());
1500   std::set<INTERP_KERNEL::NormalizedCellType> s; s.insert(INTERP_KERNEL::NORM_PENTA6);
1501   CPPUNIT_ASSERT(s==m->getAllTypes());
1502   //
1503   const int expected1[2]={0,7};
1504   const int expected2[7]={16,0,2,1,3,5,4};
1505   CPPUNIT_ASSERT_EQUAL(2,m->getNodalConnectivityIndex()->getNumberOfTuples());
1506   CPPUNIT_ASSERT(std::equal(expected1,expected1+2,m->getNodalConnectivityIndex()->getConstPointer()));
1507   CPPUNIT_ASSERT_EQUAL(7,m->getNodalConnectivity()->getNumberOfTuples());
1508   CPPUNIT_ASSERT(std::equal(expected2,expected2+7,m->getNodalConnectivity()->getConstPointer()));
1509   //
1510   vol=m->getMeasureField(ON_CELLS);
1511   CPPUNIT_ASSERT_EQUAL(1,vol->getArray()->getNumberOfTuples());
1512   CPPUNIT_ASSERT_DOUBLES_EQUAL(0.5,vol->getArray()->getIJ(0,0),1e-12);
1513   vol->decrRef();
1514   //
1515   m->decrRef();
1516 }
1517
1518 void MEDCouplingBasicsTest5::testKrSpatialDiscretization1()
1519 {
1520   const double srcPointCoordsX[10]={0.8401877171547095, 0.7830992237586059, 0.9116473579367843, 0.335222755714889, 0.2777747108031878, 0.4773970518621602, 0.3647844727918433, 0.9522297251747128, 0.6357117279599009, 0.1416025553558034};
1521   const double srcFieldValsOnPoints[10]={2.129892434968836, 2.295320474540621, 1.931948594981134, 2.728013590937196, 2.715603240418478, 2.661778472822935, 2.695696990104364, 1.893710234970982, 2.529628016549284, 2.728432341300668};
1522   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};
1523   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};
1524   //
1525   int nbOfInputPoints=10;
1526   MEDCouplingFieldDouble *f=MEDCouplingFieldDouble::New(ON_NODES_KR,ONE_TIME);
1527   DataArrayDouble *srcArrX=DataArrayDouble::New();
1528   srcArrX->alloc(nbOfInputPoints,1);
1529   std::copy(srcPointCoordsX,srcPointCoordsX+nbOfInputPoints,srcArrX->getPointer());
1530   MEDCouplingCMesh *cmesh=MEDCouplingCMesh::New("aMesh");
1531   cmesh->setCoordsAt(0,srcArrX);
1532   MEDCouplingUMesh *umesh=cmesh->buildUnstructured();
1533   f->setMesh(umesh);
1534   DataArrayDouble *srcVals=DataArrayDouble::New();
1535   srcVals->alloc(nbOfInputPoints,1);
1536   std::copy(srcFieldValsOnPoints,srcFieldValsOnPoints+nbOfInputPoints,srcVals->getPointer());
1537   f->setArray(srcVals);
1538   f->checkCoherency();
1539   //
1540   double *res0=new double[1];
1541   f->getValueOn(targetPointCoordsX,res0);
1542   CPPUNIT_ASSERT_DOUBLES_EQUAL(targetFieldValsExpected[0],res0[0],1e-10);
1543   delete [] res0;
1544   //
1545   DataArrayDouble *valuesToTest=f->getValueOnMulti(targetPointCoordsX,40);
1546   CPPUNIT_ASSERT_EQUAL(40,valuesToTest->getNumberOfTuples());
1547   CPPUNIT_ASSERT_EQUAL(1,valuesToTest->getNumberOfComponents());
1548   for(int i=0;i<40;i++)
1549     CPPUNIT_ASSERT_DOUBLES_EQUAL(targetFieldValsExpected[i],valuesToTest->getIJ(i,0),1e-10);
1550   valuesToTest->decrRef();
1551   //
1552   cmesh->decrRef();
1553   umesh->decrRef();
1554   srcArrX->decrRef();
1555   srcVals->decrRef();
1556   f->decrRef();
1557 }
1558
1559 void MEDCouplingBasicsTest5::testDuplicateEachTupleNTimes1()
1560 {
1561   const double vals0[4]={9.,8.,7.,6.};
1562   DataArrayDouble *d=DataArrayDouble::New(); d->useArray(vals0,false,CPP_DEALLOC,4,1); d->setInfoOnComponent(0,"mass [kg]"); d->setName("aname");
1563   DataArrayDouble *d2=d->duplicateEachTupleNTimes(3);
1564   const double vals1[12]={9.,9.,9.,8.,8.,8.,7.,7.,7.,6.,6.,6.};
1565   DataArrayDouble *d3=DataArrayDouble::New(); d3->useArray(vals1,false,CPP_DEALLOC,4*3,1); d3->setName("aname"); d3->setInfoOnComponent(0,"mass [kg]");
1566   CPPUNIT_ASSERT(d2->isEqual(*d2,1e-14)); d3->decrRef();
1567   d->decrRef();
1568   d2->decrRef();
1569   //
1570   const int vals2[4]={9,8,7,6};
1571   DataArrayInt *d4=DataArrayInt::New(); d4->useArray(vals2,false,CPP_DEALLOC,4,1); d4->setInfoOnComponent(0,"mass [kg]") ; d4->setName("aname");
1572   DataArrayInt *d5=d4->duplicateEachTupleNTimes(3);
1573   const int vals3[12]={9,9,9,8,8,8,7,7,7,6,6,6};
1574   DataArrayInt *d6=DataArrayInt::New(); d6->useArray(vals3,false,CPP_DEALLOC,4*3,1); d6->setName("aname"); d6->setInfoOnComponent(0,"mass [kg]");
1575   CPPUNIT_ASSERT(d5->isEqual(*d6)); d6->decrRef();
1576   d4->decrRef();
1577   d5->decrRef();
1578 }
1579
1580 void MEDCouplingBasicsTest5::testIntersect2DMeshesTmp5()
1581 {
1582   // coordinates
1583   DataArrayDouble *coords=DataArrayDouble::New();
1584   const double coordsData[376]={41,0,42,0,0,42,0,41,41.5,0,29.698484809834998,29.698484809834994,0,41.5,28.991378028648452,28.991378028648445,-42,0,-41,0,-29.698484809834994,29.698484809834998,-41.5,0,-28.991378028648445,28.991378028648452,0,-42,0,-41,-29.698484809835001,-29.698484809834994,0,-41.5,-28.991378028648455,-28.991378028648445,29.698484809834987,-29.698484809835001,28.991378028648441,-28.991378028648455,43,0,0,43,42.5,0,30.405591591021544,30.40559159102154,0,42.5,-43,0,-30.40559159102154,30.405591591021544,-42.5,0,0,-43,-30.405591591021551,-30.40559159102154,0,-42.5,30.405591591021537,-30.405591591021551,44,0,0,44,43.5,0,31.112698372208094,31.112698372208087,0,43.5,-44,0,-31.112698372208087,31.112698372208094,-43.5,0,0,-44,-31.112698372208097,-31.112698372208087,0,-43.5,31.112698372208083,-31.112698372208097,45,0,0,45,44.5,0,31.81980515339464,31.819805153394636,0,44.5,-45,0,-31.819805153394636,31.81980515339464,-44.5,0,0,-45,-31.819805153394647,-31.819805153394636,0,-44.5,31.819805153394629,-31.819805153394647,47,0,0,47,46,0,33.234018715767739,33.234018715767732,0,46,-47,0,-33.234018715767732,33.234018715767739,-46,0,0,-47,-33.234018715767739,-33.234018715767732,0,-46,33.234018715767725,-33.234018715767739,49,0,0,49,48,0,34.648232278140831,34.648232278140824,0,48,-49,0,-34.648232278140824,34.648232278140831,-48,0,0,-49,-34.648232278140839,-34.648232278140824,0,-48,34.648232278140817,-34.648232278140839,51,0,0,51,50,0,36.062445840513924,36.062445840513924,0,50,-51,0,-36.062445840513924,36.062445840513924,-50,0,0,-51,-36.062445840513931,-36.062445840513924,0,-50,36.062445840513917,-36.062445840513931,53,0,0,53,52,0,37.476659402887023,37.476659402887016,0,52,-53,0,-37.476659402887016,37.476659402887023,-52,0,0,-53,-37.47665940288703,-37.476659402887016,0,-52,37.476659402887009,-37.47665940288703,55,0,0,55,54,0,38.890872965260115,38.890872965260108,0,54,-55,0,-38.890872965260108,38.890872965260115,-54,0,0,-55,-38.890872965260122,-38.890872965260108,0,-54,38.890872965260101,-38.890872965260122,59,0,0,59,57,0,41.719300090006307,41.7193000900063,0,57,-59,0,-41.7193000900063,41.719300090006307,-57,0,0,-59,-41.719300090006314,-41.7193000900063,0,-57,41.719300090006293,-41.719300090006314,63,0,0,63,61,0,44.547727214752499,44.547727214752491,0,61,-63,0,-44.547727214752491,44.547727214752499,-61,0,0,-63,-44.547727214752506,-44.547727214752491,0,-61,44.547727214752484,-44.547727214752506,67,0,0,67,65,0,47.37615433949869,47.376154339498683,0,65,-67,0,-47.376154339498683,47.37615433949869,-65,0,0,-67,-47.376154339498697,-47.376154339498683,0,-65,47.376154339498676,-47.376154339498697,71,0,0,71,69,0,50.204581464244875,50.204581464244868,0,69,-71,0,-50.204581464244868,50.204581464244875,-69,0,0,-71,-50.204581464244889,-50.204581464244868,0,-69,50.20458146424486,-50.204581464244889,75,0,0,75,73,0,53.033008588991066,53.033008588991059,0,73,-75,0,-53.033008588991059,53.033008588991066,-73,0,0,-75,-53.033008588991073,-53.033008588991059,0,-73,53.033008588991052,-53.033008588991073,80,0,0,80,77.5,0,56.568542494923804,56.568542494923797,0,77.5,-80,0,-56.568542494923797,56.568542494923804,-77.5,0,0,-80,-56.568542494923818,-56.568542494923797,0,-77.5,56.56854249492379,-56.568542494923818};
1585   coords->useArray(coordsData,false,CPP_DEALLOC,188,2);
1586   coords->setName("");
1587   DataArrayInt *conn=DataArrayInt::New();
1588   const int connData[540]={8,0,1,2,3,4,5,6,7,8,3,2,8,9,6,10,11,12,8,9,8,13,14,11,15,16,17,8,14,13,1,0,16,18,4,19,8,1,20,21,2,22,23,24,5,8,2,21,25,8,24,26,27,10,8,8,25,28,13,27,29,30,15,8,13,28,20,1,30,31,22,18,8,20,32,33,21,34,35,36,23,8,21,33,37,25,36,38,39,26,8,25,37,40,28,39,41,42,29,8,28,40,32,20,42,43,34,31,8,32,44,45,33,46,47,48,35,8,33,45,49,37,48,50,51,38,8,37,49,52,40,51,53,54,41,8,40,52,44,32,54,55,46,43,8,44,56,57,45,58,59,60,47,8,45,57,61,49,60,62,63,50,8,49,61,64,52,63,65,66,53,8,52,64,56,44,66,67,58,55,8,56,68,69,57,70,71,72,59,8,57,69,73,61,72,74,75,62,8,61,73,76,64,75,77,78,65,8,64,76,68,56,78,79,70,67,8,68,80,81,69,82,83,84,71,8,69,81,85,73,84,86,87,74,8,73,85,88,76,87,89,90,77,8,76,88,80,68,90,91,82,79,8,80,92,93,81,94,95,96,83,8,81,93,97,85,96,98,99,86,8,85,97,100,88,99,101,102,89,8,88,100,92,80,102,103,94,91,8,92,104,105,93,106,107,108,95,8,93,105,109,97,108,110,111,98,8,97,109,112,100,111,113,114,101,8,100,112,104,92,114,115,106,103,8,104,116,117,105,118,119,120,107,8,105,117,121,109,120,122,123,110,8,109,121,124,112,123,125,126,113,8,112,124,116,104,126,127,118,115,8,116,128,129,117,130,131,132,119,8,117,129,133,121,132,134,135,122,8,121,133,136,124,135,137,138,125,8,124,136,128,116,138,139,130,127,8,128,140,141,129,142,143,144,131,8,129,141,145,133,144,146,147,134,8,133,145,148,136,147,149,150,137,8,136,148,140,128,150,151,142,139,8,140,152,153,141,154,155,156,143,8,141,153,157,145,156,158,159,146,8,145,157,160,148,159,161,162,149,8,148,160,152,140,162,163,154,151,8,152,164,165,153,166,167,168,155,8,153,165,169,157,168,170,171,158,8,157,169,172,160,171,173,174,161,8,160,172,164,152,174,175,166,163,8,164,176,177,165,178,179,180,167,8,165,177,181,169,180,182,183,170,8,169,181,184,172,183,185,186,173,8,172,184,176,164,186,187,178,175};
1589   conn->useArray(connData,false,CPP_DEALLOC,540,1);
1590   conn->setName("");
1591   DataArrayInt *connI=DataArrayInt::New();
1592   const int connIData[61]={0,9,18,27,36,45,54,63,72,81,90,99,108,117,126,135,144,153,162,171,180,189,198,207,216,225,234,243,252,261,270,279,288,297,306,315,324,333,342,351,360,369,378,387,396,405,414,423,432,441,450,459,468,477,486,495,504,513,522,531,540};
1593   connI->useArray(connIData,false,CPP_DEALLOC,61,1);
1594   connI->setName("");
1595   //
1596   MEDCouplingUMesh *m1=MEDCouplingUMesh::New("Fix",2);
1597   m1->setCoords(coords);
1598   m1->setConnectivity(conn,connI,true);
1599   coords->decrRef(); conn->decrRef(); connI->decrRef();
1600   //
1601   coords=DataArrayDouble::New();
1602   const double coordsData2[84]={46.5,-2.5,53.5,-2.5,53.5,2.5,46.5,2.5,50,-2.5,53.5,0,50,2.5,46.5,0,60.5,-2.5,60.5,2.5,57,-2.5,60.5,0,57,2.5,53.5,7.5,46.5,7.5,53.5,5,50,7.5,46.5,5,60.5,7.5,60.5,5,57,7.5,-2,47,2,47,2,53,-2,53,0,47,2,50,0,53,-2,50,6,47,6,53,4,47,6,50,4,53,2,59,-2,59,2,56,0,59,-2,56,6,59,6,56,4,59};
1603   coords->useArray(coordsData2,false,CPP_DEALLOC,42,2);  
1604   coords->setName("");
1605   // connectivity
1606   conn=DataArrayInt::New();
1607   const int connData2[72]={8,0,1,2,3,4,5,6,7,8,1,8,9,2,10,11,12,5,8,3,2,13,14,6,15,16,17,8,2,9,18,13,12,19,20,15,8,21,22,23,24,25,26,27,28,8,22,29,30,23,31,32,33,26,8,24,23,34,35,27,36,37,38,8,23,30,39,34,33,40,41,36};
1608   conn->useArray(connData2,false,CPP_DEALLOC,72,1);
1609   conn->setName("");
1610   connI=DataArrayInt::New();
1611   const int connIData2[9]={0,9,18,27,36,45,54,63,72};
1612   connI->useArray(connIData2,false,CPP_DEALLOC,9,1);
1613   connI->setName("");
1614   MEDCouplingUMesh *m2=MEDCouplingUMesh::New("Mobile",2);
1615   m2->setCoords(coords);
1616   m2->setConnectivity(conn,connI,true);
1617   coords->decrRef(); conn->decrRef(); connI->decrRef();
1618   //
1619   DataArrayInt *d1=0,*d2=0;
1620   MEDCouplingUMesh *m3=MEDCouplingUMesh::Intersect2DMeshes(m1,m2,1e-10,d1,d2);
1621   CPPUNIT_ASSERT_EQUAL(105,m3->getNumberOfCells());
1622   CPPUNIT_ASSERT_EQUAL(105,d1->getNumberOfTuples());
1623   CPPUNIT_ASSERT_EQUAL(105,d2->getNumberOfTuples());
1624   CPPUNIT_ASSERT_EQUAL(704,m3->getNumberOfNodes());
1625   //
1626   const double areaExpected[105]={-65.18804756198824,-65.18804756198824,-65.18804756198824,-65.18804756198824,-66.75884388878285,-66.75884388878285,-66.7588438887833,-66.75884388878308,-68.32964021557768,-68.32964021557768,-68.32964021557814,-68.32964021557791,-69.9004365423732,-69.9004365423732,-69.90043654237297,-69.90043654237297,-1.194568659706448,-1.0869994447159463,-142.2316939607081,-144.51326206513068,-144.5132620651309,-1.1945686597064424,-143.3186934054243,-5.002264310862817,-10.0261332846393,-3.9727823117092953,-7.290862524642649,-124.504404940456,-3.9727823117093237,-146.82366506060032,-150.79644737231024,-5.002264310862776,-145.79418306144626,-5.00208651738126,-10.054764051268958,-4.001067863263231,-8.027932154428669,-129.99378209314813,-4.001067863263216,-153.07856481622616,-157.0796326794898,-5.0020865173811915,-152.07754616210832,-5.001928880064381,-10.050590216368969,-4.00098721602491,-8.025810856794209,-136.28350081741684,-4.000987216024939,-159.36183077064402,-163.36281798667005,-5.0019288800643285,-158.36088910660442,-1.2991516319851801,-3.702636830195414,-3.7815130030068254,-6.265364371195623,-0.02516260900254963,-0.6553944641345026,-3.975752765070567,-7.368528340442765,-142.57249927881398,-0.02516260900254963,-3.9757527650706095,-165.64508791977525,-169.64600329384803,-1.299151631985167,-3.7026368301953885,-164.6442148316677,-10.00321285677458,-20.08414323176165,-8.001644468035863,-16.042954878437143,-304.0096070742277,-8.00164446803587,-350.1399180412005,-358.1415625092368,-10.003212856774468,-348.13834965246224,-3.794150313030109,-8.65049239704272,-0.02260276689354157,-0.5885167811200915,-370.2185414798688,-0.022602766893559393,-383.2517009710623,-383.2743037379555,-3.7941503130300576,-379.48015342492505,-408.40704496667513,-408.4070449666742,-408.4070449666742,-408.4070449666742,-433.53978619538975,-433.5397861953902,-433.5397861953911,-433.53978619539066,-458.67252742410983,-458.6725274241094,-458.67252742410983,-458.6725274241089,-608.6835766330232,-608.6835766330232,-608.6835766330232,-608.6835766330241};
1627   const int expected1[105]={0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,16,16,17,18,19,19,20,20,20,20,20,21,21,22,23,23,24,24,24,24,24,25,25,26,27,27,28,28,28,28,28,29,29,30,31,31,32,32,32,32,32,32,32,32,32,33,33,33,34,35,35,35,36,36,36,36,36,37,37,38,39,39,40,40,40,40,40,41,41,42,43,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59};
1628   const int expected2[105]={-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,2,-1,-1,-1,0,-1,0,2,4,5,-1,4,-1,-1,0,-1,0,2,4,5,-1,4,-1,-1,0,-1,0,2,4,5,-1,4,-1,-1,0,-1,0,1,2,3,4,5,6,7,-1,4,6,-1,-1,0,1,-1,1,3,6,7,-1,6,-1,-1,1,-1,1,3,6,7,-1,6,-1,-1,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1};
1629   MEDCouplingFieldDouble *f3f=m3->getMeasureField(ON_CELLS);
1630   const double *f3=f3f->getArray()->getConstPointer();
1631   for(int i=0;i<105;i++)
1632     {
1633       CPPUNIT_ASSERT_DOUBLES_EQUAL(areaExpected[i],f3[i],1e-10);
1634       CPPUNIT_ASSERT_EQUAL(expected1[i],d1->getIJ(i,0));
1635       CPPUNIT_ASSERT_EQUAL(expected2[i],d2->getIJ(i,0));
1636     }
1637   //
1638   f3f->decrRef();
1639   m3->decrRef();
1640   d1->decrRef();
1641   d2->decrRef();
1642   m2->decrRef();
1643   m1->decrRef();
1644 }
1645
1646 void MEDCouplingBasicsTest5::testDAIBuildUnique1()
1647 {
1648   DataArrayInt *d=DataArrayInt::New();
1649   const int dData[14]={1,2,2,3,3,3,3,4,5,5,7,7,7,19};
1650   d->useArray(dData,false,CPP_DEALLOC,14,1);
1651   const int expectedData[7]={1,2,3,4,5,7,19};
1652   //
1653   DataArrayInt *e=d->buildUnique();
1654   CPPUNIT_ASSERT_EQUAL(7,e->getNumberOfTuples());
1655   CPPUNIT_ASSERT_EQUAL(1,e->getNumberOfComponents());
1656   for(int i=0;i<7;i++)
1657     CPPUNIT_ASSERT_EQUAL(expectedData[i],e->getIJ(i,0));
1658   //
1659   e->decrRef();
1660   d->decrRef();
1661 }
1662
1663 void MEDCouplingBasicsTest5::testDAIPartitionByDifferentValues1()
1664 {
1665   const int data[9]={1,0,1,2,0,2,2,-3,2};
1666   const int expected1[4]={-3,0,1,2};
1667   const int expected2_0[1]={7};
1668   const int expected2_1[2]={1,4};
1669   const int expected2_2[2]={0,2};
1670   const int expected2_3[4]={3,5,6,8};
1671   DataArrayInt *d=DataArrayInt::New();
1672   d->useArray(data,false,CPP_DEALLOC,9,1);
1673   std::vector<int> f;
1674   static const int nbOfOutputsExpected=4;
1675   std::vector<DataArrayInt *> e=d->partitionByDifferentValues(f);
1676   d->decrRef();
1677   CPPUNIT_ASSERT_EQUAL(nbOfOutputsExpected,(int)e.size());
1678   CPPUNIT_ASSERT_EQUAL(nbOfOutputsExpected,(int)f.size());
1679   for(int i=0;i<nbOfOutputsExpected;i++)
1680     {
1681       CPPUNIT_ASSERT_EQUAL(expected1[i],f[i]);
1682     }
1683   CPPUNIT_ASSERT_EQUAL((std::size_t)1,e[0]->getNbOfElems());
1684   CPPUNIT_ASSERT_EQUAL((std::size_t)2,e[1]->getNbOfElems());
1685   CPPUNIT_ASSERT_EQUAL((std::size_t)2,e[2]->getNbOfElems());
1686   CPPUNIT_ASSERT_EQUAL((std::size_t)4,e[3]->getNbOfElems());
1687   CPPUNIT_ASSERT_EQUAL(1,e[0]->getNumberOfComponents());
1688   CPPUNIT_ASSERT_EQUAL(1,e[1]->getNumberOfComponents());
1689   CPPUNIT_ASSERT_EQUAL(1,e[2]->getNumberOfComponents());
1690   CPPUNIT_ASSERT_EQUAL(1,e[3]->getNumberOfComponents());
1691   CPPUNIT_ASSERT(std::equal(expected2_0,expected2_0+1,e[0]->begin()));
1692   CPPUNIT_ASSERT(std::equal(expected2_1,expected2_1+2,e[1]->begin()));
1693   CPPUNIT_ASSERT(std::equal(expected2_2,expected2_2+2,e[2]->begin()));
1694   CPPUNIT_ASSERT(std::equal(expected2_3,expected2_3+4,e[3]->begin()));
1695   e[0]->decrRef(); e[1]->decrRef(); e[2]->decrRef(); e[3]->decrRef();
1696 }
1697
1698 void MEDCouplingBasicsTest5::testDAICheckMonotonic1()
1699 {
1700   const int data1[6]={-1,0,2,2,4,5};
1701   const int data2[6]={6,2,0,-8,-9,-56};
1702   const int data3[6]={-1,0,3,2,4,6};
1703   const int data4[6]={7,5,2,3,0,-6};
1704   DataArrayInt *d=DataArrayInt::New();
1705   d->useArray(data1,false,CPP_DEALLOC,6,1);
1706   CPPUNIT_ASSERT(d->isMonotonic(true));
1707   CPPUNIT_ASSERT(!d->isMonotonic(false));
1708   d->checkMonotonic(true);
1709   CPPUNIT_ASSERT_THROW(d->checkMonotonic(false),INTERP_KERNEL::Exception);
1710   d->useArray(data2,false,CPP_DEALLOC,6,1);
1711   CPPUNIT_ASSERT(d->isMonotonic(false));
1712   CPPUNIT_ASSERT(!d->isMonotonic(true));
1713   d->checkMonotonic(false);
1714   CPPUNIT_ASSERT_THROW(d->checkMonotonic(true),INTERP_KERNEL::Exception);
1715   d->useArray(data3,false,CPP_DEALLOC,6,1);
1716   CPPUNIT_ASSERT(!d->isMonotonic(false));
1717   CPPUNIT_ASSERT(!d->isMonotonic(true));
1718   CPPUNIT_ASSERT_THROW(d->checkMonotonic(true),INTERP_KERNEL::Exception);
1719   CPPUNIT_ASSERT_THROW(d->checkMonotonic(false),INTERP_KERNEL::Exception);
1720   d->useArray(data4,false,CPP_DEALLOC,6,1);
1721   CPPUNIT_ASSERT(!d->isMonotonic(false));
1722   CPPUNIT_ASSERT(!d->isMonotonic(true));
1723   CPPUNIT_ASSERT_THROW(d->checkMonotonic(true),INTERP_KERNEL::Exception);
1724   CPPUNIT_ASSERT_THROW(d->checkMonotonic(false),INTERP_KERNEL::Exception);
1725   d->useArray(data4,false,CPP_DEALLOC,0,1);
1726   CPPUNIT_ASSERT(d->isMonotonic(true));
1727   CPPUNIT_ASSERT(d->isMonotonic(false));
1728   d->checkMonotonic(true);
1729   d->checkMonotonic(false);
1730   d->useArray(data4,false,CPP_DEALLOC,3,2);//throw because nbComp!=1
1731   CPPUNIT_ASSERT_THROW(d->isMonotonic(true),INTERP_KERNEL::Exception);
1732   CPPUNIT_ASSERT_THROW(d->isMonotonic(false),INTERP_KERNEL::Exception);
1733   CPPUNIT_ASSERT_THROW(d->checkMonotonic(true),INTERP_KERNEL::Exception);
1734   CPPUNIT_ASSERT_THROW(d->checkMonotonic(false),INTERP_KERNEL::Exception);
1735   d->decrRef();
1736 }
1737
1738 void MEDCouplingBasicsTest5::testIntersect2DMeshesTmp6()
1739 {
1740   // coordinates
1741   DataArrayDouble *coords=DataArrayDouble::New();
1742   const double coordsData[16]={2.7554552980815448e-15,45,-45,5.5109105961630896e-15,-31.819805153394636,31.81980515339464,2.8779199779962799e-15,47,2.8166876380389124e-15,46,-47,5.7558399559925599e-15,-33.234018715767732,33.234018715767739,-46,5.6333752760778247e-15};
1743   coords->useArray(coordsData,false,CPP_DEALLOC,8,2);
1744   // connectivity
1745   DataArrayInt *conn=DataArrayInt::New();
1746   const int connData[9]={8,0,3,5,1,4,6,7,2};
1747   conn->useArray(connData,false,CPP_DEALLOC,9,1);
1748   DataArrayInt *connI=DataArrayInt::New();
1749   const int connIData[2]={0,9};
1750   connI->useArray(connIData,false,CPP_DEALLOC,2,1);
1751   MEDCouplingUMesh *m1=MEDCouplingUMesh::New("Fixe",2);
1752   m1->setCoords(coords);
1753   m1->setConnectivity(conn,connI,true);
1754   coords->decrRef(); conn->decrRef(); connI->decrRef();
1755   //
1756   coords=DataArrayDouble::New();
1757   const double coordsData2[26]={-7.3800475508445391,41.854329503018846,-3.7041190667754655,42.338274668899189,-3.7041190667754655,45.338274668899189,-7.3800475508445382,44.854329503018839,-5.5473631693521845,42.136406608386956,-3.7041190667754655,43.838274668899189,-5.5420833088100014,45.09630208595901,-7.3800475508445382,43.354329503018839,-3.7041190667754651,52.338274668899189,-7.3800475508445382,51.854329503018839,-3.7041190667754655,48.838274668899189,-5.5420833088100014,52.09630208595901,-7.3800475508445382,48.354329503018839};
1758   coords->useArray(coordsData2,false,CPP_DEALLOC,13,2);
1759   // connectivity
1760   conn=DataArrayInt::New();
1761   const int connData2[18]={8,0,1,2,3,4,5,6,7,8,3,2,8,9,6,10,11,12};
1762   conn->useArray(connData2,false,CPP_DEALLOC,18,1);
1763   connI=DataArrayInt::New();
1764   const int connIData2[3]={0,9,18};
1765   connI->useArray(connIData2,false,CPP_DEALLOC,3,1);
1766   //
1767   MEDCouplingUMesh *m2=MEDCouplingUMesh::New("Mobile",2);
1768   m2->setCoords(coords);
1769   m2->setConnectivity(conn,connI,true);
1770   coords->decrRef(); conn->decrRef(); connI->decrRef();
1771   //
1772   DataArrayInt *d1=0,*d2=0;
1773   MEDCouplingUMesh *m3=MEDCouplingUMesh::Intersect2DMeshes(m1,m2,1e-10,d1,d2);
1774   CPPUNIT_ASSERT_EQUAL(4,m3->getNumberOfCells());
1775   CPPUNIT_ASSERT_EQUAL(4,d1->getNumberOfTuples());
1776   CPPUNIT_ASSERT_EQUAL(4,d2->getNumberOfTuples());
1777   CPPUNIT_ASSERT_EQUAL(43,m3->getNumberOfNodes());
1778   bool areMerged=false;
1779   int newNbOfNodes=-1;
1780   m3->mergeNodes(1e-12,areMerged,newNbOfNodes)->decrRef();
1781   CPPUNIT_ASSERT_EQUAL(35,m3->getNumberOfNodes());
1782   m3->zipCoords();
1783   CPPUNIT_ASSERT_EQUAL(23,m3->getNumberOfNodes());
1784   //
1785   MEDCouplingFieldDouble *f=m3->getMeasureField(true);
1786   const double *vals=f->getArray()->getConstPointer();
1787   const double valuesExpected[4]={1.6603638692585716,5.747555728471923,129.68907101754394,7.4162714498559694};
1788   for(int i=0;i<4;i++)
1789     CPPUNIT_ASSERT_DOUBLES_EQUAL(valuesExpected[i],vals[i],1e-12);
1790   f->decrRef();
1791   //
1792   m1->decrRef();
1793   m2->decrRef();
1794   m3->decrRef();
1795   d1->decrRef();
1796   d2->decrRef();
1797 }
1798
1799 void MEDCouplingBasicsTest5::testDAIBuildSubstractionOptimized1()
1800 {
1801   const int tab1[7]={1,3,5,6,7,9,13};
1802   const int tab2[3]={3,5,9};
1803   const int tab3[3]={1,3,5};
1804   DataArrayInt *da1=DataArrayInt::New(); da1->useArray(tab1,false,CPP_DEALLOC,7,1);
1805   DataArrayInt *da2=DataArrayInt::New(); da2->useArray(tab2,false,CPP_DEALLOC,3,1);
1806   DataArrayInt *da3=DataArrayInt::New(); da3->useArray(tab3,false,CPP_DEALLOC,3,1);
1807   DataArrayInt *da4=DataArrayInt::New(); da4->useArray(tab1,false,CPP_DEALLOC,7,1);
1808   //
1809   DataArrayInt *a=0;
1810   a=da1->buildSubstractionOptimized(da2);
1811   CPPUNIT_ASSERT_EQUAL(4,a->getNumberOfTuples());
1812   CPPUNIT_ASSERT_EQUAL(1,a->getNumberOfComponents());
1813   const int expected1_0[4]={1,6,7,13};
1814   CPPUNIT_ASSERT(std::equal(expected1_0,expected1_0+4,a->begin()));
1815   a->decrRef();
1816   //
1817   a=da1->buildSubstractionOptimized(da3);
1818   CPPUNIT_ASSERT_EQUAL(4,a->getNumberOfTuples());
1819   CPPUNIT_ASSERT_EQUAL(1,a->getNumberOfComponents());
1820   const int expected2_0[4]={6,7,9,13};
1821   CPPUNIT_ASSERT(std::equal(expected2_0,expected2_0+4,a->begin()));
1822   a->decrRef();
1823   //
1824   a=da1->buildSubstractionOptimized(da4);
1825   CPPUNIT_ASSERT_EQUAL(0,a->getNumberOfTuples());
1826   CPPUNIT_ASSERT_EQUAL(1,a->getNumberOfComponents());
1827   a->decrRef();
1828   //
1829   da1->decrRef();
1830   da2->decrRef();
1831   da3->decrRef();
1832   da4->decrRef();
1833 }
1834
1835 void MEDCouplingBasicsTest5::testDAIIsStrictlyMonotonic1()
1836 {
1837   const int tab1[7]={1,3,5,6,7,9,13};
1838   DataArrayInt *da1=DataArrayInt::New(); da1->useArray(tab1,false,CPP_DEALLOC,7,1);
1839   CPPUNIT_ASSERT(da1->isStrictlyMonotonic(true));
1840   da1->checkStrictlyMonotonic(true);
1841   CPPUNIT_ASSERT(da1->isMonotonic(true));
1842   da1->checkMonotonic(true);
1843   CPPUNIT_ASSERT(!da1->isStrictlyMonotonic(false));
1844   CPPUNIT_ASSERT_THROW(da1->checkStrictlyMonotonic(false),INTERP_KERNEL::Exception);
1845   CPPUNIT_ASSERT(!da1->isMonotonic(false));
1846   CPPUNIT_ASSERT_THROW(da1->checkMonotonic(false),INTERP_KERNEL::Exception);
1847   da1->decrRef();
1848   //
1849   int tab2[7]={1,3,5,6,6,9,13};
1850   da1=DataArrayInt::New(); da1->useArray(tab2,false,CPP_DEALLOC,7,1);
1851   CPPUNIT_ASSERT(!da1->isStrictlyMonotonic(true));
1852   CPPUNIT_ASSERT_THROW(da1->checkStrictlyMonotonic(true),INTERP_KERNEL::Exception);
1853   CPPUNIT_ASSERT(da1->isMonotonic(true));
1854   da1->checkMonotonic(true);
1855   CPPUNIT_ASSERT(!da1->isStrictlyMonotonic(false));
1856   CPPUNIT_ASSERT_THROW(da1->checkStrictlyMonotonic(false),INTERP_KERNEL::Exception);
1857   CPPUNIT_ASSERT(!da1->isMonotonic(false));
1858   CPPUNIT_ASSERT_THROW(da1->checkMonotonic(false),INTERP_KERNEL::Exception);
1859   da1->decrRef();
1860   //
1861   const int tab3[7]={1,3,5,6,5,9,13};
1862   da1=DataArrayInt::New(); da1->useArray(tab3,false,CPP_DEALLOC,7,1);
1863   CPPUNIT_ASSERT(!da1->isStrictlyMonotonic(true));
1864   CPPUNIT_ASSERT_THROW(da1->checkStrictlyMonotonic(true),INTERP_KERNEL::Exception);
1865   CPPUNIT_ASSERT(!da1->isMonotonic(true));
1866   CPPUNIT_ASSERT_THROW(da1->checkMonotonic(true),INTERP_KERNEL::Exception);
1867   CPPUNIT_ASSERT(!da1->isStrictlyMonotonic(false));
1868   CPPUNIT_ASSERT_THROW(da1->checkStrictlyMonotonic(false),INTERP_KERNEL::Exception);
1869   CPPUNIT_ASSERT(!da1->isMonotonic(false));
1870   CPPUNIT_ASSERT_THROW(da1->checkMonotonic(false),INTERP_KERNEL::Exception);
1871   da1->decrRef();
1872   //
1873   const int tab4[7]={13,9,7,6,5,3,1};
1874   da1=DataArrayInt::New(); da1->useArray(tab4,false,CPP_DEALLOC,7,1);
1875   CPPUNIT_ASSERT(!da1->isStrictlyMonotonic(true));
1876   CPPUNIT_ASSERT_THROW(da1->checkStrictlyMonotonic(true),INTERP_KERNEL::Exception);
1877   CPPUNIT_ASSERT(!da1->isMonotonic(true));
1878   CPPUNIT_ASSERT_THROW(da1->checkMonotonic(true),INTERP_KERNEL::Exception);
1879   CPPUNIT_ASSERT(da1->isStrictlyMonotonic(false));
1880   da1->checkStrictlyMonotonic(false);
1881   CPPUNIT_ASSERT(da1->isMonotonic(false));
1882   da1->checkMonotonic(false);
1883   da1->decrRef();
1884   //
1885   const int tab5[7]={13,9,6,6,5,3,1};
1886   da1=DataArrayInt::New(); da1->useArray(tab5,false,CPP_DEALLOC,7,1);
1887   CPPUNIT_ASSERT(!da1->isStrictlyMonotonic(true));
1888   CPPUNIT_ASSERT_THROW(da1->checkStrictlyMonotonic(true),INTERP_KERNEL::Exception);
1889   CPPUNIT_ASSERT(!da1->isMonotonic(true));
1890   CPPUNIT_ASSERT_THROW(da1->checkMonotonic(true),INTERP_KERNEL::Exception);
1891   CPPUNIT_ASSERT(!da1->isStrictlyMonotonic(false));
1892   CPPUNIT_ASSERT_THROW(da1->checkStrictlyMonotonic(false),INTERP_KERNEL::Exception);
1893   CPPUNIT_ASSERT(da1->isMonotonic(false));
1894   da1->checkMonotonic(false);
1895   da1->decrRef();
1896   //
1897   const int tab6[7]={13,9,5,6,5,3,1};
1898   da1=DataArrayInt::New(); da1->useArray(tab6,false,CPP_DEALLOC,7,1);
1899   CPPUNIT_ASSERT(!da1->isStrictlyMonotonic(true));
1900   CPPUNIT_ASSERT_THROW(da1->checkStrictlyMonotonic(true),INTERP_KERNEL::Exception);
1901   CPPUNIT_ASSERT(!da1->isMonotonic(true));
1902   CPPUNIT_ASSERT_THROW(da1->checkMonotonic(true),INTERP_KERNEL::Exception);
1903   CPPUNIT_ASSERT(!da1->isStrictlyMonotonic(false));
1904   CPPUNIT_ASSERT_THROW(da1->checkStrictlyMonotonic(false),INTERP_KERNEL::Exception);
1905   CPPUNIT_ASSERT(!da1->isMonotonic(false));
1906   CPPUNIT_ASSERT_THROW(da1->checkMonotonic(false),INTERP_KERNEL::Exception);
1907   da1->decrRef();
1908   //
1909   da1=DataArrayInt::New(); da1->useArray(tab1,false,CPP_DEALLOC,0,1);
1910   CPPUNIT_ASSERT(da1->isStrictlyMonotonic(true));
1911   da1->checkStrictlyMonotonic(true);
1912   CPPUNIT_ASSERT(da1->isMonotonic(true));
1913   da1->checkMonotonic(true);
1914   CPPUNIT_ASSERT(da1->isStrictlyMonotonic(false));
1915   da1->checkStrictlyMonotonic(false);
1916   CPPUNIT_ASSERT(da1->isMonotonic(false));
1917   da1->checkMonotonic(false);
1918   da1->decrRef();
1919   //
1920   da1=DataArrayInt::New(); da1->useArray(tab1,false,CPP_DEALLOC,1,1);
1921   CPPUNIT_ASSERT(da1->isStrictlyMonotonic(true));
1922   da1->checkStrictlyMonotonic(true);
1923   CPPUNIT_ASSERT(da1->isMonotonic(true));
1924   da1->checkMonotonic(true);
1925   CPPUNIT_ASSERT(da1->isStrictlyMonotonic(false));
1926   da1->checkStrictlyMonotonic(false);
1927   CPPUNIT_ASSERT(da1->isMonotonic(false));
1928   da1->checkMonotonic(false);
1929   da1->decrRef();
1930 }
1931
1932 void MEDCouplingBasicsTest5::testSimplexize3()
1933 {
1934   const int conn[24]={0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23};
1935   MEDCouplingUMesh *m=MEDCouplingUMesh::New("toto",3);
1936   m->allocateCells(0);
1937   m->insertNextCell(INTERP_KERNEL::NORM_TETRA4,4,conn+0);
1938   m->insertNextCell(INTERP_KERNEL::NORM_HEXA8,8,conn+4);
1939   m->insertNextCell(INTERP_KERNEL::NORM_HEXA8,8,conn+12);
1940   m->insertNextCell(INTERP_KERNEL::NORM_TETRA4,4,conn+20);
1941   const double coords[72]={0.,0.,0.,0.,1.,0.,1.,0.,0.,0.,0.,1.,2.,0.,0.,2.,1.,0.,3.,1.,0.,3.,0.,0.,2.,0.,1.,2.,1.,1.,3.,1.,1.,3.,0.,1.,4.,0.,0.,4.,1.,0.,5.,1.,0.,5.,0.,0.,4.,0.,1.,4.,1.,1.,5.,1.,1.,5.,0.,1.,6.,0.,0.,6.,1.,0.,7.,0.,0.,6.,0.,1.};
1942   DataArrayDouble *c=DataArrayDouble::New();
1943   c->useArray(coords,false,CPP_DEALLOC,24,3);
1944   m->setCoords(c);
1945   c->decrRef();
1946   m->checkCoherency2();
1947   //
1948   MEDCouplingUMesh *m1=static_cast<MEDCouplingUMesh *>(m->deepCpy());
1949   DataArrayInt *d1=m1->simplexize(INTERP_KERNEL::PLANAR_FACE_5);
1950   m1->checkCoherency2();
1951   MEDCouplingFieldDouble *f1=m1->getMeasureField(ON_CELLS);
1952   const double vol1Expected[12]={1./6, 1./6, 1./6,1./6, 1./6, 1./3,1./6, 1./6, 1./6, 1./6, 1./3, 1./6};
1953   CPPUNIT_ASSERT_EQUAL(1,f1->getArray()->getNumberOfComponents());
1954   CPPUNIT_ASSERT_EQUAL(12,f1->getArray()->getNumberOfTuples());
1955   for(int i=0;i<12;i++)
1956     CPPUNIT_ASSERT_DOUBLES_EQUAL(vol1Expected[i],f1->getIJ(i,0),1e-12);
1957   const int connExpected1[60]={14,0,1,2,3,14,4,9,5,6,14,4,8,9,11,14,4,7,11,6,14,9,11,10,6,14,4,9,6,11,14,12,17,13,14,14,12,16,17,19,14,12,15,19,14,14,17,19,18,14,14,12,17,14,19,14,20,21,22,23};
1958   const int connIExpected1[13]={0,5,10,15,20,25,30,35,40,45,50,55,60};
1959   const int n2o1[12]={0,1,1,1,1,1,2,2,2,2,2,3};
1960   CPPUNIT_ASSERT_EQUAL(1,m1->getNodalConnectivity()->getNumberOfComponents());
1961   CPPUNIT_ASSERT_EQUAL(60,m1->getNodalConnectivity()->getNumberOfTuples());
1962   CPPUNIT_ASSERT_EQUAL(1,m1->getNodalConnectivityIndex()->getNumberOfComponents());
1963   CPPUNIT_ASSERT_EQUAL(13,m1->getNodalConnectivityIndex()->getNumberOfTuples());
1964   CPPUNIT_ASSERT(std::equal(connExpected1,connExpected1+60,m1->getNodalConnectivity()->begin()));
1965   CPPUNIT_ASSERT(std::equal(connIExpected1,connIExpected1+13,m1->getNodalConnectivityIndex()->begin()));
1966   CPPUNIT_ASSERT_EQUAL(1,d1->getNumberOfComponents());
1967   CPPUNIT_ASSERT_EQUAL(12,d1->getNumberOfTuples());
1968   CPPUNIT_ASSERT(std::equal(n2o1,n2o1+12,d1->begin()));
1969   f1->decrRef();
1970   m1->decrRef();
1971   d1->decrRef();
1972   //
1973   MEDCouplingUMesh *m2=static_cast<MEDCouplingUMesh *>(m->deepCpy());
1974   DataArrayInt *d2=m2->simplexize(INTERP_KERNEL::PLANAR_FACE_6);
1975   m2->checkCoherency2();
1976   MEDCouplingFieldDouble *f2=m2->getMeasureField(ON_CELLS);
1977   const double vol2Expected[14]={1./6, 1./6, 1./6,1./6, 1./6, 1./6,1./6,1./6, 1./6, 1./6, 1./6, 1./6,1./6,1./6};
1978   CPPUNIT_ASSERT_EQUAL(1,f2->getArray()->getNumberOfComponents());
1979   CPPUNIT_ASSERT_EQUAL(14,f2->getArray()->getNumberOfTuples());
1980   for(int i=0;i<14;i++)
1981     CPPUNIT_ASSERT_DOUBLES_EQUAL(vol2Expected[i],f2->getIJ(i,0),1e-12);
1982   const int connExpected2[70]={14,0,1,2,3,14,4,9,5,10,14,4,5,6,10,14,4,8,9,10,14,4,11,8,10,14,4,6,7,10,14,4,7,11,10,14,12,17,13,18,14,12,13,14,18,14,12,16,17,18,14,12,19,16,18,14,12,14,15,18,14,12,15,19,18,14,20,21,22,23};
1983   const int connIExpected2[15]={0,5,10,15,20,25,30,35,40,45,50,55,60,65,70};
1984   const int n2o2[14]={0,1,1,1,1,1,1,2,2,2,2,2,2,3};
1985   CPPUNIT_ASSERT_EQUAL(1,m2->getNodalConnectivity()->getNumberOfComponents());
1986   CPPUNIT_ASSERT_EQUAL(70,m2->getNodalConnectivity()->getNumberOfTuples());
1987   CPPUNIT_ASSERT_EQUAL(1,m2->getNodalConnectivityIndex()->getNumberOfComponents());
1988   CPPUNIT_ASSERT_EQUAL(15,m2->getNodalConnectivityIndex()->getNumberOfTuples());
1989   CPPUNIT_ASSERT(std::equal(connExpected2,connExpected2+70,m2->getNodalConnectivity()->begin()));
1990   CPPUNIT_ASSERT(std::equal(connIExpected2,connIExpected2+15,m2->getNodalConnectivityIndex()->begin()));
1991   CPPUNIT_ASSERT_EQUAL(1,d2->getNumberOfComponents());
1992   CPPUNIT_ASSERT_EQUAL(14,d2->getNumberOfTuples());
1993   CPPUNIT_ASSERT(std::equal(n2o2,n2o2+14,d2->begin()));
1994   f2->decrRef();
1995   m2->decrRef();
1996   d2->decrRef();
1997   //
1998   m->decrRef();
1999 }