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.
27 lines
898 B
27 lines
898 B
2 years ago
|
#ifndef MEDUSA_APPROXIMATIONS_FWD_HPP_
|
||
|
#define MEDUSA_APPROXIMATIONS_FWD_HPP_
|
||
|
|
||
|
/**
|
||
|
* @file
|
||
|
* Header for Approximations module, declarations only.
|
||
|
*/
|
||
|
|
||
|
#include "Config.hpp"
|
||
|
|
||
|
#include "bits/approximations/Gaussian_fwd.hpp"
|
||
|
#include "bits/approximations/InverseMultiquadric_fwd.hpp"
|
||
|
#include "bits/approximations/JacobiSVDWrapper.hpp"
|
||
|
#include "bits/approximations/Monomials_fwd.hpp"
|
||
|
#include "bits/approximations/Multiquadric_fwd.hpp"
|
||
|
#include "bits/approximations/Polyharmonic_fwd.hpp"
|
||
|
#include "bits/approximations/RBFBasis_fwd.hpp"
|
||
|
#include "bits/approximations/RBFFD_fwd.hpp"
|
||
|
#include "bits/approximations/RBFInterpolant_fwd.hpp"
|
||
|
#include "bits/approximations/ScaleFunction.hpp"
|
||
|
#include "bits/approximations/WLSApproximant_fwd.hpp"
|
||
|
#include "bits/approximations/WLS_fwd.hpp"
|
||
|
#include "bits/approximations/WeightFunction_fwd.hpp"
|
||
|
#include <Eigen/LU>
|
||
|
|
||
|
#endif // MEDUSA_APPROXIMATIONS_FWD_HPP_
|