AIMA.Core.Probability.Reasoning.SensorModel.SensorModel C# (CSharp) Method

SensorModel() public method

public SensorModel ( List states, List perceptions ) : System
states List
perceptions List
return System
        public SensorModel(List<String> states, List<String> perceptions)
        {
            this.states = states;
            table = new Table<String, String, Double>(states, perceptions);
        }