From 5cb203cbe5e9f87df939b3597e33c62f197664ad Mon Sep 17 00:00:00 2001 From: Sebastien Blaise <sebastien.blaise@uclouvain.be> Date: Tue, 20 Nov 2012 19:10:50 +0000 Subject: [PATCH] setOrderN preserves partitioning information (2) --- Mesh/HighOrder.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Mesh/HighOrder.cpp b/Mesh/HighOrder.cpp index ea8158c017..8439e342d9 100644 --- a/Mesh/HighOrder.cpp +++ b/Mesh/HighOrder.cpp @@ -801,9 +801,9 @@ static void setHighOrder(GEdge *ge, edgeContainer &edgeVertices, bool linear, std::vector<MVertex*> ve; getEdgeVertices(ge, l, ve, edgeVertices, linear, nbPts); if(nbPts == 1) - lines2.push_back(new MLine3(l->getVertex(0), l->getVertex(1), ve[0])); + lines2.push_back(new MLine3(l->getVertex(0), l->getVertex(1), ve[0], l->getPartition())); else - lines2.push_back(new MLineN(l->getVertex(0), l->getVertex(1), ve)); + lines2.push_back(new MLineN(l->getVertex(0), l->getVertex(1), ve, l->getPartition())); delete l; } ge->lines = lines2; -- GitLab