Browse Source

set edge color default to zero

tempestpy_adaptions
Sebastian Junges 6 years ago
parent
commit
f601405d55
  1. 2
      src/storm/storage/jani/Edge.h

2
src/storm/storage/jani/Edge.h

@ -163,7 +163,7 @@ namespace storm {
std::vector<EdgeDestination> destinations;
/// The color of the edge, used to persistently mark and identify specific edges (by the user)
uint64_t color;
uint64_t color = 0;
};
std::ostream& operator<<(std::ostream& stream, Edge const& edge);

Loading…
Cancel
Save