diff --git a/Boolean_set_operations_2/doc/Boolean_set_operations_2/CGAL/Gps_face_base.h b/Boolean_set_operations_2/doc/Boolean_set_operations_2/CGAL/Boolean_set_operations_2/Gps_face_base.h
similarity index 100%
rename from Boolean_set_operations_2/doc/Boolean_set_operations_2/CGAL/Gps_face_base.h
rename to Boolean_set_operations_2/doc/Boolean_set_operations_2/CGAL/Boolean_set_operations_2/Gps_face_base.h
diff --git a/Boolean_set_operations_2/doc/Boolean_set_operations_2/CGAL/Gps_halfedge_base.h b/Boolean_set_operations_2/doc/Boolean_set_operations_2/CGAL/Boolean_set_operations_2/Gps_halfedge_base.h
similarity index 100%
rename from Boolean_set_operations_2/doc/Boolean_set_operations_2/CGAL/Gps_halfedge_base.h
rename to Boolean_set_operations_2/doc/Boolean_set_operations_2/CGAL/Boolean_set_operations_2/Gps_halfedge_base.h
diff --git a/Boolean_set_operations_2/doc/Boolean_set_operations_2/CGAL/Gps_default_dcel.h b/Boolean_set_operations_2/doc/Boolean_set_operations_2/CGAL/Gps_default_dcel.h
deleted file mode 100644
index 774b582c41b..00000000000
--- a/Boolean_set_operations_2/doc/Boolean_set_operations_2/CGAL/Gps_default_dcel.h
+++ /dev/null
@@ -1,48 +0,0 @@
-namespace CGAL {
-
-/*!
-\ingroup PkgBooleanSetOperations2
-
-The default Dcel class template used by the
-`General_polygon_set_2` and `General_polygon_with_holes_2` class templates.
-This template is parameterized by a traits class, which is a model of the
-`GeneralPolygonSetTraits_2` concept. It uses the types `Traits::Point_2` and
-`Traits::X_monotone_curve_2` nested in the traits class to instantiate the
-base vertex, halfedge, and face types, respectively. Recall, that the
-Dcel stores the incidence relations between
-the arrangement calls and the geometric data attached to vertices and edges.
-This Dcel also stores data used to determine
-whether a face is interior and exterior of the general polygon set, and
-additional data used for optimizations.
-
-You need to override this default and use a different
-Dcel only if you intend to obtain the underlying
-arrangement of the general polygon set and process it further.
-
-\cgalModels `GeneralPolygonSetDcel`
-
-\sa `Arr_dcel_base`
-\sa `Gps_halfedge_base`
-\sa `Gps_face_base`
-*/
-template
-class Gps_default_dcel :
- public Arr_dcel_base,
- Gps_halfedge_base,
- Gps_face_base >
-{
-public:
-
-/// \name Types
-/// @{
-
-/*!
-allows the rebinding of the Dcel with a different traits class `T`.
-*/
-typedef unspecified_type template rebind;
-
-/// @}
-
-};
-} /* end namespace CGAL */