3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2026-06-19 15:16:29 +00:00

Remove redundant function

This commit is contained in:
CEisenhofer 2026-05-27 17:27:48 +02:00
parent e74b235d87
commit 0fa1e75f3f
2 changed files with 1 additions and 6 deletions

View file

@ -336,8 +336,7 @@ namespace seq {
}
m_constraints.push_back(c);
}
euf::snode *nielsen_graph::mk_fresh_char_var() {}
void nielsen_node::apply_subst(euf::sgraph& sg, nielsen_subst const& s) {
SASSERT(!s.m_var->is_char_or_unit() || s.m_replacement->is_char_or_unit());
SASSERT(s.m_var);

View file

@ -1195,10 +1195,6 @@ namespace seq {
// create a fresh variable with a unique name and the given sequence sort
euf::snode* mk_fresh_var(sort* s);
// create a fresh symbolic character: seq.unit(fresh_char_const)
// analogous to ZIPT's SymCharToken creation
euf::snode* mk_fresh_char_var();
// deterministic modifier: var = ε, same-head cancel
bool apply_det_modifier(nielsen_node* node);