]> SALOME platform Git repositories - tools/medcoupling.git/commit
Salome HOME
creation of a renumbering tool that :
authorvbd <vbd>
Tue, 15 Sep 2009 09:59:17 +0000 (09:59 +0000)
committervbd <vbd>
Tue, 15 Sep 2009 09:59:17 +0000 (09:59 +0000)
commiteb01444eb94f0ba718529166a66f6c8ee0d86395
tree8769243eb3df31086bf739760c453416306a3daf
parent877d905dd786de8037d507cf73a65c57f57dc48b
creation of a renumbering tool that :
- takes as input a MED file (with only one cell type)
- as output creates another file with the same topology, but with renumbered cells so that the mesh is more suitable for numerical computation.

The renumbering can be computed with reverse cuthill mckee algorithm (boost) or with nested dissection (metis)
src/RENUMBER/Makefile.am [new file with mode: 0644]
src/RENUMBER/RENUMBER_BOOSTRenumbering.cxx [new file with mode: 0644]
src/RENUMBER/RENUMBER_BOOSTRenumbering.hxx [new file with mode: 0644]
src/RENUMBER/RENUMBER_METISRenumbering.cxx [new file with mode: 0644]
src/RENUMBER/RENUMBER_METISRenumbering.hxx [new file with mode: 0644]
src/RENUMBER/RENUMBER_Renumbering.cxx [new file with mode: 0644]
src/RENUMBER/RENUMBER_Renumbering.hxx [new file with mode: 0644]
src/RENUMBER/RenumberingFactory.cxx [new file with mode: 0644]
src/RENUMBER/RenumberingFactory.hxx [new file with mode: 0644]
src/RENUMBER/renumbering.cxx [new file with mode: 0644]
src/RENUMBER/testRenumbering.py [new file with mode: 0755]