C# Класс Pelsser.PelsserKey

Dictionary Key for accessing PelsserCache, which is optimized to memorize integrals parameterized by two dates.
Показать файл Открыть проект Примеры использования класса

Открытые свойства

Свойство Тип Описание
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