creation of DualSimplex

This commit is contained in:
Zastian Pretorius
2022-08-01 15:53:21 +01:00
parent 8847d71936
commit 782f31810c
8 changed files with 230 additions and 8 deletions

View File

@@ -286,7 +286,7 @@ class twoPhaseSimplex
return table;
}
static int findPivotCol(List<List<float>> table)
static int findPivotCol(List<List<float>> table)
{
float largest = 0;
int largestIndex = 0;
@@ -428,8 +428,5 @@ class twoPhaseSimplex
}
}
return table;
}
}