// 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_MOMENTS_MODULE_
#define FMCA_MOMENTS_MODULE_

/**
 *  \ingroup Modules
 *  \defgroup Moments Moments
 *  \brief Module containing all functionality related to the computation of
 *         moment matrices for the farfield of asymptotically smooth kernels
 *
 **/
 
#include "src/util/Macros.h"
//

#include "Clustering"
#include "Interpolator"

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

#include "src/Moments/SampletHelper.h"
#include "src/Moments/NystromMoments.h"
#include "src/Moments/WeightedNystromMoments.h"
#include "src/Moments/NystromSampletMoments.h"
#include "src/Moments/MinNystromSampletMoments.h"

#endif
