Exemple #1
0
 public ParameterIdentificationRunState(ParameterIdentificationRunResult runResult, OptimizationRunResult currentResult, IReadOnlyList <float> errorHistory, IReadOnlyCollection <IdentificationParameterHistory> parametersHistory)
 {
     RunResult         = runResult;
     ErrorHistory      = errorHistory;
     ParametersHistory = parametersHistory;
     CurrentResult     = currentResult;
 }
Exemple #2
0
 public void AddResult(ParameterIdentificationRunResult runResult)
 {
     _results.Add(runResult);
     HasChanged = true;
 }