Skip to content

Commit

Permalink
Merge pull request #23 from zhengying-liu/master
Browse files Browse the repository at this point in the history
Fix Fhyp type
  • Loading branch information
tirix authored Mar 5, 2024
2 parents 865e742 + 4d185c6 commit 45a7363
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 45a7363

Please sign in to comment.