C# Class SharpNeat.Domains.FunctionRegression.ParameterSamplingInfo

Parameter sampling info. Describes the value range to sample, the number of samples within that range and the increment between samples.
Mostra file Open project: colgreen/sharpneat Class Usage Examples

Public Properties

Property Type Description
_incr double
_max double
_min double
_sampleCount int

Public Methods

Method Description
ParameterSamplingInfo ( double min, double max, int sampleCount ) : System.Diagnostics

Construct with the provided parameter info.

Method Details

ParameterSamplingInfo() public method

Construct with the provided parameter info.
public ParameterSamplingInfo ( double min, double max, int sampleCount ) : System.Diagnostics
min double
max double
sampleCount int
return System.Diagnostics

Property Details

_incr public_oe property

Intra sample increment.
public double _incr
return double

_max public_oe property

Sample range maximum.
public double _max
return double

_min public_oe property

Sample range minimum.
public double _min
return double

_sampleCount public_oe property

Sample count.
public int _sampleCount
return int