Benoit Jacob bc6d78982f Bugs 157 and 377 - General tightening/testing of vectorwise ops:
* add lots of static assertions making it very explicit when all these ops
are supposed to work:
** all ops require the rhs vector to go in the right direction
** all ops already require that the lhs and rhs are of the same kind
(matrix vs vector) otherwise we'd have to do complex work
** multiplicative ops (introduced Kibeom's patch) are restricted to arrays, if only because for matrices they could be ambiguous.

* add a new test, vectorwiseop.cpp.

* these compound-assign operators used to be implemented with for loops:

   for(Index j=0; j<subVectors(); ++j)
     subVector(j).array() += other.derived().array();

This didn't seem to be needed; replaced by using expressions like operator+ and operator- did.
2011-11-18 11:10:27 -05:00
..
2010-06-24 23:21:58 +02:00
2010-06-24 23:21:58 +02:00
2011-10-31 10:44:06 -04:00
2010-06-28 01:01:29 +02:00
2010-08-17 20:03:50 +02:00
2010-06-20 17:37:56 +02:00
2009-12-02 12:07:47 -05:00
2011-02-22 10:11:03 -05:00
2010-08-17 20:03:50 +02:00
2010-08-17 20:03:50 +02:00
2010-10-25 22:13:49 +02:00
2011-02-27 23:20:45 -05:00
2010-06-24 23:21:58 +02:00