Skip to content

Commit

Permalink
Fix Fhyp type
Browse files Browse the repository at this point in the history
  • Loading branch information
zhengying-liu committed Mar 5, 2024
1 parent 865e742 commit 4d185c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mmverify.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
Symbol = typing.Union[Var, Const]
Stmt = list[Symbol]
Ehyp = Stmt
Fhyp = tuple[Var, Const]
Fhyp = tuple[Const, Var]
Dv = tuple[Var, Var]
Assertion = tuple[set[Dv], list[Fhyp], list[Ehyp], Stmt]
FullStmt = tuple[Stmttype, typing.Union[Stmt, Assertion]]
Expand Down

0 comments on commit 4d185c6

Please sign in to comment.