You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
644 B
28 lines
644 B
2 years ago
|
#ifndef MEDUSA_MEDUSA_HPP_
|
||
|
#define MEDUSA_MEDUSA_HPP_
|
||
|
|
||
|
/**
|
||
|
* @file
|
||
|
* Main header file that includes most other components.
|
||
|
*
|
||
|
* @example test/end2end/cantilever_beam_implicit.cpp
|
||
|
* @example test/end2end/complex_numbers.cpp
|
||
|
* @example test/end2end/diffusion_explicit.cpp
|
||
|
* @example test/end2end/poisson_explicit.cpp
|
||
|
* @example test/end2end/poisson_implicit.cpp
|
||
|
*/
|
||
|
|
||
|
#include "Config.hpp"
|
||
|
#include "Medusa_fwd.hpp"
|
||
|
|
||
|
#include "Domain.hpp"
|
||
|
#include "Approximations.hpp"
|
||
|
#include "Interpolants.hpp"
|
||
|
#include "Integrators.hpp"
|
||
|
#include "IO.hpp"
|
||
|
#include "Operators.hpp"
|
||
|
#include "Types.hpp"
|
||
|
#include "Utils.hpp"
|
||
|
|
||
|
#endif // MEDUSA_MEDUSA_HPP_
|