3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-22 16:45:31 +00:00

Replace # with x in the definition of algebraic elements

Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
This commit is contained in:
Leonardo de Moura 2013-01-20 18:21:09 -08:00
parent bb386c0f18
commit 3344151aca

View file

@ -5797,7 +5797,7 @@ namespace realclosure {
struct display_free_var_proc {
void operator()(std::ostream & out, bool compact) const {
out << "#";
out << "x";
}
};