AIMA.Core.Logic.Propositional.Algorithms.KnowledgeBase.tellAll C# (CSharp) Method

tellAll() public method

public tellAll ( String percepts ) : void
percepts String
return void
        public void tellAll(String[] percepts)
        {
            for (int i = 0; i < percepts.Length; i++)
            {
                tell(percepts[i]);
            }

        }