Example #1
0
        public BeliefBase Clone()
        {
            BeliefBase bb = new BeliefBase();

            foreach (Literal b in this)
            {
                bb.Add(1, b.Copy());
            }
            return(bb);
        }
Example #2
0
 public IEnumeratorGetPercepts(IEnumerator <Literal> i, BeliefBase bb)
 {
     this.i  = i;
     this.bb = bb;
 }