diff --git a/Server/Server.cs b/Server/Server.cs index 7f43b9e..eb09682 100644 --- a/Server/Server.cs +++ b/Server/Server.cs @@ -77,12 +77,6 @@ public class Server $"Remaining {((DateTime.Now - start)/loaded)*(allFiles.Count-loaded)}"); } - Dictionary sortedCalcTime = results.OrderBy(result => result.Key.calcTime).ToDictionary(item => item.Key, item =>item.Value); - foreach (KeyValuePair kv in sortedCalcTime) - { - Console.WriteLine($"{kv.Key.distance:0.0} {kv.Key.weight:0.00} {kv.Key.calcTime} {kv.Value}"); - } - KeyValuePair shortest = results.MinBy(result => result.Key.distance); KeyValuePair fastest = results.MinBy(result => result.Key.weight); KeyValuePair calcTime = results.MinBy(result => result.Key.calcTime);