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