Skip to content

Commit

Permalink
fix unbalanced parentheses syntax error
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthew-Badin committed Apr 23, 2021
1 parent a5fd876 commit 091e7d5
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions SRC/claic1.f
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,8 @@ SUBROUTINE CLAIC1( JOB, J, X, SEST, W, GAMMA, SESTPR, S, C )
*
SINE = -( ALPHA / ABSEST ) / T
COSINE = -( GAMMA / ABSEST ) / ( ONE+T )
TMP = REAL( SQRT( SINE*CONJG( SINE )+COSINE*CONJG( COSINE ) ) )
TMP = REAL( SQRT( SINE * CONJG( SINE )
$ + COSINE * CONJG( COSINE ) ) )
S = SINE / TMP
C = COSINE / TMP
SESTPR = SQRT( T+ONE )*ABSEST
Expand Down Expand Up @@ -354,7 +355,8 @@ SUBROUTINE CLAIC1( JOB, J, X, SEST, W, GAMMA, SESTPR, S, C )
COSINE = -( GAMMA / ABSEST ) / ( ONE+T )
SESTPR = SQRT( ONE+T+FOUR*EPS*EPS*NORMA )*ABSEST
END IF
TMP = REAL( SQRT( SINE*CONJG( SINE )+COSINE*CONJG( COSINE ) ) )
TMP = REAL( SQRT( SINE * CONJG( SINE )
$ + COSINE * CONJG( COSINE ) ) )
S = SINE / TMP
C = COSINE / TMP
RETURN
Expand Down

0 comments on commit 091e7d5

Please sign in to comment.