Skip to content
Snippets Groups Projects

[ATR-25521] Order map by element links to make map iteration reproducible

Merged [ATR-25521] Order map by element links to make map iteration reproducible
Merged Tim Martin requested to merge tamartin/athena:navSlimIrreproducibility into 22.0
Files
5
@@ -162,7 +162,8 @@ StatusCode TrigNavSlimmingMTAlg::execute(const EventContext& ctx) const {
transientNavGraph,
fullyExploredFrom,
chainIDs,
/*enforce chainIDs on terminus node*/ true);
/*enforce chainIDs on terminus node*/ true,
ctx);
ATH_MSG_DEBUG("Collated nodes from passing paths, now have " << transientNavGraph.nodes() << " nodes with " << transientNavGraph.edges() << "edges");
@@ -184,7 +185,8 @@ StatusCode TrigNavSlimmingMTAlg::execute(const EventContext& ctx) const {
transientNavGraph,
fullyExploredFrom,
chainIDs,
/*enforce chainIDs on terminus node*/ false);
/*enforce chainIDs on terminus node*/ false,
ctx);
}
ATH_MSG_DEBUG("Collated nodes from failing paths, now have " << transientNavGraph.nodes() << " nodes with " << transientNavGraph.edges() << "edges");
}
Loading