summaryrefslogtreecommitdiffstats
path: root/src/CS340.Plotter/Program.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/CS340.Plotter/Program.cs')
-rw-r--r--src/CS340.Plotter/Program.cs11
1 files changed, 5 insertions, 6 deletions
diff --git a/src/CS340.Plotter/Program.cs b/src/CS340.Plotter/Program.cs
index 497ac32..9e9a52a 100644
--- a/src/CS340.Plotter/Program.cs
+++ b/src/CS340.Plotter/Program.cs
@@ -1,5 +1,3 @@
-using Graph;
-using Graph.IO;
using System;
using System.Collections.Generic;
using System.Diagnostics;
@@ -7,11 +5,12 @@ using System.IO;
using System.Linq;
using System.Threading.Tasks;
using System.Windows.Forms;
+using Graph;
+using Graph.IO;
using TSP;
namespace Plotter
{
- using Map = Graph<Vertex<Edge<double>, double>, Edge<double>, double>;
static class Program
{
/// <summary>
@@ -31,15 +30,15 @@ namespace Plotter
{
foreach (string file in Directory.GetFiles("graphs/"))
{
- Map graph = GraphFile.Read(new FileReader(file));
+ Tour bruteForce = Solve.BruteForce(file, 0);
+ Debug.WriteLine(bruteForce);
+
// Graph mst = graph.MST(0);
// GraphFile.Print(mst, new ConsoleWriter());
// Console.WriteLine(
// graph.Vertices.Sum(vertex =>
// vertex.Edges.FirstOrDefault(edge => edge.V == vertex.Parent).Weight));
- Tour bruteForce = TSP.TSP.BruteForce(graph, 0);
- Debug.WriteLine(bruteForce);
// mst.Vertices.ForEach(vertex =>
// {
// Console.Write($"{vertex.Id}");