FEAT 3
Finite Element Analysis Toolbox
Loading...
Searching...
No Matches
validate_structured_meshes.hpp
1// FEAT3: Finite Element Analysis Toolbox, Version 3
2// Copyright (C) 2010 by Stefan Turek & the FEAT group
3// FEAT3 is released under the GNU General Public License version 3,
4// see the file 'copyright.txt' in the top level directory for details.
5
6#pragma once
7
8// includes, FEAT
9#include <kernel/geometry/structured_mesh.hpp>
10
11namespace FEAT
12{
13 namespace Geometry
14 {
16 namespace TestAux
17 {
18
19 void validate_structured_mesh_2d(const StructuredMesh<2>* mesh);
20 void validate_structured_mesh_3d(const StructuredMesh<3>* mesh);
21
22 } // namespace TestAux
24 } // namespace Geometry
25} // namespace FEAT
FEAT namespace.
Definition: adjactor.hpp:12