Files
eigen/Eigen/Version

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
762 B
Plaintext
Raw Permalink Normal View History

// This file is part of Eigen, a lightweight C++ template library
// for linear algebra.
//
// This Source Code Form is subject to the terms of the Mozilla
// Public License v. 2.0. If a copy of the MPL was not distributed
// with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
2025-09-20 02:08:59 +00:00
#ifndef EIGEN_VERSION_H
#define EIGEN_VERSION_H
// The "WORLD" version will forever remain "3" for the "Eigen3" library.
#define EIGEN_WORLD_VERSION 3
// As of Eigen3 5.0.0, we have moved to Semantic Versioning (semver.org).
#define EIGEN_MAJOR_VERSION 5
#define EIGEN_MINOR_VERSION 0
2025-10-01 22:58:44 +00:00
#define EIGEN_PATCH_VERSION 1
2025-09-20 02:08:59 +00:00
#define EIGEN_PRERELEASE_VERSION "dev"
#define EIGEN_BUILD_VERSION "master"
2025-10-01 22:58:44 +00:00
#define EIGEN_VERSION_STRING "5.0.1-dev+master"
2025-09-20 02:08:59 +00:00
#endif // EIGEN_VERSION_H