소스 검색

fix: update simplex metod in max and min

ArrayKat 3 달 전
부모
커밋
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