3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-28 11:25:51 +00:00

Add support for compact string representation in the RCF API

Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
This commit is contained in:
Leonardo de Moura 2013-01-14 11:08:32 -08:00
parent 6c35e08e43
commit 742f2b07dd
5 changed files with 18 additions and 12 deletions

View file

@ -268,13 +268,13 @@ extern "C" {
Z3_CATCH_RETURN(Z3_FALSE);
}
Z3_string Z3_API Z3_rcf_num_to_string(Z3_context c, Z3_rcf_num a) {
Z3_string Z3_API Z3_rcf_num_to_string(Z3_context c, Z3_rcf_num a, Z3_bool compact) {
Z3_TRY;
LOG_Z3_rcf_num_to_string(c, a);
LOG_Z3_rcf_num_to_string(c, a, compact);
RESET_ERROR_CODE();
reset_rcf_cancel(c);
std::ostringstream buffer;
rcfm(c).display(buffer, to_rcnumeral(a));
rcfm(c).display(buffer, to_rcnumeral(a), compact != 0);
return mk_c(c)->mk_external_string(buffer.str());
Z3_CATCH_RETURN("");
}