mirror of
https://github.com/Z3Prover/z3
synced 2025-04-27 10:55:50 +00:00
parent
5d06fa2347
commit
3c1c3d5987
12 changed files with 103 additions and 31 deletions
|
@ -1542,6 +1542,16 @@ void ast_manager::raise_exception(char const * msg) {
|
|||
}
|
||||
|
||||
|
||||
std::ostream& ast_manager::display(std::ostream& out, parameter const& p) {
|
||||
switch (p.get_kind()) {
|
||||
case parameter::PARAM_AST:
|
||||
return out << mk_pp(p.get_ast(), *this);
|
||||
default:
|
||||
return p.display(out);
|
||||
}
|
||||
return out;
|
||||
}
|
||||
|
||||
void ast_manager::copy_families_plugins(ast_manager const & from) {
|
||||
TRACE("copy_families_plugins",
|
||||
tout << "target:\n";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue