33 lines
857 B
C++
33 lines
857 B
C++
//==================================================================================================
|
|
/*
|
|
ROTGEN - Runtime Overlay for Eigen
|
|
Copyright : CODE RECKONS
|
|
SPDX-License-Identifier: BSL-1.0
|
|
*/
|
|
//==================================================================================================
|
|
#include <rotgen/detail/generators.hpp>
|
|
#include <rotgen/impl/block.hpp>
|
|
#include <rotgen/impl/payload.hpp>
|
|
#include <Eigen/Dense>
|
|
#include <variant>
|
|
|
|
namespace rotgen
|
|
{
|
|
#define USE_CONST
|
|
#define CONST const
|
|
#define BASENAME block_const_impl
|
|
#define BASEMAP map_const_impl
|
|
#include "block_indirect.cpp"
|
|
#undef BASENAME
|
|
#undef BASEMAP
|
|
#undef USE_CONST
|
|
#undef CONST
|
|
|
|
#define CONST
|
|
#define BASENAME block_impl
|
|
#define BASEMAP map_impl
|
|
#include "block_indirect.cpp"
|
|
#undef BASENAME
|
|
#undef BASEMAP
|
|
#undef CONST
|
|
}
|