aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc
diff options
context:
space:
mode:
authorGravatar Benoit Jacob <jacob.benoit.1@gmail.com>2007-12-20 21:25:13 +0000
committerGravatar Benoit Jacob <jacob.benoit.1@gmail.com>2007-12-20 21:25:13 +0000
commita52c74095ffd4b898a05d1ec93e410eaa639d6a2 (patch)
treec10396f20635eb2abfb14285820e7e9ebe02ffb1 /doc
parent647a817b2e352ae8f3599ba393d344f83d3b416e (diff)
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"
Diffstat (limited to 'doc')
-rw-r--r--doc/benchmark.cpp2
-rw-r--r--doc/example.cpp2
-rw-r--r--doc/examples/function_dynBlock.cpp2
-rw-r--r--doc/tutorial.cpp2
4 files changed, 4 insertions, 4 deletions
diff --git a/doc/benchmark.cpp b/doc/benchmark.cpp
index ae2a52e9c..2bf445ed5 100644
--- a/doc/benchmark.cpp
+++ b/doc/benchmark.cpp
@@ -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
diff --git a/doc/example.cpp b/doc/example.cpp
index f54819f5f..8b2608655 100644
--- a/doc/example.cpp
+++ b/doc/example.cpp
@@ -1,4 +1,4 @@
-#include "../src/Core.h"
+#include <Eigen/Core.h>
USING_EIGEN_DATA_TYPES
diff --git a/doc/examples/function_dynBlock.cpp b/doc/examples/function_dynBlock.cpp
index bd3cbae1f..7a7e1b320 100644
--- a/doc/examples/function_dynBlock.cpp
+++ b/doc/examples/function_dynBlock.cpp
@@ -1,4 +1,4 @@
-#include "../src/Core.h"
+#include <Eigen/Core.h>
USING_EIGEN_DATA_TYPES
using namespace std;
int main(int, char**)
diff --git a/doc/tutorial.cpp b/doc/tutorial.cpp
index 8348cab52..e98e1c07a 100644
--- a/doc/tutorial.cpp
+++ b/doc/tutorial.cpp
@@ -1,4 +1,4 @@
-#include "../src/Core.h"
+#include <Eigen/Core.h>
USING_EIGEN_DATA_TYPES