File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed
Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -391,7 +391,7 @@ SUBROUTINE handle_increasing
391391 ! ! layout INCREASING
392392 IF (layout(1 :1 ) .EQ. " I" ) THEN
393393 DO ii = 1 , nrow
394- CALL HeapSort(ans(ii, : ))
394+ CALL HeapSort(ans(ii, 1 :ncol ))
395395 END DO
396396 END IF
397397END SUBROUTINE
Original file line number Diff line number Diff line change 4242CASE (qpopt% GaussLegendre, qpopt% GaussChebyshev, &
4343 qpopt% GaussJacobi, qpopt% GaussUltraspherical)
4444 ans = 1_I4B + INT (order / 2 , kind= I4B)
45+ CASE (qpopt% GaussLegendreRadauRight, qpopt% GaussLegendreRadauLeft, &
46+ qpopt% GaussChebyshevRadauLeft, qpopt% GaussChebyshevRadauRight, &
47+ qpopt% GaussJacobiRadauLeft, qpopt% GaussJacobiRadauRight, &
48+ qpopt% GaussUltraSphericalRadauLeft, qpopt% GaussUltraSphericalRadauRight)
49+ ans = 2_I4B + INT ((order - 1 ) / 2 , kind= I4B)
4550CASE DEFAULT
4651 ans = 2_I4B + INT (order / 2 , kind= I4B)
4752END SELECT
You can’t perform that action at this time.
0 commit comments