diff --git a/Solver_interface/doc/Solver_interface/Concepts/LinearAlgebraTraits_d.h b/Solver_interface/doc/Solver_interface/Concepts/LinearAlgebraTraits_d.h
deleted file mode 100644
index c52619321be..00000000000
--- a/Solver_interface/doc/Solver_interface/Concepts/LinearAlgebraTraits_d.h
+++ /dev/null
@@ -1,183 +0,0 @@
-
-/*!
-\ingroup PkgKernelDLinAlgConcepts
-\cgalConcept
-
-The data type `LinearAlgebraTraits_d` encapsulates two classes
-`Matrix`, `Vector` and many functions of basic linear algebra.
-An instance of data type `Matrix` is a matrix of variables of type
-`NT`. Accordingly, `Vector` implements vectors of variables of
-type `NT`. Most functions of linear algebra are checkable,
-i.e., the programs can be asked for a proof that their output is
-correct. For example, if the linear system solver declares a linear
-system \f$ A x = b\f$ unsolvable it also returns a vector \f$ c\f$ such that
-\f$ c^T A = 0\f$ and \f$ c^T b \neq 0\f$.
-
-\cgalHasModel `CGAL::Linear_algebraHd