diff --git a/include/customizer/cell_customizer.hpp b/include/customizer/cell_customizer.hpp index 08cf0490e..aa6e12268 100644 --- a/include/customizer/cell_customizer.hpp +++ b/include/customizer/cell_customizer.hpp @@ -39,9 +39,9 @@ class CellCustomizer const EdgeWeight weight = heap.GetKey(node); if (level == 1) - RelaxNode(graph, cells, heap, level, id, node, weight); + RelaxNode(graph, cells, heap, level, node, weight); else - RelaxNode(graph, cells, heap, level, id, node, weight); + RelaxNode(graph, cells, heap, level, node, weight); destinations_set.erase(node); } @@ -85,7 +85,6 @@ class CellCustomizer const partition::CellStorage &cells, Heap &heap, LevelID level, - CellID id, NodeID node, EdgeWeight weight) const {