2
0
mirror of https://github.com/boostorg/graph.git synced 2026-01-19 16:22:14 +00:00

Fixed tab issues found by inspect tool

[SVN r55027]
This commit is contained in:
Jeremiah Willcock
2009-07-19 15:32:27 +00:00
parent 083d6b83aa
commit 0b53b0b00a
2 changed files with 5 additions and 5 deletions

View File

@@ -34,10 +34,10 @@ void gen_rand_graph(TG &g, size_t nV, size_t nE)
rng.seed(uint32_t(time(0)));
boost::generate_random_graph(g, nV, nE, rng, true, true);
boost::uniform_real<> ur(-1,10);
boost::variate_generator<boost::mt19937&, boost::uniform_real<> > ew1rg(rng, ur);
boost::variate_generator<boost::mt19937&, boost::uniform_real<> > ew1rg(rng, ur);
randomize_property<edge_weight_t>(g, ew1rg);
boost::uniform_int<size_t> uint(1,5);
boost::variate_generator<boost::mt19937&, boost::uniform_int<size_t> > ew2rg(rng, uint);
boost::variate_generator<boost::mt19937&, boost::uniform_int<size_t> > ew2rg(rng, uint);
randomize_property<edge_weight2_t>(g, ew2rg);
}

View File

@@ -1132,7 +1132,7 @@ class compressed_sparse_row_graph
}
template <typename BidirectionalIteratorOrig, typename EPIterOrig,
typename GlobalToLocal>
typename GlobalToLocal>
void
add_edges_sorted_internal_global(
BidirectionalIteratorOrig first_sorted,
@@ -1368,7 +1368,7 @@ add_edge(Vertex src, Vertex tgt,
const GlobalToLocal& global_to_local,
BOOST_CSR_GRAPH_TYPE& g) {
g.add_edges_sorted_internal_global(first_sorted, last_sorted, ep_iter_sorted,
global_to_local);
global_to_local);
}
// Add edges from a sorted (smallest sources first) range of pairs
@@ -1388,7 +1388,7 @@ add_edge(Vertex src, Vertex tgt,
typename GlobalToLocal>
inline void
add_edges_global(InputIterator first, InputIterator last,
const GlobalToLocal& global_to_local, BOOST_CSR_GRAPH_TYPE& g) {
const GlobalToLocal& global_to_local, BOOST_CSR_GRAPH_TYPE& g) {
g.add_edges_internal(first, last, global_to_local);
}