-
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
HoTT-coq XML forest parse error #7
Comments
Because there is little documentation of the protocol in the newer versions of Coq 8.4, snooping on Coqide/coqtop interaction seems to be the only option. The following command is a good start: sudo strace -ff -e trace=read -e read=1,2 -p COQTOP_PID -s 10000 > log.txt then grep "read(0" log.txt. Here is a snippet: Process 11196 attached Similarly, change read to write in the strace command to get the responses of coqtop to coqide. |
Queries like Print/ SearchAbout
do not output an XML tree, but a forest.
This violates one of the assumptions XML parser library.
Soln: artificially add a root node before sending it off to the parser
The text was updated successfully, but these errors were encountered: