// This file is part of FMCA, the Fast Multiresolution Covariance Analysis
// package.
//
// Copyright (c) 2025, 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_KERNELINTERPOLATION_MODULE_
#define FMCA_KERNELINTERPOLATION_MODULE_

/**
 *  \ingroup Modules
 *  \defgroup KernelInterpolation KernelInterpolation
 *  \brief High level module to handle kernel interpolation tasks,
 *         such as matrix compression and solution
 **/

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

#include "CovarianceKernel"
#include "Samplets"
#include "H2Matrix"

#include "src/KernelInterpolation/SampletKernelSolver.h"
#include "src/KernelInterpolation/MultipoleFunctionEvaluator.h"
#endif
