SolPoint Type

Structure to represent solution point. Current point has form (x,y1,y2,...,yn), where n is problem's dimension

Constructors

Constructor Description

SolPoint(x, y)

Full Usage: SolPoint(x, y)

Parameters:
    x : float
    y : float

Returns: SolPoint
x : float
y : float
Returns: SolPoint

SolPoint(_x, y)

Full Usage: SolPoint(_x, y)

Parameters:
    _x : float
    y : float[]

Returns: SolPoint
_x : float
y : float[]
Returns: SolPoint

Instance members

Instance member Description

this.Y

Full Usage: this.Y

Returns: float[]

Problem's phase variable vector

Returns: float[]

this.point n

Full Usage: this.point n

Parameters:
    n : int

Returns: float * float

n is the dimension (1,2,... n)

n : int
Returns: float * float

this.x

Full Usage: this.x

Returns: float
Returns: float

Static members

Static member Description

SolPoint.toPoint n p

Full Usage: SolPoint.toPoint n p

Parameters:
Returns: float * float
n : int
p : SolPoint
Returns: float * float