mirror of
https://github.com/Z3Prover/z3
synced 2025-04-15 13:28:47 +00:00
Fix build
Previous commits seem to have removed some variable declarations, so the build did not work. This patch reintroduces the variables.
This commit is contained in:
parent
4a15d756d7
commit
570bc3c9c1
|
@ -79,9 +79,11 @@ typename symbolic_automata<T, M>::automaton_t* symbolic_automata<T, M>::mk_minim
|
||||||
|
|
||||||
|
|
||||||
template<class T, class M>
|
template<class T, class M>
|
||||||
typename symbolic_automata<T, M>::automaton_t* symbolic_automata<T, M>::mk_minimize_total(automaton_t& a) {
|
typename symbolic_automata<T, M>::automaton_t* symbolic_automata<T, M>::mk_minimize_total(automaton_t& fa) {
|
||||||
vector<block> pblocks;
|
vector<block> pblocks;
|
||||||
unsigned_vector blocks;
|
unsigned_vector blocks;
|
||||||
|
block final_block(fa->final_states());
|
||||||
|
block non_final_block(fa->non_final_states());
|
||||||
pblocks.push_back(block(fa->final_states())); // 0 |-> final states
|
pblocks.push_back(block(fa->final_states())); // 0 |-> final states
|
||||||
// pblocks.push_back(block(fa->non_final_states()); // 1 |-> non-final states
|
// pblocks.push_back(block(fa->non_final_states()); // 1 |-> non-final states
|
||||||
for (unsigned i = 0; i < fa->num_states(); ++i) {
|
for (unsigned i = 0; i < fa->num_states(); ++i) {
|
||||||
|
|
Loading…
Reference in a new issue