From 726fcfc3b13b5b3a696287f7027cd5539e902cbd Mon Sep 17 00:00:00 2001
From: Giovanni La Mura <giovanni.lamura@inaf.it>
Date: Tue, 5 Mar 2024 15:07:54 +0100
Subject: [PATCH] Use lapack_int type for matrix dimension

---
 src/libnptm/lapack_calls.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/libnptm/lapack_calls.cpp b/src/libnptm/lapack_calls.cpp
index b4cb88d7..0b43c046 100644
--- a/src/libnptm/lapack_calls.cpp
+++ b/src/libnptm/lapack_calls.cpp
@@ -17,7 +17,7 @@ void zinvert(std::complex<double> **mat, lapack_int n, int &jer) {
     }
   }
   
-  int* IPIV = new int[n]();
+  lapack_int* IPIV = new lapack_int[n]();
   
   LAPACKE_zgetrf(LAPACK_ROW_MAJOR, n, n, arr, n, IPIV);
   LAPACKE_zgetri(LAPACK_ROW_MAJOR, n, arr, n, IPIV);
-- 
GitLab