Salome HOME
Missing int64 porting entry
[tools/medcoupling.git] / src / INTERP_KERNEL / InterpKernelMatrixTools.hxx
index ac62752ef67a861dc44965204baad13063d0f992..beb155a6d3eb5c4ace6e2fc8573ace7245e66d44 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2007-2016  CEA/DEN, EDF R&D
+// Copyright (C) 2007-2019  CEA/DEN, EDF R&D
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Lesser General Public
 #define __INTERPKERNELMATRIXTOOLS_HXX__
 
 #include "INTERPKERNELDefines.hxx"
+#include "MCIdType.hxx"
 
 namespace INTERP_KERNEL
 {
-  void INTERPKERNEL_EXPORT matrixProduct(const double *A, int n1, int p1, const double *B, int n2, int p2, double *C);
-  void INTERPKERNEL_EXPORT inverseMatrix(const double *A, int n, double *iA);
-  void INTERPKERNEL_EXPORT daxpy(int n, double da, const double *dx, int incx, double *dy, int incy);
+  void INTERPKERNEL_EXPORT matrixProduct(const double *A, mcIdType n1, mcIdType p1, const double *B, mcIdType n2, mcIdType p2, double *C);
+  void INTERPKERNEL_EXPORT inverseMatrix(const double *A, mcIdType n, double *iA);
+  void INTERPKERNEL_EXPORT daxpy(mcIdType n, double da, const double *dx, mcIdType incx, double *dy, mcIdType incy);
 }
 
 #endif