Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Alex Henrie
graph-tool
Commits
38a35012
Commit
38a35012
authored
Nov 23, 2020
by
Alex Henrie
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove unused includes
parent
4e66070a
Pipeline
#752
passed with stage
in 109 minutes and 44 seconds
Changes
43
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
43 changed files
with
5 additions
and
97 deletions
+5
-97
src/graph/centrality/minmax.hh
src/graph/centrality/minmax.hh
+1
-1
src/graph/generation/graph_generation.hh
src/graph/generation/graph_generation.hh
+0
-2
src/graph/generation/graph_knn.hh
src/graph/generation/graph_knn.hh
+0
-1
src/graph/generation/graph_lattice.hh
src/graph/generation/graph_lattice.hh
+0
-1
src/graph/generation/graph_maxent_sbm.hh
src/graph/generation/graph_maxent_sbm.hh
+0
-1
src/graph/generation/graph_rewiring.hh
src/graph/generation/graph_rewiring.hh
+0
-1
src/graph/generation/graph_sbm.hh
src/graph/generation/graph_sbm.hh
+0
-4
src/graph/generation/graph_triangulation.hh
src/graph/generation/graph_triangulation.hh
+0
-2
src/graph/gml.hh
src/graph/gml.hh
+0
-11
src/graph/graph_adaptor.hh
src/graph/graph_adaptor.hh
+0
-3
src/graph/graph_adjacency.hh
src/graph/graph_adjacency.hh
+0
-1
src/graph/graph_filtered.hh
src/graph/graph_filtered.hh
+0
-1
src/graph/graph_properties.hh
src/graph/graph_properties.hh
+0
-3
src/graph/graph_properties_copy_imp1.cc
src/graph/graph_properties_copy_imp1.cc
+0
-3
src/graph/graph_python_interface.hh
src/graph/graph_python_interface.hh
+0
-3
src/graph/graph_python_interface_imp1.cc
src/graph/graph_python_interface_imp1.cc
+0
-1
src/graph/graph_reverse.hh
src/graph/graph_reverse.hh
+0
-3
src/graph/graphml.cpp
src/graph/graphml.cpp
+0
-1
src/graph/histogram.hh
src/graph/histogram.hh
+0
-2
src/graph/inference/blockmodel/graph_blockmodel_multiflip_mcmc.hh
...h/inference/blockmodel/graph_blockmodel_multiflip_mcmc.hh
+0
-1
src/graph/inference/blockmodel/graph_blockmodel_partition.hh
src/graph/inference/blockmodel/graph_blockmodel_partition.hh
+2
-0
src/graph/inference/graph_latent_multigraph.hh
src/graph/inference/graph_latent_multigraph.hh
+0
-3
src/graph/inference/graph_modularity.hh
src/graph/inference/graph_modularity.hh
+0
-5
src/graph/inference/layers/graph_blockmodel_layers_util.hh
src/graph/inference/layers/graph_blockmodel_layers_util.hh
+0
-2
src/graph/inference/loops/bundled_vacate_loop.hh
src/graph/inference/loops/bundled_vacate_loop.hh
+0
-1
src/graph/inference/loops/gibbs_loop.hh
src/graph/inference/loops/gibbs_loop.hh
+0
-3
src/graph/inference/loops/mcmc_loop.hh
src/graph/inference/loops/mcmc_loop.hh
+0
-1
src/graph/inference/support/graph_state.hh
src/graph/inference/support/graph_state.hh
+0
-5
src/graph/inference/support/int_part.hh
src/graph/inference/support/int_part.hh
+0
-2
src/graph/inference/support/util.hh
src/graph/inference/support/util.hh
+0
-3
src/graph/inference/uncertain/graph_blockmodel_sample_edge.hh
...graph/inference/uncertain/graph_blockmodel_sample_edge.hh
+0
-1
src/graph/inference/uncertain/graph_blockmodel_uncertain_marginal.hh
...nference/uncertain/graph_blockmodel_uncertain_marginal.hh
+0
-2
src/graph/layout/graph_arf.hh
src/graph/layout/graph_arf.hh
+0
-3
src/graph/mpl_nested_loop.hh
src/graph/mpl_nested_loop.hh
+0
-5
src/graph/numpy_bind.hh
src/graph/numpy_bind.hh
+0
-2
src/graph/random.cc
src/graph/random.cc
+2
-0
src/graph/random.hh
src/graph/random.hh
+0
-1
src/graph/read_graphviz_new.cpp
src/graph/read_graphviz_new.cpp
+0
-6
src/graph/stats/graph_parallel.cc
src/graph/stats/graph_parallel.cc
+0
-2
src/graph/str_repr.hh
src/graph/str_repr.hh
+0
-1
src/graph/topology/graph_bipartite_weighted_matching.hh
src/graph/topology/graph_bipartite_weighted_matching.hh
+0
-1
src/graph/topology/graph_matching.cc
src/graph/topology/graph_matching.cc
+0
-1
src/graph/topology/graph_transitive_closure.cc
src/graph/topology/graph_transitive_closure.cc
+0
-1
No files found.
src/graph/centrality/minmax.hh
View file @
38a35012
...
@@ -20,7 +20,7 @@
...
@@ -20,7 +20,7 @@
#include <vector>
#include <vector>
#include <boost/mpl/bool.hpp>
#include <boost/mpl/bool.hpp>
#include <iostream>
//
#include <iostream>
using
namespace
std
;
using
namespace
std
;
template
<
class
Value
,
class
Compare
=
std
::
less
<
Value
>
>
template
<
class
Value
,
class
Compare
=
std
::
less
<
Value
>
>
...
...
src/graph/generation/graph_generation.hh
View file @
38a35012
...
@@ -18,8 +18,6 @@
...
@@ -18,8 +18,6 @@
#ifndef GRAPH_GENERATION_HH
#ifndef GRAPH_GENERATION_HH
#define GRAPH_GENERATION_HH
#define GRAPH_GENERATION_HH
#include <tuple>
#include <boost/functional/hash.hpp>
#include <map>
#include <map>
#include <set>
#include <set>
#include <iostream>
#include <iostream>
...
...
src/graph/generation/graph_knn.hh
View file @
38a35012
...
@@ -19,7 +19,6 @@
...
@@ -19,7 +19,6 @@
#define GRAPH_KNN_HH
#define GRAPH_KNN_HH
#include <tuple>
#include <tuple>
#include <iostream>
#include <random>
#include <random>
#include <boost/functional/hash.hpp>
#include <boost/functional/hash.hpp>
...
...
src/graph/generation/graph_lattice.hh
View file @
38a35012
...
@@ -18,7 +18,6 @@
...
@@ -18,7 +18,6 @@
#ifndef GRAPH_LATTICE_HH
#ifndef GRAPH_LATTICE_HH
#define GRAPH_LATTICE_HH
#define GRAPH_LATTICE_HH
#include <iostream>
#include "graph_util.hh"
#include "graph_util.hh"
namespace
graph_tool
namespace
graph_tool
...
...
src/graph/generation/graph_maxent_sbm.hh
View file @
38a35012
...
@@ -19,7 +19,6 @@
...
@@ -19,7 +19,6 @@
#define GRAPH_MAXENT_SBM_HH
#define GRAPH_MAXENT_SBM_HH
#include <tuple>
#include <tuple>
#include <iostream>
#include "graph.hh"
#include "graph.hh"
#include "graph_filtering.hh"
#include "graph_filtering.hh"
...
...
src/graph/generation/graph_rewiring.hh
View file @
38a35012
...
@@ -20,7 +20,6 @@
...
@@ -20,7 +20,6 @@
#include <tuple>
#include <tuple>
#include <iostream>
#include <iostream>
#include <boost/functional/hash.hpp>
#include "graph.hh"
#include "graph.hh"
#include "graph_filtering.hh"
#include "graph_filtering.hh"
...
...
src/graph/generation/graph_sbm.hh
View file @
38a35012
...
@@ -18,10 +18,6 @@
...
@@ -18,10 +18,6 @@
#ifndef GRAPH_SBM_HH
#ifndef GRAPH_SBM_HH
#define GRAPH_SBM_HH
#define GRAPH_SBM_HH
#include <tuple>
#include <iostream>
#include <boost/functional/hash.hpp>
#include "graph.hh"
#include "graph.hh"
#include "graph_filtering.hh"
#include "graph_filtering.hh"
#include "graph_util.hh"
#include "graph_util.hh"
...
...
src/graph/generation/graph_triangulation.hh
View file @
38a35012
...
@@ -23,8 +23,6 @@
...
@@ -23,8 +23,6 @@
#ifndef GRAPH_TRIANGULATION_HH
#ifndef GRAPH_TRIANGULATION_HH
#define GRAPH_TRIANGULATION_HH
#define GRAPH_TRIANGULATION_HH
#include <tuple>
#include "graph_util.hh"
#include "graph_util.hh"
#include "hash_map_wrap.hh"
#include "hash_map_wrap.hh"
...
...
src/graph/gml.hh
View file @
38a35012
...
@@ -22,29 +22,18 @@
...
@@ -22,29 +22,18 @@
#include <boost/config/warning_disable.hpp>
#include <boost/config/warning_disable.hpp>
#include <boost/spirit/include/qi.hpp>
#include <boost/spirit/include/qi.hpp>
#include <boost/spirit/include/phoenix_core.hpp>
#include <boost/spirit/include/phoenix_operator.hpp>
#include <boost/spirit/include/phoenix_fusion.hpp>
#include <boost/spirit/include/phoenix_stl.hpp>
#include <boost/fusion/include/adapt_struct.hpp>
#include <boost/variant/recursive_variant.hpp>
#include <boost/variant/recursive_variant.hpp>
#include <boost/variant/get.hpp>
#include <boost/variant/get.hpp>
#include <boost/spirit/include/support_istream_iterator.hpp>
#include <boost/spirit/include/support_istream_iterator.hpp>
#include <boost/foreach.hpp>
#include <boost/regex/pending/unicode_iterator.hpp>
#include <boost/algorithm/string/replace.hpp>
#include <boost/algorithm/string/replace.hpp>
#include <boost/property_map/dynamic_property_map.hpp>
#include <boost/property_map/dynamic_property_map.hpp>
#include <boost/tuple/tuple.hpp>
#include <boost/graph/graph_traits.hpp>
#include <boost/graph/graph_traits.hpp>
#include <boost/graph/properties.hpp>
#include <boost/python.hpp>
#include <boost/python.hpp>
#include <iostream>
#include <iostream>
#include <fstream>
#include <string>
#include <string>
#include <vector>
#include <vector>
#include <unordered_map>
#include <unordered_map>
...
...
src/graph/graph_adaptor.hh
View file @
38a35012
...
@@ -18,12 +18,9 @@
...
@@ -18,12 +18,9 @@
#ifndef GRAPH_ADAPTOR_HH
#ifndef GRAPH_ADAPTOR_HH
#define GRAPH_ADAPTOR_HH
#define GRAPH_ADAPTOR_HH
#include <list>
#include <boost/config.hpp>
#include <boost/config.hpp>
#include <boost/iterator_adaptors.hpp>
#include <boost/iterator_adaptors.hpp>
#include <boost/graph/graph_traits.hpp>
#include <boost/graph/graph_traits.hpp>
#include <boost/graph/properties.hpp>
#include "transform_iterator.hh"
#include "transform_iterator.hh"
...
...
src/graph/graph_adjacency.hh
View file @
38a35012
...
@@ -22,7 +22,6 @@
...
@@ -22,7 +22,6 @@
#include <deque>
#include <deque>
#include <utility>
#include <utility>
#include <numeric>
#include <numeric>
#include <tuple>
#include <boost/iterator.hpp>
#include <boost/iterator.hpp>
#include <boost/graph/graph_traits.hpp>
#include <boost/graph/graph_traits.hpp>
#include <boost/range/irange.hpp>
#include <boost/range/irange.hpp>
...
...
src/graph/graph_filtered.hh
View file @
38a35012
...
@@ -30,7 +30,6 @@
...
@@ -30,7 +30,6 @@
#include <boost/graph/graph_traits.hpp>
#include <boost/graph/graph_traits.hpp>
#include <boost/graph/properties.hpp>
#include <boost/graph/properties.hpp>
#include <boost/graph/adjacency_iterator.hpp>
#include <boost/graph/adjacency_iterator.hpp>
#include <boost/graph/detail/set_adaptor.hpp>
#include <boost/iterator/filter_iterator.hpp>
#include <boost/iterator/filter_iterator.hpp>
#include <boost/graph/filtered_graph.hpp> // for predicate classes
#include <boost/graph/filtered_graph.hpp> // for predicate classes
...
...
src/graph/graph_properties.hh
View file @
38a35012
...
@@ -18,11 +18,8 @@
...
@@ -18,11 +18,8 @@
#ifndef GRAPH_PROPERTIES_HH
#ifndef GRAPH_PROPERTIES_HH
#define GRAPH_PROPERTIES_HH
#define GRAPH_PROPERTIES_HH
#include <typeinfo>
#include <string>
#include <string>
#include <vector>
#include <vector>
#include <memory>
#include <random>
#include <unordered_map>
#include <unordered_map>
#include <boost/functional/hash.hpp>
#include <boost/functional/hash.hpp>
#include <boost/python/object.hpp>
#include <boost/python/object.hpp>
...
...
src/graph/graph_properties_copy_imp1.cc
View file @
38a35012
...
@@ -19,9 +19,6 @@
...
@@ -19,9 +19,6 @@
#include "graph_filtering.hh"
#include "graph_filtering.hh"
#include "graph_properties.hh"
#include "graph_properties.hh"
#include <boost/mpl/contains.hpp>
#include <boost/python/extract.hpp>
#include "graph_properties_copy.hh"
#include "graph_properties_copy.hh"
using
namespace
std
;
using
namespace
std
;
...
...
src/graph/graph_python_interface.hh
View file @
38a35012
...
@@ -33,8 +33,6 @@ namespace std
...
@@ -33,8 +33,6 @@ namespace std
}
}
#include <boost/graph/graph_traits.hpp>
#include <boost/graph/graph_traits.hpp>
#include <boost/mpl/logical.hpp>
#include <boost/iterator/iterator_facade.hpp>
#include <boost/version.hpp>
#include <boost/version.hpp>
#if (BOOST_VERSION >= 104000)
#if (BOOST_VERSION >= 104000)
...
@@ -42,7 +40,6 @@ namespace std
...
@@ -42,7 +40,6 @@ namespace std
#else
#else
# include <boost/dynamic_property_map.hpp>
# include <boost/dynamic_property_map.hpp>
#endif
#endif
#include <type_traits>
#include "graph.hh"
#include "graph.hh"
#include "graph_filtering.hh"
#include "graph_filtering.hh"
...
...
src/graph/graph_python_interface_imp1.cc
View file @
38a35012
...
@@ -23,7 +23,6 @@
...
@@ -23,7 +23,6 @@
#include <boost/python.hpp>
#include <boost/python.hpp>
#include <boost/python/stl_iterator.hpp>
#include <boost/python/stl_iterator.hpp>
#include <set>
using
namespace
std
;
using
namespace
std
;
...
...
src/graph/graph_reverse.hh
View file @
38a35012
...
@@ -24,9 +24,6 @@
...
@@ -24,9 +24,6 @@
# define GRAPH_REVERSE
# define GRAPH_REVERSE
#include <boost/graph/adjacency_iterator.hpp>
#include <boost/graph/adjacency_iterator.hpp>
#include <boost/graph/properties.hpp>
#include <boost/iterator/transform_iterator.hpp>
#include <boost/mpl/if.hpp>
#include <utility>
#include <utility>
#if BOOST_WORKAROUND(BOOST_MSVC, < 1300)
#if BOOST_WORKAROUND(BOOST_MSVC, < 1300)
...
...
src/graph/graphml.cpp
View file @
38a35012
...
@@ -9,7 +9,6 @@
...
@@ -9,7 +9,6 @@
// Andrew Lumsdaine
// Andrew Lumsdaine
// Tiago de Paula Peixoto
// Tiago de Paula Peixoto
#include <boost/python.hpp>
#include <expat.h>
#include <expat.h>
#include <boost/graph/graphml.hpp>
#include <boost/graph/graphml.hpp>
#include <boost/algorithm/string/replace.hpp>
#include <boost/algorithm/string/replace.hpp>
...
...
src/graph/histogram.hh
View file @
38a35012
...
@@ -28,8 +28,6 @@
...
@@ -28,8 +28,6 @@
#include <boost/mpl/if.hpp>
#include <boost/mpl/if.hpp>
#include <boost/mpl/int.hpp>
#include <boost/mpl/int.hpp>
#include <boost/python/object.hpp>
//
//
// This is a generic multidimensional histogram type
// This is a generic multidimensional histogram type
//
//
...
...
src/graph/inference/blockmodel/graph_blockmodel_multiflip_mcmc.hh
View file @
38a35012
...
@@ -22,7 +22,6 @@
...
@@ -22,7 +22,6 @@
#include <vector>
#include <vector>
#include <algorithm>
#include <algorithm>
#include <queue>
#include "graph_tool.hh"
#include "graph_tool.hh"
#include "../support/graph_state.hh"
#include "../support/graph_state.hh"
...
...
src/graph/inference/blockmodel/graph_blockmodel_partition.hh
View file @
38a35012
...
@@ -23,6 +23,8 @@
...
@@ -23,6 +23,8 @@
#include "hash_map_wrap.hh"
#include "hash_map_wrap.hh"
#include <boost/range/counting_range.hpp>
namespace
graph_tool
namespace
graph_tool
{
{
...
...
src/graph/inference/graph_latent_multigraph.hh
View file @
38a35012
...
@@ -18,10 +18,7 @@
...
@@ -18,10 +18,7 @@
#ifndef GRAPH_LATENT_MULTIGRAPH_HH
#ifndef GRAPH_LATENT_MULTIGRAPH_HH
#define GRAPH_LATENT_MULTIGRAPH_HH
#define GRAPH_LATENT_MULTIGRAPH_HH
#include <tuple>
#include <iostream>
#include <iostream>
#include <fstream>
#include <iomanip>
#include "graph_tool.hh"
#include "graph_tool.hh"
#include "hash_map_wrap.hh"
#include "hash_map_wrap.hh"
...
...
src/graph/inference/graph_modularity.hh
View file @
38a35012
...
@@ -18,11 +18,6 @@
...
@@ -18,11 +18,6 @@
#ifndef GRAPH_MODULARITY_HH
#ifndef GRAPH_MODULARITY_HH
#define GRAPH_MODULARITY_HH
#define GRAPH_MODULARITY_HH
#include <tuple>
#include <iostream>
#include <fstream>
#include <iomanip>
#include "graph_tool.hh"
#include "graph_tool.hh"
#include "hash_map_wrap.hh"
#include "hash_map_wrap.hh"
...
...
src/graph/inference/layers/graph_blockmodel_layers_util.hh
View file @
38a35012
...
@@ -20,8 +20,6 @@
...
@@ -20,8 +20,6 @@
#include "config.h"
#include "config.h"
#include <vector>
namespace
graph_tool
namespace
graph_tool
{
{
using
namespace
boost
;
using
namespace
boost
;
...
...
src/graph/inference/loops/bundled_vacate_loop.hh
View file @
38a35012
...
@@ -20,7 +20,6 @@
...
@@ -20,7 +20,6 @@
#include "config.h"
#include "config.h"
#include <iostream>
#include <queue>
#include <queue>
#include <tuple>
#include <tuple>
...
...
src/graph/inference/loops/gibbs_loop.hh
View file @
38a35012
...
@@ -20,9 +20,6 @@
...
@@ -20,9 +20,6 @@
#include "config.h"
#include "config.h"
#include <iostream>
#include <queue>
#include <tuple>
#include <tuple>
#include "hash_map_wrap.hh"
#include "hash_map_wrap.hh"
...
...
src/graph/inference/loops/mcmc_loop.hh
View file @
38a35012
...
@@ -21,7 +21,6 @@
...
@@ -21,7 +21,6 @@
#include "config.h"
#include "config.h"
#include <iostream>
#include <iostream>
#include <queue>
#include <tuple>
#include <tuple>
...
...
src/graph/inference/support/graph_state.hh
View file @
38a35012
...
@@ -22,18 +22,13 @@
...
@@ -22,18 +22,13 @@
#include <boost/preprocessor/comparison/equal.hpp>
#include <boost/preprocessor/comparison/equal.hpp>
#include <boost/preprocessor/cat.hpp>
#include <boost/preprocessor/cat.hpp>
#include <boost/preprocessor/seq/size.hpp>
#include <boost/preprocessor/seq/size.hpp>
#include <boost/preprocessor/seq/for_each.hpp>
#include <boost/preprocessor/seq/for_each_i.hpp>
#include <boost/preprocessor/seq/for_each_i.hpp>
#include <boost/preprocessor/stringize.hpp>
#include <boost/preprocessor/stringize.hpp>
#include <boost/preprocessor/tuple/elem.hpp>
#include <boost/preprocessor/tuple/elem.hpp>
#include <boost/preprocessor/control/if.hpp>
#include <boost/preprocessor/arithmetic/dec.hpp>
#include <boost/preprocessor/arithmetic/dec.hpp>
#include <boost/preprocessor/seq/transform.hpp>
#include <boost/preprocessor/seq/transform.hpp>
#include <boost/preprocessor/seq/filter.hpp>
#include <boost/preprocessor/seq/filter.hpp>
#include <boost/preprocessor/comparison/equal.hpp>
#include <boost/preprocessor/comparison/equal.hpp>
#include <boost/preprocessor/comparison/not_equal.hpp>
#include <boost/preprocessor/punctuation/comma.hpp>
#include <boost/preprocessor/facilities/empty.hpp>
#include <boost/preprocessor/seq/first_n.hpp>
#include <boost/preprocessor/seq/first_n.hpp>
#include "graph.hh"
#include "graph.hh"
...
...
src/graph/inference/support/int_part.hh
View file @
38a35012
...
@@ -10,8 +10,6 @@
...
@@ -10,8 +10,6 @@
#include "config.h"
#include "config.h"
#include <cmath>
#include <iostream>
#include <boost/multi_array.hpp>
#include <boost/multi_array.hpp>
#include "cache.hh"
#include "cache.hh"
...
...
src/graph/inference/support/util.hh
View file @
38a35012
...
@@ -21,12 +21,9 @@
...
@@ -21,12 +21,9 @@
#include "config.h"
#include "config.h"
#include <cmath>
#include <cmath>
#include <iostream>
#include "cache.hh"
#include "cache.hh"
#include <boost/range/counting_range.hpp>
namespace
graph_tool
namespace
graph_tool
{
{
using
namespace
boost
;
using
namespace
boost
;
...
...
src/graph/inference/uncertain/graph_blockmodel_sample_edge.hh
View file @
38a35012
...
@@ -19,7 +19,6 @@
...
@@ -19,7 +19,6 @@
#define GRAPH_SBM_SAMPLE_EDGE_HH
#define GRAPH_SBM_SAMPLE_EDGE_HH
#include <tuple>
#include <tuple>
#include <iostream>
#include "graph.hh"
#include "graph.hh"
#include "graph_filtering.hh"
#include "graph_filtering.hh"
...
...
src/graph/inference/uncertain/graph_blockmodel_uncertain_marginal.hh
View file @
38a35012
...
@@ -20,8 +20,6 @@
...
@@ -20,8 +20,6 @@
#include "config.h"
#include "config.h"
#include <vector>
#include "../support/graph_state.hh"
#include "../support/graph_state.hh"
#include "../blockmodel/graph_blockmodel_util.hh"
#include "../blockmodel/graph_blockmodel_util.hh"
#include "graph_blockmodel_sample_edge.hh"
#include "graph_blockmodel_sample_edge.hh"
...
...
src/graph/layout/graph_arf.hh
View file @
38a35012
...
@@ -18,9 +18,6 @@
...
@@ -18,9 +18,6 @@
#ifndef GRAPH_ARF_HH
#ifndef GRAPH_ARF_HH
#define GRAPH_ARF_HH
#define GRAPH_ARF_HH
#include <limits>
#include <iostream>
namespace
graph_tool
namespace
graph_tool
{
{
using
namespace
std
;
using
namespace
std
;
...
...
src/graph/mpl_nested_loop.hh
View file @
38a35012
...
@@ -18,11 +18,6 @@
...
@@ -18,11 +18,6 @@
#ifndef NESTED_FOR_LOOP_HH
#ifndef NESTED_FOR_LOOP_HH
#define NESTED_FOR_LOOP_HH
#define NESTED_FOR_LOOP_HH
#include <boost/mpl/for_each.hpp>
#include <boost/mpl/vector.hpp>
#include <boost/mpl/empty.hpp>
#include <boost/any.hpp>
namespace
boost
namespace
boost
{
{
namespace
mpl
namespace
mpl
...
...
src/graph/numpy_bind.hh
View file @
38a35012
...
@@ -34,10 +34,8 @@
...
@@ -34,10 +34,8 @@
#include <boost/multi_array.hpp>
#include <boost/multi_array.hpp>
#include <boost/mpl/int.hpp>
#include <boost/mpl/int.hpp>
#include <boost/mpl/vector.hpp>
#include <boost/mpl/map.hpp>
#include <boost/mpl/map.hpp>
#include <boost/mpl/pair.hpp>
#include <boost/mpl/pair.hpp>
#include <boost/mpl/for_each.hpp>
#include "demangle.hh"
#include "demangle.hh"
...
...
src/graph/random.cc
View file @
38a35012
...
@@ -19,6 +19,8 @@
...
@@ -19,6 +19,8 @@
#include "random.hh"
#include "random.hh"
#include "parallel_rng.hh"
#include "parallel_rng.hh"
#include <random>
rng_t
get_rng
(
size_t
seed
)
rng_t
get_rng
(
size_t
seed
)
{
{
parallel_rng
<
rng_t
>::
clear
();
parallel_rng
<
rng_t
>::
clear
();
...
...
src/graph/random.hh
View file @
38a35012
...
@@ -18,7 +18,6 @@
...
@@ -18,7 +18,6 @@
#ifndef RANDOM_HH
#ifndef RANDOM_HH
#define RANDOM_HH
#define RANDOM_HH