Skip to content

Commit

Permalink
Just keep documenting
Browse files Browse the repository at this point in the history
  • Loading branch information
WrathfulSpatula committed Jan 31, 2025
1 parent 5ec8c30 commit 32dd3d3
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions FindAFactor/_find_a_factor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -949,10 +949,14 @@ struct Factorizer {
// Find dependent rows from the original matrix
for (size_t c = 0U; c < smoothPrimes.size(); ++c) {
if (!ger.marks[c]) {
// This is not a pivot row.
continue;
}
// This is a pivot row.
for (const size_t& i : indices) {
if (smoothNumberValues[i][c]) {
// Grab the first row index and break.
// TODO: (So this needs to be sorted in a specific row order, doesn't it?)
solutionVec.push_back(c);
break;
}
Expand Down

0 comments on commit 32dd3d3

Please sign in to comment.