public SalesmanDisplay() { f = new FilereadtoPoints("TravellingSalesman.txt"); elips = new List <EllipseGeometry>(); t = new DispatcherTimer(); t.Interval = new TimeSpan(0, 0, 0, 0, 10); t.Tick += T_Tick; t.Start(); }
public SimulatedDisplay() { points = new List <EllipseGeometry>(); boundary = new List <EllipseGeometry>(); f = new FilereadtoPoints("SmallestBoundaryPolygon_Simulated.txt"); Point(); Boundarycreate(); t = new DispatcherTimer(); t.Interval = new TimeSpan(0, 0, 0, 0, 1); t.Tick += T_Tick; t.Start(); }
public Displayer() { points = new List <EllipseGeometry>(); boundary = new List <EllipseGeometry>(); f = new FilereadtoPoints("SmallestBoundaryPolygon_HillClimbingStochastic.txt"); Point(); Boundarycreate(); t = new DispatcherTimer(); t.Interval = new TimeSpan(0, 0, 0, 0, 1); t.Tick += T_Tick; t.Start(); }