Beispiel #1
0
        public override object Visit(BoundNot e)
        {
            boundNot = !boundNot;
            var r = e.B.accept(this);

            boundNot = !boundNot;
            return(r);
        }
Beispiel #2
0
 public override object Visit(BoundNot e)
 {
     return(new SparqlNot(owlNC, activeFreeVarId.get(), e.B.accept(this) as SparqlNode));
 }
Beispiel #3
0
 public object Visit(BoundNot e)
 {
     return("¬" + brack(e, e.B));
 }
Beispiel #4
0
 public object Visit(BoundNot e)
 {
     return(CreateNull());
 }