C# 클래스 Pelsser.PelsserKey

Dictionary Key for accessing PelsserCache, which is optimized to memorize integrals parameterized by two dates.
파일 보기 프로젝트 열기: fairmat/InterestRatesModels 1 사용 예제들

공개 프로퍼티들

프로퍼티 타입 설명
s double
t double

공개 메소드들

메소드 설명
Equals ( PelsserKey obj ) : bool

Checks if the provided PelsserKey object is equivalent to this object.

Equals ( object obj ) : bool

Checks if the provided object is equivalent this object.

GetHashCode ( ) : int

Gets the HashCode of this PelsserKey object.

PelsserKey ( double t, double s ) : System

Default constructor to create a new key for accessing the PelsserCache.

메소드 상세

Equals() 공개 메소드

Checks if the provided PelsserKey object is equivalent to this object.
public Equals ( PelsserKey obj ) : bool
obj PelsserKey True if the two objects are equivalent.
리턴 bool

Equals() 공개 메소드

Checks if the provided object is equivalent this object.
public Equals ( object obj ) : bool
obj object The object to check for equivalence.
리턴 bool

GetHashCode() 공개 메소드

Gets the HashCode of this PelsserKey object.
public GetHashCode ( ) : int
리턴 int

PelsserKey() 공개 메소드

Default constructor to create a new key for accessing the PelsserCache.
public PelsserKey ( double t, double s ) : System
t double The first date parameter.
s double The second date parameter.
리턴 System

프로퍼티 상세

s 공개적으로 프로퍼티

The second date parameter which will act as index together with t.
public double s
리턴 double

t 공개적으로 프로퍼티

The first date parameter which will act as index together with s.
public double t
리턴 double