Skip to content

Commit

Permalink
fixing comments.
Browse files Browse the repository at this point in the history
  • Loading branch information
Ichitaro Yamazaki committed Jun 12, 2017
1 parent 99acde8 commit d7e4737
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 16 deletions.
2 changes: 1 addition & 1 deletion SRC/chetrf_aa.f
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ SUBROUTINE CHETRF_AA( UPLO, N, A, LDA, IPIV, WORK, LWORK, INFO)
RETURN
END IF
*
* Adjubst block size based on the workspace size
* Adjust block size based on the workspace size
*
IF( LWORK.LT.((1+NB)*N) ) THEN
NB = ( LWORK-N ) / N
Expand Down
2 changes: 1 addition & 1 deletion SRC/csytrf_aa.f
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ SUBROUTINE CSYTRF_AA( UPLO, N, A, LDA, IPIV, WORK, LWORK, INFO)
RETURN
END IF
*
* Adjubst block size based on the workspace size
* Adjust block size based on the workspace size
*
IF( LWORK.LT.((1+NB)*N) ) THEN
NB = ( LWORK-N ) / N
Expand Down
2 changes: 1 addition & 1 deletion SRC/dsytrf_aa.f
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ SUBROUTINE DSYTRF_AA( UPLO, N, A, LDA, IPIV, WORK, LWORK, INFO)
RETURN
END IF
*
* Adjubst block size based on the workspace size
* Adjust block size based on the workspace size
*
IF( LWORK.LT.((1+NB)*N) ) THEN
NB = ( LWORK-N ) / N
Expand Down
2 changes: 1 addition & 1 deletion SRC/ssytrf_aa.f
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ SUBROUTINE SSYTRF_AA( UPLO, N, A, LDA, IPIV, WORK, LWORK, INFO)
RETURN
END IF
*
* Adjubst block size based on the workspace size
* Adjust block size based on the workspace size
*
IF( LWORK.LT.((1+NB)*N) ) THEN
NB = ( LWORK-N ) / N
Expand Down
8 changes: 2 additions & 6 deletions SRC/zhetrf_aa.f
Original file line number Diff line number Diff line change
Expand Up @@ -114,11 +114,7 @@
*> \verbatim
*> INFO is INTEGER
*> = 0: successful exit
*> < 0: if INFO = -i, the i-th argument had an illegal value
*> > 0: if INFO = i, D(i,i) is exactly zero. The factorization
*> has been completed, but the block diagonal matrix D is
*> exactly singular, and division by zero will occur if it
*> is used to solve a system of equations.
*> < 0: if INFO = -i, the i-th argument had an illegal value.
*> \endverbatim
*
* Authors:
Expand Down Expand Up @@ -218,7 +214,7 @@ SUBROUTINE ZHETRF_AA( UPLO, N, A, LDA, IPIV, WORK, LWORK, INFO)
RETURN
END IF
*
* Adjubst block size based on the workspace size
* Adjust block size based on the workspace size
*
IF( LWORK.LT.((1+NB)*N) ) THEN
NB = ( LWORK-N ) / N
Expand Down
8 changes: 2 additions & 6 deletions SRC/zsytrf_aa.f
Original file line number Diff line number Diff line change
Expand Up @@ -114,11 +114,7 @@
*> \verbatim
*> INFO is INTEGER
*> = 0: successful exit
*> < 0: if INFO = -i, the i-th argument had an illegal value
*> > 0: if INFO = i, D(i,i) is exactly zero. The factorization
*> has been completed, but the block diagonal matrix D is
*> exactly singular, and division by zero will occur if it
*> is used to solve a system of equations.
*> < 0: if INFO = -i, the i-th argument had an illegal value.
*> \endverbatim
*
* Authors:
Expand Down Expand Up @@ -217,7 +213,7 @@ SUBROUTINE ZSYTRF_AA( UPLO, N, A, LDA, IPIV, WORK, LWORK, INFO)
RETURN
END IF
*
* Adjubst block size based on the workspace size
* Adjust block size based on the workspace size
*
IF( LWORK.LT.((1+NB)*N) ) THEN
NB = ( LWORK-N ) / N
Expand Down

0 comments on commit d7e4737

Please sign in to comment.