C# 클래스 numl.Reinforcement.MDPSuccessorState

MDPSuccessorState class.
상속: IMDPSuccessor
파일 보기 프로젝트 열기: sethjuarez/numl

공개 메소드들

메소드 설명
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.

메소드 상세

Equals() 공개 메소드

Returns True if the supplied object equals the current object.
public Equals ( object obj ) : bool
obj object Object to test.
리턴 bool

GetHashCode() 공개 메소드

Returns the hash code for the current object.
public GetHashCode ( ) : int
리턴 int

MDPSuccessorState() 공개 메소드

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.
리턴 System