diff options
Diffstat (limited to 'gcc/lambda-mat.c')
-rw-r--r-- | gcc/lambda-mat.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/lambda-mat.c b/gcc/lambda-mat.c index 8f4cbd0..8aa3c12 100644 --- a/gcc/lambda-mat.c +++ b/gcc/lambda-mat.c @@ -602,9 +602,9 @@ lambda_matrix_project_to_null (lambda_matrix B, int rowsize, lambda_matrix M1, M2, M3, I; int determinant; - /* compute c(I-B^T inv(B B^T) B) e sub k */ + /* Compute c(I-B^T inv(B B^T) B) e sub k. */ - /* M1 is the transpose of B */ + /* M1 is the transpose of B. */ M1 = lambda_matrix_new (colsize, colsize); lambda_matrix_transpose (B, M1, rowsize, colsize); |