Skip to content

Commit b08a055

Browse files
committed
Fix accidental changes to comments in code.
1 parent 7cbae86 commit b08a055

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

resolve/LinSolverDirectLUSOL.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ namespace ReSolve
129129
/// @brief Number of entries in each row of U, stored in original order
130130
index_type* lenr_ = nullptr;
131131

132-
/// @brief Appears to be internal storage for LUSOL, used by the LU copyDataFrom routines
132+
/// @brief Appears to be internal storage for LUSOL, used by the LU update routines
133133
index_type* locc_ = nullptr;
134134

135135
/// @brief Points to the beginning of rows of U within a

resolve/LinSolverDirectSerialILU0.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ namespace ReSolve
166166
kL++;
167167
}
168168
}
169-
//copyDataFrom row pointers
169+
// update row pointers (offsets)
170170
L_->getRowData(ReSolve::memory::HOST)[i + 1] = L_->getRowData(ReSolve::memory::HOST)[i] + kL;
171171
U_->getRowData(ReSolve::memory::HOST)[i + 1] = U_->getRowData(ReSolve::memory::HOST)[i] + kU;
172172
}

0 commit comments

Comments
 (0)