20 template<
typename T,
typename Enable=
void>
26 using Domain = Interval;
30 struct Wrapper<Index> {
31 using Domain = Interval;
35 struct Wrapper<double> {
36 using Domain = Interval;
39 template<
typename T,
typename D>
42 template<
typename T,
typename D>
43 struct Wrapper<AnalyticType<T,D>> {
47 template<
typename OtherDerived>
48 struct Wrapper<OtherDerived,
49 typename std::enable_if<std::is_base_of_v<Eigen::MatrixBase<OtherDerived>,OtherDerived>>::type>
51 using Domain = Eigen::Matrix<Interval,OtherDerived::RowsAtCompileTime,OtherDerived::ColsAtCompileTime>;
Definition codac2_OctaSym.h:21