Added a shift to colswap in _perform_row_operations #3
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
When performing operations on the bimatrices of Code objects for finding the standard form one needed to take into account the shift given by start_row. This comes from the fact that first, one finds the rref of the left sub matrix A and then the rref of the right sub sub matrix E. After finding A, one needs to shift the row operations we are performing a number of start_row=self.rankx elements to the right so one does not mess with the identity that is on the left already and this was implemented in the code as it should. However, one should also shift the column operations in order to avoid messing with the aforementioned identity and this was not considered in the code.
I don't believe though that this sole change will fix #2 .