mirror of
https://github.com/Z3Prover/z3
synced 2025-08-02 09:20:22 +00:00
bool_vector, some spacer tidy
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
2ed26e8e73
commit
b889b110ee
106 changed files with 239 additions and 266 deletions
|
@ -1385,7 +1385,7 @@ public:
|
|||
template<typename Functor>
|
||||
bool find_shortest_path_aux(dl_var source, dl_var target, unsigned timestamp, Functor & f, bool zero_edge) {
|
||||
svector<bfs_elem> bfs_todo;
|
||||
svector<bool> bfs_mark;
|
||||
bool_vector bfs_mark;
|
||||
bfs_mark.resize(m_assignment.size(), false);
|
||||
|
||||
bfs_todo.push_back(bfs_elem(source, -1, null_edge_id));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue