AIMA.Core.Probability.Reasoning.TransitionModel.get C# (CSharp) Method

get() public method

public get ( String old_state_action, String newState ) : double
old_state_action String
newState String
return double
        public double get(String old_state_action, String newState)
        {
            return table.get(old_state_action, newState);
        }