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