DUNE-FEM (unstable)

mappertest.hh
1#ifndef DUNE_FEM_LAGRANGEMAPPER_TEST_HH
2#define DUNE_FEM_LAGRANGEMAPPER_TEST_HH
3
4#include <string>
5
6#include <dune/fem/gridpart/leafgridpart.hh>
7
8namespace Dune
9{
10
11 namespace Fem
12 {
13
14 template< class Grid >
15 class LagrangeMapper_Test
16 {
17 public:
18 typedef Grid GridType;
19
20 typedef LeafGridPart< GridType > GridPartType;
21
22 LagrangeMapper_Test( std :: string gridFile )
23 : gridFile_( gridFile )
24 {
25 }
26
27 virtual void run();
28
29 private:
30 template< class SpaceType >
31 void checkDiscreteFunction( const SpaceType &space );
32
33 std :: string gridFile_;
34 };
35
36 } // namespace Fem
37
38} //namespace Dune
39
40#endif // DUNE_FEM_LAGRANGEMAPPER_TEST_HH
A vector valued function space.
Definition: functionspace.hh:60
Dune namespace.
Definition: alignedallocator.hh:13
Creative Commons License   |  Legal Statements / Impressum  |  Hosted by TU Dresden  |  generated with Hugo v0.111.3 (Jul 27, 22:29, 2024)