Skip to content

OptimizationParameter

Summary

Base type for a typed optimization parameter that carries a scalar value (used when theparameter is held fixed).

Signature

1
public abstract class OptimizationParameter<T> : OptimizationParameter

Namespace

cAlgo.API

See Also

Methods

ToString

Signature

1
public string ToString()

Return Value

string

PrintMembers

Signature

1
protected bool PrintMembers(StringBuilder builder)

Parameters

Name Type Description
builder StringBuilder

Return Value

bool

GetHashCode

Signature

1
public int GetHashCode()

Return Value

int

Equals (3)

Equals (1 of 3)

Signature

1
public bool Equals(object obj)

Parameters

Name Type Description
obj object

Return Value

bool

Equals (2 of 3)

Signature

1
public bool Equals(OptimizationParameter other)

Parameters

Name Type Description
other OptimizationParameter

Return Value

bool

Equals (3 of 3)

Signature

1
public bool Equals(OptimizationParameter<T> other)

Parameters

Name Type Description
other OptimizationParameter

Return Value

bool

$

Signature

1
public abstract OptimizationParameter<T> <Clone>$()

Return Value

OptimizationParameter

Properties

Value

Summary

Gets the scalar value used when the parameter is held fixed.

Signature

1
public T Value {get;}

Return Value

T