diff --git a/Mes_Wind_console/Program.cs b/Mes_Wind_console/Program.cs index 18e295a17bb07dab0f0ca6e040a099933b21e5f9..85f35dc67795acdeef4788d0d126635c32f2a595 100644 --- a/Mes_Wind_console/Program.cs +++ b/Mes_Wind_console/Program.cs @@ -16,7 +16,7 @@ namespace Mes_Wind_console { const int rowCountPrognostic = 3; const int colCountPrognostic = 3; - var prognosticMatrix = new Matrix<PrognosticCell> // TODO: Matrix Лишняя проверка Cells.Rank в RowsCount() / ColumnCount()? + var prognosticMatrix = new Matrix<PrognosticCell> { Cells = new PrognosticCell[rowCountPrognostic, colCountPrognostic], Size = new CellSize(500, 500), @@ -108,7 +108,7 @@ namespace Mes_Wind_console Console.WriteLine("disabled station identifier is {0}", station.Identifier); } - foreach (var coordinate in output.SpecificCoordinates) // TODO: Название Output.Spectific -> Specific ? + foreach (var coordinate in output.SpecificCoordinates) { Console.WriteLine("in coordinate ({0}; {1}) 35kV and less could be broken", coordinate.X, coordinate.Y); }