//================================================================================================== /* ROTGEN - Runtime Overlay for Eigen Copyright : CODE RECKONS SPDX-License-Identifier: BSL-1.0 */ //================================================================================================== #include #include namespace rotgen::detail { ROTGEN_EXPORT std::ostream& dynamic_info(std::ostream& os) { if constexpr(rotgen::is_forcing_dynamic_status) return os << "[ROTGEN] - Fully Dynamic mode with:" << std::endl; else return os << "[ROTGEN] - Flexible mode with:" << std::endl; } }