Beispiel #1
0
        public override object Visit(BoundAnd e)
        {
            var nodes = (from x in e.List
                         select(x.accept(this) as SparqlNode)).ToList();

            return(new SparqlAnd(owlNC, activeFreeVarId.get(), nodes));
        }
Beispiel #2
0
 public override object Visit(BoundAnd e)
 {
     if (!boundNot)
     {
         return(string.Join(", ", from f in e.List select f.accept(this).ToString()));
     }
     else
     {
         NotInProfile();
     }
     return(base.Visit(e));
 }
Beispiel #3
0
        public object Visit(BoundAnd e)
        {
            StringBuilder sb    = new StringBuilder();
            bool          first = true;

            foreach (var B in e.List)
            {
                if (first)
                {
                    first = false;
                }
                else
                {
                    sb.Append("⊓");
                }
                sb.Append(brack(e, B));
            }
            return(sb.ToString());
        }
Beispiel #4
0
 public object Visit(BoundAnd e)
 {
     return(CreateNull());
 }