AIMA.Probability.ConjunctiveProposition.holds C# (CSharp) Method

holds() public method

public holds ( Object>.Map possibleWorld ) : bool
possibleWorld Object>.Map
return bool
        public bool holds(Map<RandomVariable, Object> possibleWorld)
        {
            return left.holds(possibleWorld) && right.holds(possibleWorld);
        }