- Introduce aliasing system

- Remove operator<<, use .alias() instead
- Introduce operator/ (scalar)
- Cleanup, unit-tests update.
This commit is contained in:
Benoit Jacob
2007-09-06 10:16:51 +00:00
parent 9477e62b68
commit e7ef6dba9d
7 changed files with 117 additions and 24 deletions

View File

@@ -42,7 +42,7 @@ template<typename VectorType> void vectorOps(const VectorType& v)
a = b;
a = b + c;
a = s * (b - c);
a << a + b;
a.alias() = a + b;
}
void EigenTest::testVectorOps()