Skip to content

Commit

Permalink
Another test
Browse files Browse the repository at this point in the history
  • Loading branch information
ajreynol committed Jul 26, 2023
1 parent f178e48 commit 06cded7
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
1 change: 1 addition & 0 deletions tests/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ set(alfc_test_file_list
substitution.smt2
substitution-binary-only.smt2
beta-reduce-define-fun.smt2
define-const-simple.smt2
)

macro(alfc_test file)
Expand Down
15 changes: 15 additions & 0 deletions tests/define-const-simple.smt2
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@

(declare-const true Bool)
(declare-const false Bool)
(declare-const not (-> Bool Bool))

(define-const f_true Bool true)


(declare-rule trust ((f Bool))
:premises ()
:args (f)
:conclusion f
)

(step a1 true :rule trust :args (f_true))

0 comments on commit 06cded7

Please sign in to comment.