3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-29 11:55:51 +00:00

Add a basic spanning tree

This commit is contained in:
Anh-Dung Phan 2013-11-15 18:34:05 -08:00
parent af8da013b5
commit 6ddc838628
4 changed files with 155 additions and 7 deletions

View file

@ -41,7 +41,7 @@ namespace smt {
}
}
m_step = 0;
m_tree = alloc(thread_spanning_tree<Ext>, m_graph);
m_tree = alloc(basic_spanning_tree<Ext>, m_graph);
}
template<typename Ext>