From 2b93624f0bf00f84a092b519f39d16ddd08ea323 Mon Sep 17 00:00:00 2001 From: Christophe Geuzaine <cgeuzaine@ulg.ac.be> Date: Sun, 21 Aug 2016 12:53:52 +0000 Subject: [PATCH] --- Geo/GModel.cpp | 9 +-------- doc/VERSIONS.txt | 14 +++++++------- 2 files changed, 8 insertions(+), 15 deletions(-) diff --git a/Geo/GModel.cpp b/Geo/GModel.cpp index bbee5dfdc4..6a6c8de608 100644 --- a/Geo/GModel.cpp +++ b/Geo/GModel.cpp @@ -1776,15 +1776,11 @@ int GModel::removeDuplicateMeshVertices(double tolerance) } } - // --- replace vertices in the periodic copies - + // replace vertices in the periodic copies for(unsigned int i = 0; i < entities.size(); i++){ - GEntity* ge = entities[i]; - std::map<MVertex*,MVertex*>& corrVtcs = ge->correspondingVertices; std::map<MVertex*,MVertex*>::iterator cIter; - for (cIter=newVertex.begin();cIter!=newVertex.end();++cIter) { MVertex* oldTgt = cIter->first; MVertex* newTgt = cIter->second; @@ -1795,12 +1791,9 @@ int GModel::removeDuplicateMeshVertices(double tolerance) corrVtcs[newTgt] = src; } } - for (cIter=corrVtcs.begin();cIter!=corrVtcs.end();++cIter) { - MVertex* oldSrc = cIter->second; std::map<MVertex*,MVertex*>::iterator nIter = newVertex.find(oldSrc); - if (nIter != newVertex.end()) { MVertex* tgt = cIter->first; MVertex* newSrc = nIter->second; diff --git a/doc/VERSIONS.txt b/doc/VERSIONS.txt index cd435984cb..8ed30eac51 100644 --- a/doc/VERSIONS.txt +++ b/doc/VERSIONS.txt @@ -1,12 +1,12 @@ -2.13.2: small improvements (scale labels, periodic and high-order meshes) and -bug fixes. +2.13.2 (August 18, 2016)): small improvements (scale labels, periodic and +high-order meshes) and bug fixes. -2.13.1: small bug fixes. +2.13.1 (July 15, 2016): small bug fixes. -2.13.0: new ONELAB 1.2 protocol with native support for lists; new experimental -3D boundary recovery code and 3D refinement algorithm; better adaptive -visualization of quads and hexahedra; fixed several regressions introduced in -2.12. +2.13.0 (July 11, 2016): new ONELAB 1.2 protocol with native support for lists; +new experimental 3D boundary recovery code and 3D refinement algorithm; better +adaptive visualization of quads and hexahedra; fixed several regressions +introduced in 2.12. 2.12.0 (March 5, 2016): improved interactive definition of physical groups and handling of ONELAB clients; improved full quad algorithm; added support for list -- GitLab