Class BinarySolvingStatus
Represents the status of a binary solving process. Contains information about the current state of the solver including best solutions and error metrics.
public class BinarySolvingStatus
- Inheritance
-
BinarySolvingStatus
- Inherited Members
- Extension Methods
Constructors
BinarySolvingStatus(SolvingResultStatus, int, double, double, double, double, double, double)
Initializes a new instance of the BinarySolvingStatus class.
public BinarySolvingStatus(SolvingResultStatus solvingResultStatus, int iteration, double bestX, double bestY, double minBias, double workingX, double workingY, double bias)
Parameters
solvingResultStatus
SolvingResultStatusThe current status of the solving process
iteration
intThe current iteration count
bestX
doubleThe X-coordinate of the best solution found
bestY
doubleThe Y-coordinate of the best solution found
minBias
doubleThe minimum bias (error) found
workingX
doubleThe current working X-coordinate
workingY
doubleThe current working Y-coordinate
bias
doubleThe current bias (error)
Properties
BestX
Gets or sets the X-coordinate of the best solution found.
public double BestX { get; set; }
Property Value
BestY
Gets or sets the Y-coordinate of the best solution found.
public double BestY { get; set; }
Property Value
Bias
Gets or sets the current bias (error).
public double Bias { get; set; }
Property Value
Iteration
Gets or sets the current iteration count.
public int Iteration { get; set; }
Property Value
MinBias
Gets or sets the minimum bias (error) found.
public double MinBias { get; set; }
Property Value
SolvingResultStatus
Gets or sets the current status of the solving process.
public SolvingResultStatus SolvingResultStatus { get; set; }
Property Value
WorkingX
Gets or sets the current working X-coordinate.
public double WorkingX { get; set; }
Property Value
WorkingY
Gets or sets the current working Y-coordinate.
public double WorkingY { get; set; }
Property Value
Methods
ToString()
Returns a string that represents the current object.
public override string ToString()
Returns
- string
A string that represents the current object.