17 lines
523 B
C++
17 lines
523 B
C++
//==================================================================================================
|
|
/*
|
|
ROTGEN - Runtime Overlay for Eigen
|
|
Copyright : CODE RECKONS
|
|
SPDX-License-Identifier: BSL-1.0
|
|
*/
|
|
//==================================================================================================
|
|
#pragma once
|
|
|
|
#include <rotgen/concepts.hpp>
|
|
#include <rotgen/config.hpp>
|
|
|
|
#if defined(ROTGEN_FORCE_DYNAMIC)
|
|
#include <rotgen/container/strides/dynamic.hpp>
|
|
#else
|
|
#include <rotgen/container/strides/fixed.hpp>
|
|
#endif
|