LAPACK++  2022.07.00
LAPACK C++ API
lapack.hh
1 // Copyright (c) 2017-2022, University of Tennessee. All rights reserved.
2 // SPDX-License-Identifier: BSD-3-Clause
3 // This program is free software: you can redistribute it and/or modify it under
4 // the terms of the BSD 3-Clause license. See the accompanying LICENSE file.
5 
6 #ifndef LAPACK_HH
7 #define LAPACK_HH
8 
9 #include "lapack/defines.h"
10 
11 // Version is updated by make_release.py; DO NOT EDIT.
12 // Version 2022.07.00
13 #define LAPACKPP_VERSION 20220700
14 
15 namespace lapack {
16 
17 int lapackpp_version();
18 const char* lapackpp_id();
19 
20 } // namespace lapack
21 
22 #include "lapack/wrappers.hh"
23 
24 #endif // LAPACK_HH