Skip to content

Commit

Permalink
set minimax_exp.F in original state
Browse files Browse the repository at this point in the history
  • Loading branch information
Jan Wilhelm authored and pseewald committed Mar 5, 2020
1 parent 53c0abc commit 23484a8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/minimax/minimax_exp.F
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ END SUBROUTINE check_exp_minimax_range
!> elements correspond to a_i and the K+1:2k correspond to w_i.
!> \param mm_error Numerical error of minimax approximation for given k, Rc
!> \param which_coeffs Whether the coefficients returned have been generated from
!> k15, k34 (low-scaling GW) or k53 coefficients (mm_k15 or mm_k53).
!> k15 or k53 coefficients (mm_k15 or mm_k53).
! **************************************************************************************************
SUBROUTINE get_exp_minimax_coeff(k, Rc, aw, mm_error, which_coeffs)
INTEGER, INTENT(IN) :: k
Expand All @@ -140,7 +140,7 @@ SUBROUTINE get_exp_minimax_coeff(k, Rc, aw, mm_error, which_coeffs)
CALL get_minimax_coeff_k15(k, Rc, aw, mm_error)
IF (PRESENT(which_coeffs)) which_coeffs = mm_k15
ENDIF
ELSE IF (k .LE. 53) THEN
ELSEIF (k .LE. 53) THEN
CALL get_minimax_coeff_k53(k, Rc, aw, mm_error)
IF (PRESENT(which_coeffs)) which_coeffs = mm_k53
ELSE
Expand Down

0 comments on commit 23484a8

Please sign in to comment.