Skip to content

Commit

Permalink
Quick cleanup.
Browse files Browse the repository at this point in the history
  • Loading branch information
nrubin29 committed Oct 19, 2017
1 parent 847064a commit 9f0e176
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions matrix.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ def rref(self) -> Tuple[MatrixTyping, MatrixTyping]:
row = 0
col = 0

# TODO: Add arrange_by_leading_zeroes back and make sure it works correctly.
self._arrange_by_leading_zeroes()

while row < len(self.matrix) and col < len(self.matrix[row]):
Expand All @@ -38,7 +37,6 @@ def rref(self) -> Tuple[MatrixTyping, MatrixTyping]:
row += 1
col += 1

# TODO: This probably fucks up row and col...
if self._arrange_by_leading_zeroes():
row = 0
col = 0
Expand Down

0 comments on commit 9f0e176

Please sign in to comment.