Skip to content

Commit d6a1ded

Browse files
author
MohdFuzailHaider
committed
Moved my_script.py to scripts folder
2 parents c6885b9 + 32c4649 commit d6a1ded

File tree

2 files changed

+1
-125
lines changed

2 files changed

+1
-125
lines changed

my_script.py

-124
This file was deleted.

scripts/my_script.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ def pivot(self, row, col):
1313
# Subtract multiples of the pivot row from all other rows
1414
for i in range(self.num_rows):
1515
if i != row:
16-
self.tableau[i] -= (self.tableau[i, col] * self.tableau[row])
16+
self.tableau[i] -= self.tableau[i, col] * self.tableau[row]
1717

1818
def find_pivot_column(self):
1919
# The pivot column is the most negative value in the objective row

0 commit comments

Comments
 (0)