From c0873739685b39b3122b57b07647e25b42dd5284 Mon Sep 17 00:00:00 2001 From: Gael Guennebaud Date: Mon, 9 Mar 2009 23:14:53 +0000 Subject: [PATCH] because of a missing specialization, operator/(scalar) was not vectorized --- Eigen/src/Core/Functors.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Eigen/src/Core/Functors.h b/Eigen/src/Core/Functors.h index 6a8cf980d..7940baa0b 100644 --- a/Eigen/src/Core/Functors.h +++ b/Eigen/src/Core/Functors.h @@ -361,6 +361,10 @@ struct ei_scalar_quotient1_op : ei_scalar_quotient1_impl::HasFloatingPoint >(other) {} }; +template +struct ei_functor_traits > +: ei_functor_traits::HasFloatingPoint> > +{}; // nullary functors