Skip to content

Commit

Permalink
Add always to axioms in fly output
Browse files Browse the repository at this point in the history
  • Loading branch information
tchajed authored and odedp committed Nov 22, 2023
1 parent 1a3c10b commit 2fc6d51
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mypyvy.py
Original file line number Diff line number Diff line change
Expand Up @@ -727,7 +727,7 @@ def to_fly(prog: Program) -> str:
)
if len(list(prog.axioms())) != 0:
result += '\n\n# axioms:\n'
result += 'assume ' + ' & '.join(
result += 'assume always ' + ' & '.join(
'(' + str(axiom.expr) + ')'
for axiom in prog.axioms()
)
Expand Down

0 comments on commit 2fc6d51

Please sign in to comment.