Toast++  1.0.2 (r.539)
Forward and inverse modelling in optical tomography
meshopt.h
1 // -*-C++-*-
2 // ============================================================================
3 // meshopt
4 // Mesh optimisation utility routines
5 // ============================================================================
6 
7 #ifndef __MESHOPT_H
8 #define __MESHOPT_H
9 
10 FELIB int SortBndToEnd (Mesh &mesh, int *perm);
11 FELIB int Optimise_MinBandwidth (Mesh &mesh, int *perm, int ofs, int len);
12 FELIB int Optimise_MMD (Mesh &mesh, int *perm, int ofs, int len);
13 FELIB int Optimise_Tinney2 (Mesh &mesh, int *perm, int ofs, int len);
14 
15 #endif // !__MESHOPT_H
Finite-element mesh management.
Definition: mesh.h:145