← Back to team overview

yade-dev team mailing list archive

[Branch ~yade-pkg/yade/git-trunk] Rev 3907: Fix eigen3 inclusions.

 

------------------------------------------------------------
revno: 3907
committer: Anton Gladky <gladky.anton@xxxxxxxxx>
timestamp: Thu 2014-04-10 07:58:01 +0200
message:
  Fix eigen3 inclusions.
  
  Hopefully fixes build failure on buildbot
modified:
  lib/triangulation/FlowBoundingSphereLinSolv.hpp
  pkg/pfv/SoluteFlowEngine.cpp


--
lp:yade
https://code.launchpad.net/~yade-pkg/yade/git-trunk

Your team Yade developers is subscribed to branch lp:yade.
To unsubscribe from this branch go to https://code.launchpad.net/~yade-pkg/yade/git-trunk/+edit-subscription
=== modified file 'lib/triangulation/FlowBoundingSphereLinSolv.hpp'
--- lib/triangulation/FlowBoundingSphereLinSolv.hpp	2014-03-21 18:47:45 +0000
+++ lib/triangulation/FlowBoundingSphereLinSolv.hpp	2014-04-10 05:58:01 +0000
@@ -12,9 +12,9 @@
 // #define TAUCS_LIB //comment this if TAUCS lib is not available, it will disable PARDISO lib as well
 
 #ifdef EIGENSPARSE_LIB
-	#include <eigen3/Eigen/Sparse>
-	#include <eigen3/Eigen/SparseCore>
-	#include <eigen3/Eigen/CholmodSupport>
+	#include <Eigen/Sparse>
+	#include <Eigen/SparseCore>
+	#include <Eigen/CholmodSupport>
 #endif
 #ifdef TAUCS_LIB
 #define TAUCS_CORE_DOUBLE

=== modified file 'pkg/pfv/SoluteFlowEngine.cpp'
--- pkg/pfv/SoluteFlowEngine.cpp	2014-04-03 16:44:33 +0000
+++ pkg/pfv/SoluteFlowEngine.cpp	2014-04-10 05:58:01 +0000
@@ -15,6 +15,8 @@
 #include <yade/pkg/pfv/FlowEngine.hpp>
 #undef TEMPLATE_FLOW_NAME
 
+#include <Eigen/Sparse>
+
 class SoluteCellInfo : public FlowCellInfo
 {	
 	public:
@@ -193,4 +195,4 @@
 #endif //SOLUTE_FLOW
 #endif //FLOW_ENGINE
 
-#endif /* YADE_CGAL */
\ No newline at end of file
+#endif /* YADE_CGAL */


Follow ups