In https://w3c-cg.github.io/n3Builtins/#scope , the scope is defined as (my emphasis):
"A scope is either a concretely stated N3 graph, or the reasoning scope, that is, the deductive closure of the whole N3 graph included in the reasoning run, with the exception of the concrete application of the rule the built-in occurs in."
Which means that the following Notation3 should not result in a :test :is false?
@prefix : <http://example.org/> .
@prefix log: <http://www.w3.org/2000/10/swap/log#> .
:a :b :c.
{
?ThisDoc log:includes { :a ?X :c. }.
}
=>
{
# All this is not in the reasoning scope of ?ThisDoc ?
:a :WRONG :c.
:foo :bar ?X.
{
:foo :bar :WRONG.
}
=>
{
:result :is false.
}.
}.
In https://w3c-cg.github.io/n3Builtins/#scope , the scope is defined as (my emphasis):
"A scope is either a concretely stated N3 graph, or the reasoning scope, that is, the deductive closure of the whole N3 graph included in the reasoning run, with the exception of the concrete application of the rule the built-in occurs in."
Which means that the following Notation3 should not result in a
:test :is false?