Skip to content

Commit

Permalink
[coloring] fixing lint errors from new linter
Browse files Browse the repository at this point in the history
  • Loading branch information
cvvergara committed Nov 25, 2022
1 parent cddf55b commit 8d5deca
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 13 deletions.
8 changes: 4 additions & 4 deletions include/coloring/pgr_bipartite_driver.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -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 <iostream>
#include <algorithm>
#include <vector>

#include <boost/property_map/property_map.hpp>
#include <boost/property_map/vector_property_map.hpp>
#include <boost/type_traits.hpp>
#include <boost/graph/bipartite.hpp>

#include <iostream>
#include <algorithm>
#include <vector>

#include "cpp_common/pgr_base_graph.hpp"
#include "cpp_common/pgr_messages.h"
#include "cpp_common/interruption.h"
Expand Down
6 changes: 3 additions & 3 deletions include/coloring/pgr_edgeColoring.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -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 <boost/config.hpp>
#include <boost/graph/adjacency_list.hpp>

#include <iostream>
#include <map>
#include <vector>

#include <boost/config.hpp>
#include <boost/graph/adjacency_list.hpp>

#include "c_types/edge_t.h"
#include "c_types/ii_t_rt.h"
#include "cpp_common/pgr_assert.h"
Expand Down
7 changes: 3 additions & 4 deletions include/coloring/pgr_sequentialVertexColoring.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -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 <algorithm>
#include <vector>
#include <map>

#include <boost/property_map/property_map.hpp>
#include <boost/graph/graph_traits.hpp>
Expand All @@ -33,10 +36,6 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
#include <boost/graph/adjacency_list.hpp>
#include <boost/graph/sequential_vertex_coloring.hpp>

#include <algorithm>
#include <vector>
#include <map>

#include "cpp_common/pgr_base_graph.hpp"
#include "cpp_common/interruption.h"

Expand Down
5 changes: 3 additions & 2 deletions src/coloring/pgr_edgeColoring.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -27,14 +27,15 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
********************************************************************PGR-GNU*/

#include "coloring/pgr_edgeColoring.hpp"
#include <boost/graph/edge_coloring.hpp>
#include <boost/graph/graph_utility.hpp>

#include <vector>
#include <utility>
#include <string>

#include "cpp_common/identifiers.hpp"
#include <boost/graph/edge_coloring.hpp>
#include <boost/graph/graph_utility.hpp>

#include "cpp_common/pgr_assert.h"
#include "cpp_common/interruption.h"

Expand Down

0 comments on commit 8d5deca

Please sign in to comment.