From 8d5deca068733127d1e6eb760d0b2ea6daa6c984 Mon Sep 17 00:00:00 2001 From: cvvergara Date: Wed, 23 Nov 2022 13:37:28 -0600 Subject: [PATCH] [coloring] fixing lint errors from new linter --- include/coloring/pgr_bipartite_driver.hpp | 8 ++++---- include/coloring/pgr_edgeColoring.hpp | 6 +++--- include/coloring/pgr_sequentialVertexColoring.hpp | 7 +++---- src/coloring/pgr_edgeColoring.cpp | 5 +++-- 4 files changed, 13 insertions(+), 13 deletions(-) diff --git a/include/coloring/pgr_bipartite_driver.hpp b/include/coloring/pgr_bipartite_driver.hpp index c57774ffed..84abe2e0cd 100644 --- a/include/coloring/pgr_bipartite_driver.hpp +++ b/include/coloring/pgr_bipartite_driver.hpp @@ -32,15 +32,15 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. #define INCLUDE_COLORING_PGR_BIPARTITE_DRIVER_HPP_ #pragma once +#include +#include +#include + #include #include #include #include -#include -#include -#include - #include "cpp_common/pgr_base_graph.hpp" #include "cpp_common/pgr_messages.h" #include "cpp_common/interruption.h" diff --git a/include/coloring/pgr_edgeColoring.hpp b/include/coloring/pgr_edgeColoring.hpp index de98eaa4f1..b1eaa63717 100644 --- a/include/coloring/pgr_edgeColoring.hpp +++ b/include/coloring/pgr_edgeColoring.hpp @@ -27,13 +27,13 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. #define INCLUDE_COLORING_PGR_EDGECOLORING_HPP_ #pragma once -#include -#include - #include #include #include +#include +#include + #include "c_types/edge_t.h" #include "c_types/ii_t_rt.h" #include "cpp_common/pgr_assert.h" diff --git a/include/coloring/pgr_sequentialVertexColoring.hpp b/include/coloring/pgr_sequentialVertexColoring.hpp index 6f5d6ea6b3..0fc5e611c0 100644 --- a/include/coloring/pgr_sequentialVertexColoring.hpp +++ b/include/coloring/pgr_sequentialVertexColoring.hpp @@ -25,6 +25,9 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. #define INCLUDE_COLORING_PGR_SEQUENTIALVERTEXCOLORING_HPP_ #pragma once +#include +#include +#include #include #include @@ -33,10 +36,6 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. #include #include -#include -#include -#include - #include "cpp_common/pgr_base_graph.hpp" #include "cpp_common/interruption.h" diff --git a/src/coloring/pgr_edgeColoring.cpp b/src/coloring/pgr_edgeColoring.cpp index 26d31c5e12..17ef2764a5 100644 --- a/src/coloring/pgr_edgeColoring.cpp +++ b/src/coloring/pgr_edgeColoring.cpp @@ -27,14 +27,15 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. ********************************************************************PGR-GNU*/ #include "coloring/pgr_edgeColoring.hpp" -#include -#include #include #include #include #include "cpp_common/identifiers.hpp" +#include +#include + #include "cpp_common/pgr_assert.h" #include "cpp_common/interruption.h"