8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
I followed the instruction in https://cs.stanford.edu/~padon/ivy/index.html#downloading.
When I run : python ../../ivy/ivy2.py leader_election_ring.ivy
python ../../ivy/ivy2.py leader_election_ring.ivy
I get a type error:
TypeError Traceback (most recent call last) <ipython-input-1-5502424a515f> in <module>() 18 ctx.__enter__() 19 ivy_widget = AnalysisSessionWidget() ---> 20 session = AnalysisSession('leader_election_ring.ivy', ivy_widget) 21 set_context(session) 22 ivy_widget.transition_view.conjectures = session.analysis_state.ivy_interp.conjs[:] /home/lsq/ivy/ivy/proof.pyc in __init__(self, filename, widget) 62 self.filename = filename 63 try: ---> 64 m = IvyModel(filename) 65 except IvyError as e: 66 raise e /home/lsq/ivy/ivy/proof.pyc in __init__(self, filename) 24 ag = ivy_new() 25 try: ---> 26 ivy_load_file(open(filename), ag) 27 except IvyError as e: 28 e.filename = filename TypeError: ivy_load_file() takes exactly 1 argument (2 given)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I followed the instruction in https://cs.stanford.edu/~padon/ivy/index.html#downloading.
When I run :
python ../../ivy/ivy2.py leader_election_ring.ivy
I get a type error:
The text was updated successfully, but these errors were encountered: