rename src/ to Eigen/ so that we're able to #include<Eigen/Core.h>

in the examples instead of ugly things like #include"../../src/Core.h"
This commit is contained in:
Benoit Jacob 2007-12-20 21:25:13 +00:00
parent 647a817b2e
commit a52c74095f
43 changed files with 6 additions and 6 deletions

View File

@ -13,6 +13,6 @@ endif (CMAKE_COMPILER_IS_GNUCXX)
include_directories( ${CMAKE_SOURCE_DIR} ${CMAKE_BINARY_DIR} )
add_subdirectory(src)
add_subdirectory(Eigen)
add_subdirectory(test)
add_subdirectory(doc)

View File

@ -1,6 +1,6 @@
// g++ -O3 -DNDEBUG benchmark.cpp -o benchmark && time ./benchmark
#include "src/Core.h"
#include <Eigen/Core.h>
using namespace std;
USING_EIGEN_DATA_TYPES

View File

@ -1,4 +1,4 @@
#include "../src/Core.h"
#include <Eigen/Core.h>
USING_EIGEN_DATA_TYPES

View File

@ -1,4 +1,4 @@
#include "../src/Core.h"
#include <Eigen/Core.h>
USING_EIGEN_DATA_TYPES
using namespace std;
int main(int, char**)

View File

@ -1,4 +1,4 @@
#include "../src/Core.h"
#include <Eigen/Core.h>
USING_EIGEN_DATA_TYPES

View File

@ -29,7 +29,7 @@
#include <QtTest/QtTest>
#define EIGEN_INTERNAL_DEBUGGING
#include "../src/Core.h"
#include <Eigen/Core.h>
#include <cstdlib>
#include <ctime>