AIMA.Probability.Util.ProbabilityTable.getFor C# (CSharp) Method

getFor() public method

public getFor ( ) : Set
return Set
        public Set<RandomVariable> getFor()
        {
            RandomVariable[] arr = new RandomVariable[randomVarInfo.Keys.Count];
            randomVarInfo.Keys.CopyTo(arr, 0);
            return new Set<RandomVariable>(new List<RandomVariable>(arr));
        }