C# Class SharpNeat.Core.AuxFitnessInfo

Auxiliary fitness info, i.e. for evaluation metrics other than the primary fitness metric but that nonetheless we are interested in observing.
ファイルを表示 Open project: colgreen/sharpneat

Public Properties

Property Type Description
_name string
_value double

Public Methods

Method Description
AuxFitnessInfo ( string name, double value )

Construct with the provided name-value pair.

Method Details

AuxFitnessInfo() public method

Construct with the provided name-value pair.
public AuxFitnessInfo ( string name, double value )
name string
value double

Property Details

_name public_oe property

Auxiliary metric name.
public string _name
return string

_value public_oe property

Auxiliary metric value.
public double _value
return double