public PointF[] GetBestWeights() { BestResult.FineTune(); BestResult.RemoveUnnecessary(); BestFitness = BestResult.EXfindTourValue(WeightArray); return(BestResult.Weights); }
public double FindCurrentValue(double[,] weight_array) { clsSOMTSP cloned = this.Clone(); cloned.FineTune(); cloned.RemoveUnnecessary(); return(cloned.EXfindTourValue(weight_array)); }
internal double findTourLength() { clsSOMTSP cloned = this.Clone(); cloned.Cities = this.Cities; cloned.FineTune(); cloned.RemoveUnnecessary(); return(cloned.EXfindTourValue(cities_d)); }