File indexing completed on 2025-01-18 09:12:29
0001
0002
0003
0004
0005
0006
0007
0008
0009 #include <Acts/ActsVersion.hpp>
0010
0011 #include <cstdio>
0012 #include <cstdlib>
0013
0014 #include <Eigen/Core>
0015 #include <boost/version.hpp>
0016
0017 int main(void) {
0018 printf("Using Acts version %u.%u.%u commit %s\n", Acts::VersionMajor,
0019 Acts::VersionMinor, Acts::VersionPatch, Acts::CommitHash);
0020 printf("Using Boost version %u.%u.%u\n", BOOST_VERSION / 100000,
0021 BOOST_VERSION / 100 % 1000, BOOST_VERSION % 100);
0022 printf("Using Eigen version %u.%u.%u\n", EIGEN_WORLD_VERSION,
0023 EIGEN_MAJOR_VERSION, EIGEN_MINOR_VERSION);
0024 return EXIT_SUCCESS;
0025 }