Преглед на файлове

fix: update simplex metod in max and min

ArrayKat преди 5 месеца
родител
ревизия
cc6ef67850
променени са 1 файла, в които са добавени 2 реда и са изтрити 0 реда
  1. 2 0
      MathModelingSimulator/ViewModels/CreateSimulatorViewModel.cs

+ 2 - 0
MathModelingSimulator/ViewModels/CreateSimulatorViewModel.cs

@@ -296,6 +296,8 @@ namespace MathModelingSimulator.ViewModels
 						array[i, j] = tempList[i][j];
 					}
 				}
+				CountRows = array.GetLength(0);
+				CountColumns = array.GetLength(1);
 				return array;
 			}
 			catch