فهرست منبع

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