C# Class numl.Reinforcement.MDPSuccessorState

MDPSuccessorState class.
Inheritance: IMDPSuccessor
Afficher le fichier Open project: sethjuarez/numl

Méthodes publiques

Méthode Description
Equals ( object obj ) : bool

Returns True if the supplied object equals the current object.

GetHashCode ( ) : int

Returns the hash code for the current object.

MDPSuccessorState ( IAction action, double cost, IMDPState state, double reward ) : System

Initializes a new MDPSuccessorState.

Method Details

Equals() public méthode

Returns True if the supplied object equals the current object.
public Equals ( object obj ) : bool
obj object Object to test.
Résultat bool

GetHashCode() public méthode

Returns the hash code for the current object.
public GetHashCode ( ) : int
Résultat int

MDPSuccessorState() public méthode

Initializes a new MDPSuccessorState.
public MDPSuccessorState ( IAction action, double cost, IMDPState state, double reward ) : System
action IAction Action to the state.
cost double Cost of the transition state.
state IMDPState Transition state.
reward double Reward value.
Résultat System