diff --git a/.cproject b/.cproject
index 46d6f3844..8d2bd0378 100644
--- a/.cproject
+++ b/.cproject
@@ -487,6 +487,14 @@
true
true
+
+ make
+ -j5
+ testDSFMap.run
+ true
+ true
+ true
+
make
-j2
diff --git a/gtsam/base/tests/testDSFVector.cpp b/gtsam/base/tests/testDSFVector.cpp
index 166af9df5..d900e1779 100644
--- a/gtsam/base/tests/testDSFVector.cpp
+++ b/gtsam/base/tests/testDSFVector.cpp
@@ -33,13 +33,13 @@ using namespace std;
using namespace gtsam;
/* ************************************************************************* */
-TEST(DSFVectorVector, find) {
+TEST(DSFBase, find) {
DSFBase dsf(3);
EXPECT(dsf.find(0) != dsf.find(2));
}
/* ************************************************************************* */
-TEST(DSFVectorVector, merge) {
+TEST(DSFBase, merge) {
DSFBase dsf(3);
dsf.merge(0,2);
EXPECT(dsf.find(0) == dsf.find(2));
diff --git a/gtsam_unstable/base/DSF.h b/gtsam_unstable/base/DSF.h
index 909566ff1..a827a2b90 100644
--- a/gtsam_unstable/base/DSF.h
+++ b/gtsam_unstable/base/DSF.h
@@ -18,12 +18,12 @@
#pragma once
+#include
+#include
#include
#include
#include
#include