Define type conversions explicitly (Reference-LAPACK PR 703)

This commit is contained in:
Martin Kroeker
2022-11-19 15:04:30 +01:00
committed by GitHub
parent 35295912a3
commit 08bc43c73d
16 changed files with 40 additions and 34 deletions

View File

@@ -256,7 +256,7 @@
LWKOPT = 1
ELSE
CALL DSYTRF_ROOK( UPLO, N, A, LDA, IPIV, WORK, -1, INFO )
LWKOPT = WORK(1)
LWKOPT = INT( WORK( 1 ) )
END IF
WORK( 1 ) = LWKOPT
END IF