multirhstest fails to compile when arpack++ is installed
See also !102 (merged).
When arpack++ is installed, multirhstest
fails to compile: the condition estimate calculation can only handle double
and float
but it is instantiated here with a different type (AlignedNumber<double>
). It should probably suppress its instantiation using Hybrid::ifElse()
, the same way it suppressed instantiation of std::real()
elsewhere.