We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
A user on Discord reports a crash in Pyk:
module PROGRAM-SYNTAX syntax Exp syntax Stmt ::= "start" Exp "middle" Exp "end" [seqstrict(1, 2)] syntax KResult endmodule module PROGRAM imports PROGRAM-SYNTAX endmodule
from pyk.ktool.kprove import KProve from pyk.ktool.kompile import HaskellKompile, KompileArgs from pathlib import Path source_dir = '/home/alex/repos_from2024/k/kprover/records/' main_file = source_dir + '/program.k' kompiled_dir = source_dir + '/program-kompile2/' base_args = KompileArgs(main_file = main_file) kompile = HaskellKompile(base_args=base_args) kompile_res = kompile.__call__(output_dir=kompiled_dir) kprove = KProve(Path(kompiled_dir)) kprove.definition
I haven't triaged this at all; not sure what's happening.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
A user on Discord reports a crash in Pyk:
I haven't triaged this at all; not sure what's happening.
The text was updated successfully, but these errors were encountered: