svMultiPhysics
Loading...
Searching...
No Matches
lapack_defs.h
1// SPDX-FileCopyrightText: Copyright (c) Stanford University, The Regents of the University of California, and others.
2// SPDX-License-Identifier: BSD-3-Clause
3
4// Define prototypes for LAPACK.
5
6extern "C" {
7 extern int dgetrf_(int*, int*, double*, int*, int*, int*);
8 extern int dgetri_(int*, double*, int* nd, int*, double*, int*, int*);
9 extern int dgesv_(const int* N, const int* NRHS, double* A, const int* LDA,
10 int* IPIV, double* B, const int* LDB, int* INFO);
11};
12