}
void Tracker::build_graph() {
- // Delete existing graph if there was one
+ // Delete the existing graph if there was one
delete[] _edge_lengths;
delete _graph;
// frame to the sink
_nb_locations * 2 +
// The edges from the source to the entrances and from the exists
- // to the sink (in every time frames but the first for the source,
- // and last for the exits)
+ // to the sink (in every time frames but the first for the
+ // entrances, and last for the exits)
(_nb_time_steps - 1) * (nb_exits + nb_entrances) +
- // The edges for the motions, between every pair of successive
- // frames
+ // The edges for the motions, between every successive frames
(_nb_time_steps - 1) * nb_motions +
// The edges inside the duplicated nodes
_nb_locations * _nb_time_steps;