LAPACK++
LAPACK C++ API
lapack.hh
1 // Copyright (c) 2017-2020, 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 // Version is updated by make_release.py; DO NOT EDIT.
10 // Version 2020.10.00
11 #define LAPACKPP_VERSION 20201000
12 
13 namespace lapack {
14 
15 int lapackpp_version();
16 const char* lapackpp_id();
17 
18 } // namespace lapack
19 
20 #include "lapack/wrappers.hh"
21 
22 #endif // LAPACK_HH