static void Main(string[] args) { //hashedSolutions = (Dictionary<Tuple<int, int>, Solution>)SystemLog.OpenSavedObject(); CurrentState state = new CurrentState(2, 10); Console.WriteLine("Worst case: " + (state.WorstCase().WorstCase.ToString())); for (int i = 0; i < state.GlobalDropHeights.Count(); i++) { Console.WriteLine(state.GlobalDropHeights[i].ToString()); } //hashedSolutions.SerializeAndSave(); Console.ReadLine(); }