-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hardly readable sequent #116
Comments
Yes, looks rather complicated. How can the representation be simplified? Is this a matter of the pretty printing (e.g., bad line breaks, spaces) or is this a problem with term representtation (e.g. is |
i think its a combination. looking at the picture above i think that if this sequent is pretty printed reasonably (e.g. line breaks) this would help a great deal in understanding. On the other hand i think that these kind of "nested" references to different heaps is a bad idea in general i would prefer to have either speaking names for certain heaps (e.g. preHeap, postHead,...) or some kind of SSA like variable handling where instead of writing x@heap1 == x@heap2 its possible to display something like x1 == x2 |
Is colour-coding an option? Have you tried using the SSA sequenter? That should do something of the kind ... |
using the ssa sequenter i get the following exception: java.lang.NullPointerException so thats not an option. Concerning colour-coding: I dont see how this would be sufficient but im happy to get convinced by the contrary |
That's obviously not as intended. On which input? |
the stack example currently checked in on the vstte branch |
I cannot reproduce this fault on d58a65f. |
checkout 56e6249 and open the stackexample to reproduce |
OK. I repaired the SSA sequenter and it parses your example (from vsste) now. Have a look! |
some sequents are really hard to read and get prettyprinted super bad (see attached picture)
The text was updated successfully, but these errors were encountered: