aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/Core
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2012-06-14 14:24:15 +0200
committerGravatar Gael Guennebaud <g.gael@free.fr>2012-06-14 14:24:15 +0200
commitb9f25ee656b5b5c4aec6975f3296a1cb10ceea87 (patch)
tree2ad2811a291cc80b72802a2001055d0973d5702b /Eigen/Core
parenta3e700db72300d739605a8b734831b8b644f6272 (diff)
bug #466: better fix for the race condition: this new patch add an initParallel()
function which must be called at the initialization time of any multi-threaded application calling Eigen from multiple threads.
Diffstat (limited to 'Eigen/Core')
-rw-r--r--Eigen/Core2
1 files changed, 1 insertions, 1 deletions
diff --git a/Eigen/Core b/Eigen/Core
index a8a15c053..0cf101636 100644
--- a/Eigen/Core
+++ b/Eigen/Core
@@ -329,9 +329,9 @@ using std::ptrdiff_t;
#include "src/Core/GeneralProduct.h"
#include "src/Core/TriangularMatrix.h"
#include "src/Core/SelfAdjointView.h"
+#include "src/Core/products/GeneralBlockPanelKernel.h"
#include "src/Core/products/Parallelizer.h"
#include "src/Core/products/CoeffBasedProduct.h"
-#include "src/Core/products/GeneralBlockPanelKernel.h"
#include "src/Core/products/GeneralMatrixVector.h"
#include "src/Core/products/GeneralMatrixMatrix.h"
#include "src/Core/SolveTriangular.h"