Skip to content

Commit

Permalink
further support for reasoning/n3plus1 (N3 plus increments like RDF 1.…
Browse files Browse the repository at this point in the history
…1, RDF 1.2, functional terms, ...)
  • Loading branch information
josd committed Oct 18, 2024
1 parent fdb8863 commit e7f1537
Showing 1 changed file with 18 additions and 4 deletions.
22 changes: 18 additions & 4 deletions reasoning/n3plus1/in.n3
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,21 @@ _:i {
(~ :s (~ :s 0)) a :PeanoNumber.
:tom a (~ :good :Pilot).

# query
{ ?S ?P ?O } =^ { ?S ?P ?O }.
{ ?S graph:statement ?O } =^ { ?S graph:statement ?O }.
{ ?S => ?O } =^ { ?S => ?O }.
# queries
{
?S ?P ?O.
} =^ {
?S ?P ?O.
}.

{
?S graph:statement ?O.
} =^ {
?S graph:statement ?O.
}.

{
?S => ?O.
} =^ {
?S => ?O.
}.

0 comments on commit e7f1537

Please sign in to comment.