diff --git a/MeshGeoToolsLib/BoundaryElementsAlongPolyline.cpp b/MeshGeoToolsLib/BoundaryElementsAlongPolyline.cpp
index 80301961ef5f5788d652e35076efab47a8e6c6aa..aec085e2985288c9ebdccd40963ac6e52721f7c6 100644
--- a/MeshGeoToolsLib/BoundaryElementsAlongPolyline.cpp
+++ b/MeshGeoToolsLib/BoundaryElementsAlongPolyline.cpp
@@ -23,9 +23,10 @@
 
 namespace MeshGeoToolsLib
 {
-
-BoundaryElementsAlongPolyline::BoundaryElementsAlongPolyline(MeshLib::Mesh const& mesh, MeshNodeSearcher &mshNodeSearcher, GeoLib::Polyline const& ply)
-: _mesh(mesh), _ply(ply)
+BoundaryElementsAlongPolyline::BoundaryElementsAlongPolyline(
+    MeshLib::Mesh const& mesh, MeshNodeSearcher const& mshNodeSearcher,
+    GeoLib::Polyline const& ply)
+    : _mesh(mesh), _ply(ply)
 {
     // search nodes and elements located along the polyline
     auto node_ids_on_poly = mshNodeSearcher.getMeshNodeIDsAlongPolyline(ply);
diff --git a/MeshGeoToolsLib/BoundaryElementsAlongPolyline.h b/MeshGeoToolsLib/BoundaryElementsAlongPolyline.h
index 677efacccab8b4392054ecb4ed7463121bbfc57f..4c91b17904f5b1432a8e4cd806ec5a820f2e468b 100644
--- a/MeshGeoToolsLib/BoundaryElementsAlongPolyline.h
+++ b/MeshGeoToolsLib/BoundaryElementsAlongPolyline.h
@@ -37,7 +37,9 @@ public:
      * @param mshNodeSearcher  a MeshNodeSearcher object which is internally used to search mesh nodes
      * @param ply              a polyline object where edges are searched
      */
-    BoundaryElementsAlongPolyline(MeshLib::Mesh const& mesh, MeshNodeSearcher &mshNodeSearcher, GeoLib::Polyline const& ply);
+    BoundaryElementsAlongPolyline(MeshLib::Mesh const& mesh,
+                                  MeshNodeSearcher const& mshNodeSearcher,
+                                  GeoLib::Polyline const& ply);
 
     /// destructor
     virtual ~BoundaryElementsAlongPolyline();
diff --git a/MeshGeoToolsLib/BoundaryElementsAtPoint.cpp b/MeshGeoToolsLib/BoundaryElementsAtPoint.cpp
index f71114f11cf1a9185467c5829857c12171b50412..8d708e5d6d5d940d998b113927c3f2413e7c6dd2 100644
--- a/MeshGeoToolsLib/BoundaryElementsAtPoint.cpp
+++ b/MeshGeoToolsLib/BoundaryElementsAtPoint.cpp
@@ -20,8 +20,8 @@
 namespace MeshGeoToolsLib
 {
 BoundaryElementsAtPoint::BoundaryElementsAtPoint(
-    MeshLib::Mesh const &mesh, MeshNodeSearcher &mshNodeSearcher,
-    GeoLib::Point const &point)
+    MeshLib::Mesh const& mesh, MeshNodeSearcher const& mshNodeSearcher,
+    GeoLib::Point const& point)
     : _mesh(mesh), _point(point)
 {
     auto const node_ids = mshNodeSearcher.getMeshNodeIDs(_point);
diff --git a/MeshGeoToolsLib/BoundaryElementsAtPoint.h b/MeshGeoToolsLib/BoundaryElementsAtPoint.h
index 9e4b843bdedd53df175700c2e34afc7d9d6503da..7d17386752c8e7def84a81b5596a00b9b8f2567c 100644
--- a/MeshGeoToolsLib/BoundaryElementsAtPoint.h
+++ b/MeshGeoToolsLib/BoundaryElementsAtPoint.h
@@ -35,8 +35,8 @@ public:
     /// used to search mesh nodes
     /// \param point            a point object where edges are searched
     BoundaryElementsAtPoint(MeshLib::Mesh const& mesh,
-                           MeshNodeSearcher& mshNodeSearcher,
-                           GeoLib::Point const& point);
+                            MeshNodeSearcher const& mshNodeSearcher,
+                            GeoLib::Point const& point);
 
     ~BoundaryElementsAtPoint();
 
diff --git a/MeshGeoToolsLib/BoundaryElementsOnSurface.cpp b/MeshGeoToolsLib/BoundaryElementsOnSurface.cpp
index a5fb641917359a276eb9cc6b54eba22eb7160294..b6f12047f0ad19a387cb6dfcdccf8cdb45756a57 100644
--- a/MeshGeoToolsLib/BoundaryElementsOnSurface.cpp
+++ b/MeshGeoToolsLib/BoundaryElementsOnSurface.cpp
@@ -18,9 +18,10 @@
 
 namespace MeshGeoToolsLib
 {
-
-BoundaryElementsOnSurface::BoundaryElementsOnSurface(MeshLib::Mesh const& mesh, MeshNodeSearcher &mshNodeSearcher, GeoLib::Surface const& sfc)
-: _mesh(mesh), _sfc(sfc)
+BoundaryElementsOnSurface::BoundaryElementsOnSurface(
+    MeshLib::Mesh const& mesh, MeshNodeSearcher const& mshNodeSearcher,
+    GeoLib::Surface const& sfc)
+    : _mesh(mesh), _sfc(sfc)
 {
     // search elements near the surface
     auto node_ids_on_sfc = mshNodeSearcher.getMeshNodeIDsAlongSurface(sfc);
diff --git a/MeshGeoToolsLib/BoundaryElementsOnSurface.h b/MeshGeoToolsLib/BoundaryElementsOnSurface.h
index f4e31f8f3da0d08661f2c126a65544d740050226..34659c2a1d8f74ac46e0c4a33d74752ac8756638 100644
--- a/MeshGeoToolsLib/BoundaryElementsOnSurface.h
+++ b/MeshGeoToolsLib/BoundaryElementsOnSurface.h
@@ -37,7 +37,9 @@ public:
      * @param mshNodeSearcher  a MeshNodeSearcher object which is internally used to search mesh nodes
      * @param sfc              a surface object where face elements are searched for
      */
-    BoundaryElementsOnSurface(MeshLib::Mesh const& mesh, MeshNodeSearcher &mshNodeSearcher, GeoLib::Surface const& sfc);
+    BoundaryElementsOnSurface(MeshLib::Mesh const& mesh,
+                              MeshNodeSearcher const& mshNodeSearcher,
+                              GeoLib::Surface const& sfc);
 
     /// destructor
     virtual ~BoundaryElementsOnSurface();
diff --git a/MeshGeoToolsLib/BoundaryElementsSearcher.cpp b/MeshGeoToolsLib/BoundaryElementsSearcher.cpp
index ea4b916d27d8b847c000a82cfe827bf42b7bd53c..b2d853cb6c6a84a302c9bc9e4a612d2d54151572 100644
--- a/MeshGeoToolsLib/BoundaryElementsSearcher.cpp
+++ b/MeshGeoToolsLib/BoundaryElementsSearcher.cpp
@@ -25,8 +25,9 @@
 
 namespace MeshGeoToolsLib
 {
-
-BoundaryElementsSearcher::BoundaryElementsSearcher(MeshLib::Mesh const& mesh, MeshNodeSearcher &mshNodeSearcher) : _mesh(mesh), _mshNodeSearcher(mshNodeSearcher)
+BoundaryElementsSearcher::BoundaryElementsSearcher(
+    MeshLib::Mesh const& mesh, MeshNodeSearcher const& mshNodeSearcher)
+    : _mesh(mesh), _mshNodeSearcher(mshNodeSearcher)
 {}
 
 BoundaryElementsSearcher::~BoundaryElementsSearcher()
diff --git a/MeshGeoToolsLib/BoundaryElementsSearcher.h b/MeshGeoToolsLib/BoundaryElementsSearcher.h
index ad2d66ef262baf15035322cabb5edf51b880d8b8..b2c5742f09c1875153a42522d53b863610e81f49 100644
--- a/MeshGeoToolsLib/BoundaryElementsSearcher.h
+++ b/MeshGeoToolsLib/BoundaryElementsSearcher.h
@@ -42,7 +42,8 @@ public:
      * @param mesh             a mesh object
      * @param mshNodeSearcher  a MeshNodeSearcher object which is internally used to search mesh nodes
      */
-    BoundaryElementsSearcher(MeshLib::Mesh const& mesh, MeshNodeSearcher &mshNodeSearcher);
+    BoundaryElementsSearcher(MeshLib::Mesh const& mesh,
+                             MeshNodeSearcher const& mshNodeSearcher);
 
     /// destructor
     virtual ~BoundaryElementsSearcher();
@@ -79,7 +80,7 @@ public:
 
 private:
     MeshLib::Mesh const& _mesh;
-    MeshNodeSearcher &_mshNodeSearcher;
+    MeshNodeSearcher const& _mshNodeSearcher;
     std::vector<BoundaryElementsAtPoint*> _boundary_elements_at_point;
     std::vector<BoundaryElementsAlongPolyline*> _boundary_elements_along_polylines;
     std::vector<BoundaryElementsOnSurface*> _boundary_elements_along_surfaces;
diff --git a/MeshGeoToolsLib/MeshNodeSearcher.cpp b/MeshGeoToolsLib/MeshNodeSearcher.cpp
index 6e2af20e5ff95318962148d10b2eda1dec9dbf6b..21a3ccd39863cb5165fbe0be03805192f238600e 100644
--- a/MeshGeoToolsLib/MeshNodeSearcher.cpp
+++ b/MeshGeoToolsLib/MeshNodeSearcher.cpp
@@ -54,7 +54,8 @@ MeshNodeSearcher::~MeshNodeSearcher()
         delete pointer;
 }
 
-std::vector<std::size_t> MeshNodeSearcher::getMeshNodeIDs(GeoLib::GeoObject const& geoObj)
+std::vector<std::size_t> MeshNodeSearcher::getMeshNodeIDs(
+    GeoLib::GeoObject const& geoObj) const
 {
     std::vector<std::size_t> vec_nodes;
     switch (geoObj.getGeoType()) {
@@ -75,24 +76,26 @@ std::vector<std::size_t> MeshNodeSearcher::getMeshNodeIDs(GeoLib::GeoObject cons
     return vec_nodes;
 }
 
-std::vector<std::size_t> const&
-MeshNodeSearcher::getMeshNodeIDsForPoint(GeoLib::Point const& pnt)
+std::vector<std::size_t> const& MeshNodeSearcher::getMeshNodeIDsForPoint(
+    GeoLib::Point const& pnt) const
 {
     return getMeshNodesOnPoint(pnt).getNodeIDs();
 }
 
 std::vector<std::size_t> const& MeshNodeSearcher::getMeshNodeIDsAlongPolyline(
-        GeoLib::Polyline const& ply)
+    GeoLib::Polyline const& ply) const
 {
     return getMeshNodesAlongPolyline(ply).getNodeIDs();
 }
 
-std::vector<std::size_t> const& MeshNodeSearcher::getMeshNodeIDsAlongSurface(GeoLib::Surface const& sfc)
+std::vector<std::size_t> const& MeshNodeSearcher::getMeshNodeIDsAlongSurface(
+    GeoLib::Surface const& sfc) const
 {
     return getMeshNodesAlongSurface(sfc).getNodeIDs();
 }
 
-MeshNodesOnPoint& MeshNodeSearcher::getMeshNodesOnPoint(GeoLib::Point const& pnt)
+MeshNodesOnPoint& MeshNodeSearcher::getMeshNodesOnPoint(
+    GeoLib::Point const& pnt) const
 {
     std::vector<MeshNodesOnPoint*>::const_iterator it(_mesh_nodes_on_points.begin());
     for (; it != _mesh_nodes_on_points.end(); ++it) {
@@ -110,7 +113,8 @@ MeshNodesOnPoint& MeshNodeSearcher::getMeshNodesOnPoint(GeoLib::Point const& pnt
     return *_mesh_nodes_on_points.back();
 }
 
-MeshNodesAlongPolyline& MeshNodeSearcher::getMeshNodesAlongPolyline(GeoLib::Polyline const& ply)
+MeshNodesAlongPolyline& MeshNodeSearcher::getMeshNodesAlongPolyline(
+    GeoLib::Polyline const& ply) const
 {
     std::vector<MeshNodesAlongPolyline*>::const_iterator it(_mesh_nodes_along_polylines.begin());
     for (; it != _mesh_nodes_along_polylines.end(); ++it) {
@@ -127,7 +131,8 @@ MeshNodesAlongPolyline& MeshNodeSearcher::getMeshNodesAlongPolyline(GeoLib::Poly
     return *_mesh_nodes_along_polylines.back();
 }
 
-MeshNodesAlongSurface& MeshNodeSearcher::getMeshNodesAlongSurface(GeoLib::Surface const& sfc)
+MeshNodesAlongSurface& MeshNodeSearcher::getMeshNodesAlongSurface(
+    GeoLib::Surface const& sfc) const
 {
     std::vector<MeshNodesAlongSurface*>::const_iterator it(_mesh_nodes_along_surfaces.begin());
     for (; it != _mesh_nodes_along_surfaces.end(); ++it) {
@@ -146,7 +151,7 @@ MeshNodesAlongSurface& MeshNodeSearcher::getMeshNodesAlongSurface(GeoLib::Surfac
     return *_mesh_nodes_along_surfaces.back();
 }
 
-MeshNodeSearcher& MeshNodeSearcher::getMeshNodeSearcher(
+MeshNodeSearcher const& MeshNodeSearcher::getMeshNodeSearcher(
     MeshLib::Mesh const& mesh,
     MeshGeoToolsLib::SearchLength&& search_length_algorithm)
 {
@@ -156,24 +161,19 @@ MeshNodeSearcher& MeshNodeSearcher::getMeshNodeSearcher(
 
     if (_mesh_node_searchers[mesh_id])
     {
+        auto const& m = *_mesh_node_searchers[mesh_id];
         // recreate searcher if search length algorithm does not fit
-        if (typeid(_mesh_node_searchers[mesh_id]->_search_length_algorithm) !=
-                typeid(search_length_algorithm) ||
-            _mesh_node_searchers[mesh_id]
-                    ->_search_length_algorithm.getSearchLength() !=
+        if (typeid(m._search_length_algorithm) ==
+                typeid(search_length_algorithm) &&
+            m._search_length_algorithm.getSearchLength() ==
                 search_length_algorithm.getSearchLength())
         {
-            _mesh_node_searchers[mesh_id].reset(
-                new MeshGeoToolsLib::MeshNodeSearcher(
-                    mesh, std::move(search_length_algorithm)));
+            return m;
         }
     }
-    else
-    {
-        _mesh_node_searchers[mesh_id].reset(
-            new MeshGeoToolsLib::MeshNodeSearcher(
-                mesh, std::move(search_length_algorithm)));
-    }
+
+    _mesh_node_searchers[mesh_id].reset(new MeshGeoToolsLib::MeshNodeSearcher(
+        mesh, std::move(search_length_algorithm)));
 
     return *_mesh_node_searchers[mesh_id];
 }
diff --git a/MeshGeoToolsLib/MeshNodeSearcher.h b/MeshGeoToolsLib/MeshNodeSearcher.h
index 17912c6aaae738dd7b9c02664dc8e9e8ba8bb6c2..747eba76869829fb650b3392d6381569d2c9096b 100644
--- a/MeshGeoToolsLib/MeshNodeSearcher.h
+++ b/MeshGeoToolsLib/MeshNodeSearcher.h
@@ -70,7 +70,8 @@ public:
      * @param geoObj a GeoLib::GeoObject where the nearest mesh node is searched for
      * @return a vector of mesh node ids
      */
-    std::vector<std::size_t> getMeshNodeIDs(GeoLib::GeoObject const& geoObj);
+    std::vector<std::size_t> getMeshNodeIDs(
+        GeoLib::GeoObject const& geoObj) const;
 
     /**
      * Searches for the node nearest by the given point. If there are two nodes
@@ -80,7 +81,8 @@ public:
      * @param pnt a GeoLib::Point the nearest mesh node is searched for
      * @return  a vector of mesh node ids
      */
-    std::vector<std::size_t> const& getMeshNodeIDsForPoint(GeoLib::Point const& pnt);
+    std::vector<std::size_t> const& getMeshNodeIDsForPoint(
+        GeoLib::Point const& pnt) const;
 
     /**
      * Searches for the nearest mesh nodes along a GeoLib::Polyline.
@@ -90,7 +92,8 @@ public:
      * @param ply the GeoLib::Polyline the nearest mesh nodes are searched for
      * @return a vector of mesh node ids
      */
-    std::vector<std::size_t> const& getMeshNodeIDsAlongPolyline(GeoLib::Polyline const& ply);
+    std::vector<std::size_t> const& getMeshNodeIDsAlongPolyline(
+        GeoLib::Polyline const& ply) const;
 
     /**
      * Searches for the nearest mesh nodes along a GeoLib::Surface.
@@ -100,28 +103,31 @@ public:
      * @param sfc the GeoLib::Surface the nearest mesh nodes are searched for
      * @return a vector of mesh node ids
      */
-    std::vector<std::size_t> const& getMeshNodeIDsAlongSurface(GeoLib::Surface const& sfc);
+    std::vector<std::size_t> const& getMeshNodeIDsAlongSurface(
+        GeoLib::Surface const& sfc) const;
 
     /**
      * Return a MeshNodesOnPoint object for the given GeoLib::Point object.
      * @param pnt the GeoLib::Point the nearest mesh nodes are searched for
      * @return a reference to a MeshNodesOnPoint object
      */
-    MeshNodesOnPoint& getMeshNodesOnPoint(GeoLib::Point const& pnt);
+    MeshNodesOnPoint& getMeshNodesOnPoint(GeoLib::Point const& pnt) const;
 
     /**
      * Return a MeshNodesAlongPolyline object for the given GeoLib::Polyline object.
      * @param ply the GeoLib::Polyline the nearest mesh nodes are searched for
      * @return a reference to a MeshNodesAlongPolyline object
      */
-    MeshNodesAlongPolyline& getMeshNodesAlongPolyline(GeoLib::Polyline const& ply);
+    MeshNodesAlongPolyline& getMeshNodesAlongPolyline(
+        GeoLib::Polyline const& ply) const;
 
     /**
      * Return a MeshNodesAlongSurface object for the given GeoLib::Surface object.
      * @param sfc the GeoLib::Surface the nearest mesh nodes are searched for
      * @return a reference to a MeshNodesAlongSurface object
      */
-    MeshNodesAlongSurface& getMeshNodesAlongSurface(GeoLib::Surface const& sfc);
+    MeshNodesAlongSurface& getMeshNodesAlongSurface(
+        GeoLib::Surface const& sfc) const;
 
     /**
      * Get the mesh this searcher operates on.
@@ -132,7 +138,7 @@ public:
      * Returns a (possibly new) mesh node searcher for the mesh.
      * A new one will be created, if it does not already exists.
      */
-    static MeshNodeSearcher& getMeshNodeSearcher(
+    static MeshNodeSearcher const& getMeshNodeSearcher(
         MeshLib::Mesh const& mesh,
         MeshGeoToolsLib::SearchLength&& search_length_algorithm);
 
@@ -142,9 +148,9 @@ private:
     MeshGeoToolsLib::SearchLength _search_length_algorithm;
     bool _search_all_nodes;
     // with newer compiler we can omit to use a pointer here
-    std::vector<MeshNodesOnPoint*> _mesh_nodes_on_points;
-    std::vector<MeshNodesAlongPolyline*> _mesh_nodes_along_polylines;
-    std::vector<MeshNodesAlongSurface*> _mesh_nodes_along_surfaces;
+    mutable std::vector<MeshNodesOnPoint*> _mesh_nodes_on_points;
+    mutable std::vector<MeshNodesAlongPolyline*> _mesh_nodes_along_polylines;
+    mutable std::vector<MeshNodesAlongSurface*> _mesh_nodes_along_surfaces;
 
     /// Mesh node searcher for the meshes indexed by the meshs' ids.
     static std::vector<std::unique_ptr<MeshNodeSearcher>> _mesh_node_searchers;
diff --git a/ProcessLib/BoundaryCondition/BoundaryCondition.cpp b/ProcessLib/BoundaryCondition/BoundaryCondition.cpp
index fd0b28010d3f79e183702e33ec5e8da555c7caee..6f32be6249dd62f9d6d20d9da49f292b4f25beea 100644
--- a/ProcessLib/BoundaryCondition/BoundaryCondition.cpp
+++ b/ProcessLib/BoundaryCondition/BoundaryCondition.cpp
@@ -27,7 +27,7 @@ std::unique_ptr<BoundaryCondition> BoundaryConditionBuilder::createBoundaryCondi
 {
     MeshGeoToolsLib::SearchLength search_length_algorithm;
 
-    MeshGeoToolsLib::MeshNodeSearcher& mesh_node_searcher =
+    MeshGeoToolsLib::MeshNodeSearcher const& mesh_node_searcher =
         MeshGeoToolsLib::MeshNodeSearcher::getMeshNodeSearcher(
             mesh, std::move(search_length_algorithm));
 
@@ -66,13 +66,13 @@ std::unique_ptr<BoundaryCondition> BoundaryConditionBuilder::createBoundaryCondi
 
 std::unique_ptr<BoundaryCondition>
 BoundaryConditionBuilder::createDirichletBoundaryCondition(
-        const BoundaryConditionConfig& config,
-        const NumLib::LocalToGlobalIndexMap& dof_table, const MeshLib::Mesh& mesh,
-        const int variable_id, const unsigned /*integration_order*/,
-        const unsigned /*shapefunction_order*/,
-        const std::vector<std::unique_ptr<ProcessLib::ParameterBase>>& parameters,
-        MeshGeoToolsLib::MeshNodeSearcher& mesh_node_searcher,
-        MeshGeoToolsLib::BoundaryElementsSearcher& /*boundary_element_searcher*/)
+    const BoundaryConditionConfig& config,
+    const NumLib::LocalToGlobalIndexMap& dof_table, const MeshLib::Mesh& mesh,
+    const int variable_id, const unsigned /*integration_order*/,
+    const unsigned /*shapefunction_order*/,
+    const std::vector<std::unique_ptr<ProcessLib::ParameterBase>>& parameters,
+    MeshGeoToolsLib::MeshNodeSearcher const& mesh_node_searcher,
+    MeshGeoToolsLib::BoundaryElementsSearcher& /*boundary_element_searcher*/)
 {
     // Find nodes' ids on the given mesh on which this boundary condition
     // is defined.
@@ -115,13 +115,13 @@ BoundaryConditionBuilder::createDirichletBoundaryCondition(
 
 std::unique_ptr<BoundaryCondition>
 BoundaryConditionBuilder::createNeumannBoundaryCondition(
-        const BoundaryConditionConfig& config,
-        const NumLib::LocalToGlobalIndexMap& dof_table, const MeshLib::Mesh& mesh,
-        const int variable_id, const unsigned integration_order,
-        const unsigned shapefunction_order,
-        const std::vector<std::unique_ptr<ProcessLib::ParameterBase>>& parameters,
-        MeshGeoToolsLib::MeshNodeSearcher& /*mesh_node_searcher*/,
-        MeshGeoToolsLib::BoundaryElementsSearcher& boundary_element_searcher)
+    const BoundaryConditionConfig& config,
+    const NumLib::LocalToGlobalIndexMap& dof_table, const MeshLib::Mesh& mesh,
+    const int variable_id, const unsigned integration_order,
+    const unsigned shapefunction_order,
+    const std::vector<std::unique_ptr<ProcessLib::ParameterBase>>& parameters,
+    MeshGeoToolsLib::MeshNodeSearcher const& /*mesh_node_searcher*/,
+    MeshGeoToolsLib::BoundaryElementsSearcher& boundary_element_searcher)
 {
     return ProcessLib::createNeumannBoundaryCondition(
         config.config,
@@ -133,13 +133,13 @@ BoundaryConditionBuilder::createNeumannBoundaryCondition(
 
 std::unique_ptr<BoundaryCondition>
 BoundaryConditionBuilder::createRobinBoundaryCondition(
-        const BoundaryConditionConfig& config,
-        const NumLib::LocalToGlobalIndexMap& dof_table, const MeshLib::Mesh& mesh,
-        const int variable_id, const unsigned integration_order,
-        const unsigned shapefunction_order,
-        const std::vector<std::unique_ptr<ProcessLib::ParameterBase>>& parameters,
-        MeshGeoToolsLib::MeshNodeSearcher& /*mesh_node_searcher*/,
-        MeshGeoToolsLib::BoundaryElementsSearcher& boundary_element_searcher)
+    const BoundaryConditionConfig& config,
+    const NumLib::LocalToGlobalIndexMap& dof_table, const MeshLib::Mesh& mesh,
+    const int variable_id, const unsigned integration_order,
+    const unsigned shapefunction_order,
+    const std::vector<std::unique_ptr<ProcessLib::ParameterBase>>& parameters,
+    MeshGeoToolsLib::MeshNodeSearcher const& /*mesh_node_searcher*/,
+    MeshGeoToolsLib::BoundaryElementsSearcher& boundary_element_searcher)
 {
     return ProcessLib::createRobinBoundaryCondition(
         config.config,
diff --git a/ProcessLib/BoundaryCondition/BoundaryCondition.h b/ProcessLib/BoundaryCondition/BoundaryCondition.h
index 161f9ad721bea4e1e7ddc5c7c6e86a63cde624d7..045668a88a2c18fc4edbc5b722cea7ff53011054 100644
--- a/ProcessLib/BoundaryCondition/BoundaryCondition.h
+++ b/ProcessLib/BoundaryCondition/BoundaryCondition.h
@@ -87,29 +87,27 @@ protected:
         const unsigned shapefunction_order,
         const std::vector<std::unique_ptr<ProcessLib::ParameterBase>>&
             parameters,
-        MeshGeoToolsLib::MeshNodeSearcher& mesh_node_searcher,
+        MeshGeoToolsLib::MeshNodeSearcher const& mesh_node_searcher,
         MeshGeoToolsLib::BoundaryElementsSearcher& boundary_element_searcher);
 
     virtual std::unique_ptr<BoundaryCondition> createNeumannBoundaryCondition(
         const BoundaryConditionConfig& config,
         const NumLib::LocalToGlobalIndexMap& dof_table,
         const MeshLib::Mesh& mesh, const int variable_id,
-        const unsigned integration_order,
-        const unsigned shapefunction_order,
+        const unsigned integration_order, const unsigned shapefunction_order,
         const std::vector<std::unique_ptr<ProcessLib::ParameterBase>>&
             parameters,
-        MeshGeoToolsLib::MeshNodeSearcher& mesh_node_searcher,
+        MeshGeoToolsLib::MeshNodeSearcher const& mesh_node_searcher,
         MeshGeoToolsLib::BoundaryElementsSearcher& boundary_element_searcher);
 
     virtual std::unique_ptr<BoundaryCondition> createRobinBoundaryCondition(
         const BoundaryConditionConfig& config,
         const NumLib::LocalToGlobalIndexMap& dof_table,
         const MeshLib::Mesh& mesh, const int variable_id,
-        const unsigned integration_order,
-        const unsigned shapefunction_order,
+        const unsigned integration_order, const unsigned shapefunction_order,
         const std::vector<std::unique_ptr<ProcessLib::ParameterBase>>&
             parameters,
-        MeshGeoToolsLib::MeshNodeSearcher& mesh_node_searcher,
+        MeshGeoToolsLib::MeshNodeSearcher const& mesh_node_searcher,
         MeshGeoToolsLib::BoundaryElementsSearcher& boundary_element_searcher);
 
     static std::vector<MeshLib::Element*> getClonedElements(
diff --git a/ProcessLib/LIE/BoundaryCondition/BoundaryConditionBuilder.cpp b/ProcessLib/LIE/BoundaryCondition/BoundaryConditionBuilder.cpp
index 44d06831f7a8f0a182f41efb888610f12f2736e0..49165f61538363b9ebc108c230fd9c8a9200fc5e 100644
--- a/ProcessLib/LIE/BoundaryCondition/BoundaryConditionBuilder.cpp
+++ b/ProcessLib/LIE/BoundaryCondition/BoundaryConditionBuilder.cpp
@@ -17,16 +17,15 @@ namespace ProcessLib
 {
 namespace LIE
 {
-
 std::unique_ptr<BoundaryCondition>
 BoundaryConditionBuilder::createNeumannBoundaryCondition(
-        const BoundaryConditionConfig& config,
-        const NumLib::LocalToGlobalIndexMap& dof_table, const MeshLib::Mesh& mesh,
-        const int variable_id, const unsigned integration_order,
-        const unsigned shapefunction_order,
-        const std::vector<std::unique_ptr<ProcessLib::ParameterBase>>& parameters,
-        MeshGeoToolsLib::MeshNodeSearcher& /*mesh_node_searcher*/,
-        MeshGeoToolsLib::BoundaryElementsSearcher& boundary_element_searcher)
+    const BoundaryConditionConfig& config,
+    const NumLib::LocalToGlobalIndexMap& dof_table, const MeshLib::Mesh& mesh,
+    const int variable_id, const unsigned integration_order,
+    const unsigned shapefunction_order,
+    const std::vector<std::unique_ptr<ProcessLib::ParameterBase>>& parameters,
+    MeshGeoToolsLib::MeshNodeSearcher const& /*mesh_node_searcher*/,
+    MeshGeoToolsLib::BoundaryElementsSearcher& boundary_element_searcher)
 {
     return ProcessLib::LIE::createNeumannBoundaryCondition(
         config.config,
diff --git a/ProcessLib/LIE/BoundaryCondition/BoundaryConditionBuilder.h b/ProcessLib/LIE/BoundaryCondition/BoundaryConditionBuilder.h
index d4276b253f17a57bcdfe914c09ebc1edcd99847b..e57380d7a60be4e06a5c7fb91a981c2e8e0a4e85 100644
--- a/ProcessLib/LIE/BoundaryCondition/BoundaryConditionBuilder.h
+++ b/ProcessLib/LIE/BoundaryCondition/BoundaryConditionBuilder.h
@@ -43,12 +43,12 @@ private:
         const BoundaryConditionConfig& config,
         const NumLib::LocalToGlobalIndexMap& dof_table,
         const MeshLib::Mesh& mesh, const int variable_id,
-        const unsigned integration_order,
-        const unsigned shapefunction_order,
+        const unsigned integration_order, const unsigned shapefunction_order,
         const std::vector<std::unique_ptr<ProcessLib::ParameterBase>>&
             parameters,
-        MeshGeoToolsLib::MeshNodeSearcher& mesh_node_searcher,
-        MeshGeoToolsLib::BoundaryElementsSearcher& boundary_element_searcher) override;
+        MeshGeoToolsLib::MeshNodeSearcher const& mesh_node_searcher,
+        MeshGeoToolsLib::BoundaryElementsSearcher& boundary_element_searcher)
+        override;
 
     FractureProperty const& _fracture_prop;
 };
diff --git a/Tests/NumLib/LocalToGlobalIndexMapMultiComponent.cpp b/Tests/NumLib/LocalToGlobalIndexMapMultiComponent.cpp
index df08bff74c27b07decc13e4df44a92dca9cacf71..723ace16e5a876ab31dacad60eac57930a66a656 100644
--- a/Tests/NumLib/LocalToGlobalIndexMapMultiComponent.cpp
+++ b/Tests/NumLib/LocalToGlobalIndexMapMultiComponent.cpp
@@ -55,7 +55,10 @@ public:
 
         geo_objs.addPolylineVec(std::move(plys), geometry_0, nullptr);
 
-        MGTL::MeshNodeSearcher& searcher_nodes = MGTL::MeshNodeSearcher::getMeshNodeSearcher(*mesh);
+        MGTL::SearchLength search_length;
+        MGTL::MeshNodeSearcher const& searcher_nodes =
+            MGTL::MeshNodeSearcher::getMeshNodeSearcher(
+                *mesh, std::move(search_length));
         MGTL::BoundaryElementsSearcher searcher_elements(*mesh, searcher_nodes);
 
         auto elems = searcher_elements.getBoundaryElements(*ply);