mirror of
https://github.com/Z3Prover/z3
synced 2025-04-15 21:38:44 +00:00
remove repeated default argument, remove tabs
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
5c99405db3
commit
82d0310d94
|
@ -284,7 +284,8 @@ typename symbolic_automata<T, M>::automaton_t* symbolic_automata<T, M>::mk_compl
|
|||
}
|
||||
|
||||
template<class T, class M>
|
||||
typename symbolic_automata<T, M>::automaton_t* symbolic_automata<T, M>::mk_determinstic_param(automaton_t& a, bool flip_acceptance = false) {
|
||||
typename symbolic_automata<T, M>::automaton_t*
|
||||
symbolic_automata<T, M>::mk_determinstic_param(automaton_t& a, bool flip_acceptance) {
|
||||
vector<std::pair<vector<bool>, ref_t> > min_terms;
|
||||
vector<ref_t> predicates;
|
||||
|
||||
|
@ -301,7 +302,7 @@ typename symbolic_automata<T, M>::automaton_t* symbolic_automata<T, M>::mk_deter
|
|||
new_final_states.push_back(p_state_id);
|
||||
}
|
||||
|
||||
set.insert(a.init()); // initial state as aset
|
||||
set.insert(a.init()); // Initial state as aset
|
||||
s2id.insert(set, p_state_id++); // the index to the initial state is 0
|
||||
id2s.push_back(set);
|
||||
|
||||
|
|
Loading…
Reference in a new issue