parameterize BitVector and BitMatrix by their index types

This commit is contained in:
Niko Matsakis
2018-07-22 19:23:39 +03:00
parent a54401ebcc
commit 145155dc96
16 changed files with 119 additions and 96 deletions

View File

@@ -348,7 +348,7 @@ where
{
graph: &'g Graph<N, E>,
stack: Vec<NodeIndex>,
visited: BitVector,
visited: BitVector<usize>,
direction: Direction,
}