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.
23 lines
765 B
23 lines
765 B
#ifndef MEDUSA_APPROXIMATIONS_HPP_
|
|
#define MEDUSA_APPROXIMATIONS_HPP_
|
|
|
|
/**
|
|
* @file
|
|
* Header for Approximations module.
|
|
*/
|
|
|
|
#include "Approximations_fwd.hpp"
|
|
#include "bits/approximations/Gaussian.hpp"
|
|
#include "bits/approximations/InverseMultiquadric.hpp"
|
|
#include "bits/approximations/JacobiSVDWrapper.hpp"
|
|
#include "bits/approximations/Monomials.hpp"
|
|
#include "bits/approximations/Multiquadric.hpp"
|
|
#include "bits/approximations/Polyharmonic.hpp"
|
|
#include "bits/approximations/RBFBasis.hpp"
|
|
#include "bits/approximations/RBFFD.hpp"
|
|
#include "bits/approximations/RBFInterpolant.hpp"
|
|
#include "bits/approximations/WLS.hpp"
|
|
#include "bits/approximations/WLSApproximant.hpp"
|
|
#include "bits/approximations/WeightFunction.hpp"
|
|
|
|
#endif // MEDUSA_APPROXIMATIONS_HPP_
|
|
|