File indexing completed on 2025-10-16 08:03:57
0001
0002
0003
0004
0005
0006
0007
0008
0009 #include <Acts/ActsVersion.hpp>
0010
0011 #include <format>
0012 #include <iostream>
0013
0014 #include <Eigen/Core>
0015 #include <boost/version.hpp>
0016
0017 int main(void) {
0018 std::cout << std::format("Using Acts version {}.{}.{} commit {}\n",
0019 Acts::VersionMajor, Acts::VersionMinor,
0020 Acts::VersionPatch,
0021 Acts::CommitHash.value_or("UNKNOWN"))
0022 << std::endl;
0023 std::cout << std::format("Using Boost version {}.{}.{}\n",
0024 BOOST_VERSION / 100000, BOOST_VERSION / 100 % 1000,
0025 BOOST_VERSION % 100)
0026 << std::endl;
0027 std::cout << std::format("Using Eigen version {}.{}.{}\n",
0028 EIGEN_WORLD_VERSION, EIGEN_MAJOR_VERSION,
0029 EIGEN_MINOR_VERSION)
0030 << std::endl;
0031 return EXIT_SUCCESS;
0032 }