Skip to content

Commit

Permalink
Adding positive universal test
Browse files Browse the repository at this point in the history
  • Loading branch information
phochste committed Jul 27, 2024
1 parent 1ac4089 commit e6e8c35
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions test/pure/universal_statement3.n3s
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
@prefix : <urn:example:> .
@prefix log: <http://www.w3.org/2000/10/swap/log#> .

# From
# \forall x: x is Perfect
# Follows:
# bob is Perfect

(_:X) log:onNegativeSurface {
() log:onNegativeSurface {
_:X :is :Perfect .
} .
} .

() log:onNegativeSurface {
:bob :is :Perfect .

() log:onNegativeSurface {
:test :is true .
} .
} .

() log:onNegativeSurface { :test :is true. () log:onNegativeAnswerSurface { :test :is true } } .

0 comments on commit e6e8c35

Please sign in to comment.