* add Gael copyright lines on 2 more files

* macro renaming: EIGEN_NDEBUG becomes EIGEN_NO_DEBUG
  as this is much better (and similar to Qt) and
  EIGEN_CUSTOM_ASSERT becomes EIGEN_USE_CUSTOM_ASSERT
* protect Core header by a EIGEN_CORE_H
This commit is contained in:
Benoit Jacob
2008-03-26 09:13:11 +00:00
parent 729618c945
commit a994e51c96
5 changed files with 14 additions and 5 deletions

View File

@@ -68,7 +68,6 @@ int main(int, char **)
cout << "Here's the matrix m:" << endl << m << endl;
cout << "Now let's echelon m:" << endl;
for(int i = 0; i < 1000000; i++)
echelon(m);
cout << "Now m is:" << endl << m << endl;