// This file is part of FMCA, the Fast Multiresolution Covariance Analysis
// package.
//
// Copyright (c) 2022, Michael Multerer
//
// All rights reserved.
//
// This source code is subject to the GNU Affero General Public License v3.0
// license and without any warranty, see <https://github.com/muchip/FMCA>
// for further information.
//
#ifndef FMCA_INTERPOLATORS_MODULE_
#define FMCA_INTERPOLATORS_MODULE_

/**
 *  \ingroup Modules
 *  \defgroup Interpolators Interpolators
 *  \brief Module containing all functionality related to the farfield
 *         interpolation of asymptotically smooth kernels
 *
 **/

#include "src/util/Macros.h"
//

#include "src/util/MultiIndexSet.h"

#include "src/Interpolator/LejaPoints.h"
#include "src/Interpolator/DeMarchiPoints.h"
#include "src/Interpolator/MonomialInterpolator.h"
#include "src/Interpolator/TensorProductInterpolator.h"
#include "src/Interpolator/TotalDegreeInterpolator.h"
#include "src/Interpolator/WeightedTotalDegreeInterpolator.h"

#endif
