Uses of Interface
ui.StudentStateInterface

Uses of StudentStateInterface in ui
 

Methods in ui that return types with arguments of type StudentStateInterface
 java.util.List<StudentStateInterface> MDPModel.getAllStates()
           
 java.util.List<StudentStateInterface> Environment.getAllStates()
           
 

Methods in ui with parameters of type StudentStateInterface
 Action SolutionInterface.getActionForState(StudentStateInterface state)
          This method is called by the system and provides environment to students.
 double MDPModel.getReward(StudentStateInterface state)
           
 double Environment.getReward(StudentStateInterface state)
           
 double MDPModel.getTransitionProbability(StudentStateInterface currentState, Action action, StudentStateInterface futureState)
           
 double Environment.getTransitionProbability(StudentStateInterface fromState, Action action, StudentStateInterface toState)
           
 double SolutionInterface.getValueForState(StudentStateInterface state)