mirror of
https://github.com/Z3Prover/z3
synced 2025-04-28 19:35:50 +00:00
strengthen support for int.to.str and length reasoning. Issue #589
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
8c99d3c431
commit
c3f498a640
9 changed files with 103 additions and 31 deletions
|
@ -488,7 +488,9 @@ namespace datalog {
|
|||
}
|
||||
|
||||
std::string relation_manager::to_nice_string(const relation_sort & s) const {
|
||||
return std::string(s->get_name().bare_str());
|
||||
std::ostringstream strm;
|
||||
strm << mk_pp(s, get_context().get_manager());
|
||||
return strm.str();
|
||||
}
|
||||
|
||||
std::string relation_manager::to_nice_string(const relation_signature & s) const {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue