Class documentation of Concepts

Loading...
Searching...
No Matches
estimator.pypp.hh
1#ifndef estimator_pypp_hh
2#define estimator_pypp_hh
3
4#include "estimator/marking.hh"
5#include "estimator/refinement.hh"
8#include "geometry/square.hh"
9
10inline void export_hp2D_templates(){
11
12#ifdef GEN_PYTHON
13 std::cout << sizeof(estimator::Marking);
14 std::cout << sizeof(estimator::AMarking);
15 std::cout << sizeof(estimator::BMarking);
16 std::cout << sizeof(estimator::MVMarking);
17 std::cout << sizeof(estimator::Refinement<concepts::Real>);
19 std::cout << sizeof(estimator::Prediction<concepts::Real,2>);
21
22 concepts::Square mesh(1, 1, 1);
23 hp2D::hpAdaptiveSpaceH1 space(mesh,2,3);
25#endif
26}
27
28
29
30
31#endif