mirror of
https://github.com/Z3Prover/z3
synced 2025-04-22 16:45:31 +00:00
fixed_slice display
This commit is contained in:
parent
8a23523f20
commit
e22c86acb6
1 changed files with 9 additions and 1 deletions
|
@ -126,7 +126,15 @@ namespace polysat {
|
|||
}
|
||||
}
|
||||
|
||||
|
||||
inline std::ostream& operator<<(std::ostream& out, fixed_slice const& f) {
|
||||
out << "fixed_slice";
|
||||
if (f.child != null_var)
|
||||
out << " child v" << f.child;
|
||||
out << " offset " << f.offset;
|
||||
out << " length " << f.length;
|
||||
out << " value " << f.value;
|
||||
return out;
|
||||
}
|
||||
|
||||
inline std::ostream& operator<<(std::ostream& out, offset_slice const& js) {
|
||||
if (js.offset == 0)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue