1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
/*
* GridTools
*
* Copyright (c) 2014-2023, ETH Zurich
* All rights reserved.
*
* Please, refer to the LICENSE file in the root directory.
* SPDX-License-Identifier: BSD-3-Clause
*/
#pragma once
#include <gridtools/common/array.hpp>
#include <gridtools/common/array_addons.hpp>
/**
@brief Small value type to use in tests where we want to check the
values in a fields, for instance to check if layouts works, on in
communication tests
*/
template <gridtools::uint_t N>
using multiplet = gridtools::array<int, N>;
using triplet = multiplet<3>;
|