Skip to content

File fftdecomposition.h

File List > code_source > templat > include > TempLat > fft > fftdecomposition.h

Go to the documentation of this file

#ifndef TEMPLAT_FFT_FFTDECOMPOSITION_H
#define TEMPLAT_FFT_FFTDECOMPOSITION_H

/* This file is part of TempLat, available at https://cosmolattice.github.io/templat .
   Copyright 2021-2026 The TempLat authors, see AUTHORS.md.
   Released under the MIT license, see LICENSE.md. */

// File info: Main contributor(s): Franz R. Sattler, Year: 2026

#include <array>
#include <cstddef>

namespace TempLat
{
  template <size_t NDim> struct FFTDecomposition {
    int nDimsToSplit = 0;
    std::array<int, NDim> dims = {};
  };
} // namespace TempLat

#endif