Spectra 1.1.0
Header-only C++ Library for Large Scale Eigenvalue Problems
Loading...
Searching...
No Matches
Version.h
1// Copyright (C) 2020-2025 Yixuan Qiu <yixuan.qiu@cos.name>
2//
3// This Source Code Form is subject to the terms of the Mozilla
4// Public License v. 2.0. If a copy of the MPL was not distributed
5// with this file, You can obtain one at https://mozilla.org/MPL/2.0/.
6
7#ifndef SPECTRA_VERSION_H
8#define SPECTRA_VERSION_H
9
10#define SPECTRA_MAJOR_VERSION 1
11#define SPECTRA_MINOR_VERSION 1
12#define SPECTRA_PATCH_VERSION 0
13
14#define SPECTRA_VERSION (SPECTRA_MAJOR_VERSION * 10000 + SPECTRA_MINOR_VERSION * 100 + SPECTRA_PATCH_VERSION)
15
16#endif // SPECTRA_VERSION_H