From: Anthony GEAY Date: Tue, 17 Nov 2020 16:02:45 +0000 (+0100) Subject: MEDFileMeshLL::renumberNodesInConnWithoutComputation did not notify correctly wich... X-Git-Tag: V9_6_asterxx_0~3 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=596b50e6b5e2d69049ffa94a10439ece802c9dca;p=tools%2Fmedcoupling.git MEDFileMeshLL::renumberNodesInConnWithoutComputation did not notify correctly wich internal DS was changed --- diff --git a/src/MEDLoader/MEDFileMeshLL.cxx b/src/MEDLoader/MEDFileMeshLL.cxx index 3e476b2b9..c81c1bfb2 100644 --- a/src/MEDLoader/MEDFileMeshLL.cxx +++ b/src/MEDLoader/MEDFileMeshLL.cxx @@ -1787,6 +1787,9 @@ void MEDFileUMeshAggregateCompute::renumberNodesInConnWithoutComputation(const m if(!m) return; m->renumberNodesInConn(newNodeNumbersO2N); + // if _mp_time == _m_time notify for future clients that _m_parts is obsolete + _m_parts.clear(); + _m_time = std::max(_m_time,_mp_time+1); } }