Skip to content

Commit 12677c1

Browse files
committed
Bump detray version to v0.67.0
This commit bumps the detray version to v0.67.0, accounting for a small breaking change in how detray handles its random number generation.
1 parent 7cd882e commit 12677c1

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

extern/detray/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ message( STATUS "Building Detray as part of the TRACCC project" )
1818

1919
# Declare where to get Detray from.
2020
set( TRACCC_DETRAY_SOURCE
21-
"URL;https://github.com/acts-project/detray/archive/refs/tags/v0.66.1.tar.gz;URL_MD5;000a0a36f953f74466c9e889261dd166"
21+
"URL;https://github.com/acts-project/detray/archive/refs/tags/v0.67.0.tar.gz;URL_MD5;ooooooowhatwillthemd5sumbe???"
2222
CACHE STRING "Source for Detray, when built as part of this project" )
2323

2424
mark_as_advanced( TRACCC_DETRAY_SOURCE )

tests/common/tests/kalman_fitting_test.hpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,8 @@ class KalmanFittingTests
6969

7070
// Use deterministic random number generator for testing
7171
using uniform_gen_t =
72-
detray::random_numbers<scalar, std::uniform_real_distribution<scalar>>;
72+
detray::detail::random_numbers<scalar,
73+
std::uniform_real_distribution<scalar>>;
7374

7475
/// Verify that pull distribtions follow the normal distribution
7576
///

0 commit comments

Comments
 (0)