// EXAMPLE: ./mtp ./graph2.txt | dot -T pdf -o- | xpdf -
#include <iostream>
+#include <fstream>
#include <stdlib.h>
using namespace std;
//////////////////////////////////////////////////////////////////////
int main(int argc, char **argv) {
- int nb_locations = 20;
- int nb_time_steps = 50;
+ int nb_locations = 5;
+ int nb_time_steps = 20;
int motion_amplitude = 2;
Tracker *tracker = new Tracker(nb_time_steps, nb_locations);
for(int k = 0; k < nb_locations; k++) {
tracker->set_allowed_motion(l, k, abs(l - k) <= motion_amplitude);
}
+ tracker->set_as_exit(0, 1);
+ tracker->set_as_entrance(0, 1);
}
tracker->build_graph();
+ // {
+ // ofstream out("graph.dot");
+ // tracker->print_dot_graph(&out);
+ // }
for(int r = 0; r < 10; r++) {
cout << "* ROUND " << r << endl;
+
for(int t = 0; t < nb_time_steps; t++) {
for(int l = 0; l < nb_locations; l++) {
tracker->set_detection_score(t, l,
(drand48() < 0.95 ? -1.0 : 1.0) + drand48() * 0.1 - 0.05);
}
- tracker->set_detection_score(t, 0,
+ tracker->set_detection_score(t, nb_locations/2,
(drand48() < 0.95 ? 1.0 : -1.0) + drand48() * 0.1 - 0.05);
}
(*os) << " node[shape=circle];" << endl;
for(int k = 0; k < _nb_edges; k++) {
Edge *e = _edges + k;
+ // (*os) << " " << e->origin_vertex->id << " -> " << e->terminal_vertex->id
+ // << ";"
+ // << endl;
if(e->occupied) {
(*os) << " " << e->origin_vertex->id << " -> " << e->terminal_vertex->id
<< " [style=bold,color=black,label=\"" << e->length << "\"];" << endl;
void MTPGraph::update_positivized_lengths() {
for(int k = 0; k < _nb_edges; k++) {
Edge *e = _edges + k;
- e->positivized_length += e->terminal_vertex->distance_from_source - e->terminal_vertex->distance_from_source;
+ e->positivized_length +=
+ e->origin_vertex->distance_from_source - e->terminal_vertex->distance_from_source;
}
}
void MTPGraph::force_positivized_lengths() {
#ifdef VERBOSE
scalar_t residual_error = 0.0;
+ scalar_t max_error = 0.0;
#endif
for(int n = 0; n < _nb_vertices; n++) {
for(Edge *e = _vertices[n].leaving_edges; e; e = e->next_leaving_edge) {
if(e->positivized_length < 0) {
#ifdef VERBOSE
residual_error -= e->positivized_length;
+ max_error = max(max_error, fabs(e->positivized_length));
#endif
e->positivized_length = 0.0;
}
}
}
#ifdef VERBOSE
- cerr << "residual_error " << residual_error << endl;
+ cerr << "residual_error " << residual_error << " max_error " << residual_error << endl;
#endif
}
do {
_new_front_size = 0;
iteration++;
+
+ // for(int k = 0; k < _nb_edges; k++) {
+ // Edge *e = _edges + k;
+ // d = e->origin_vertex->distance_from_source + e->positivized_length;
+ // if(d < e->terminal_vertex->distance_from_source) {
+ // e->terminal_vertex->distance_from_source = d;
+ // _new_front_size++;
+ // }
+ // }
+
+ // for(int n = 0; n < _nb_vertices; n++) {
+ // v = &_vertices[n];
+ // for(e = v->leaving_edges; e; e = e->next_leaving_edge) {
+ // d = v->distance_from_source + e->positivized_length;
+ // tv = e->terminal_vertex;
+ // if(d < tv->distance_from_source) {
+ // tv->distance_from_source = d;
+ // tv->best_pred_edge_to_source = e;
+ // if(tv->iteration < iteration) {
+ // _new_front[_new_front_size++] = tv;
+ // tv->iteration = iteration;
+ // }
+ // }
+ // }
+ // }
+
for(int f = 0; f < _front_size; f++) {
v = _front[f];
for(e = v->leaving_edges; e; e = e->next_leaving_edge) {
_new_front_size = _front_size;
_front_size = tmp_front_size;
} while(_front_size > 0);
+
+#ifdef DEBUG
+ scalar_t min_delta = 0, delta;
+ for(int k = 0; k < _nb_edges; k++) {
+ Edge *e = _edges + k;
+ // d = e->origin_vertex->distance_from_source + e->positivized_length;
+ // if(d > e->terminal_vertex->distance_from_source) { abort(); }
+ delta = e->positivized_length +
+ (e->origin_vertex->distance_from_source - e->terminal_vertex->distance_from_source);
+ min_delta = min(delta, min_delta);
+ }
+ cout << "min_delta = " << delta << endl;
+#endif
}
void MTPGraph::find_best_paths(scalar_t *lengths) {
_edges[e].positivized_length = _edges[e].length;
}
+ cout << "********************************************************" << endl;
+ // print_dot(&cout);
+
// We use one iteration of find_shortest_path simply to propagate
// the distance to make all the edge lengths positive.
find_shortest_path(_front, _new_front);
}
int MTPGraph::retrieve_one_path(Edge *e, int *nodes) {
- Edge *f, *next;
+ Edge *f, *next = 0;
int l = 0;
if(nodes) { nodes[l++] = e->origin_vertex->id; }
int nb_edges =
_nb_locations * 2 +
- _nb_time_steps * (nb_exits + nb_entrances) +
+ (_nb_time_steps - 2) * (nb_exits + nb_entrances) +
(_nb_time_steps - 1) * nb_motions +
_nb_locations * _nb_time_steps;
}
}
- for(int t = 0; t < _nb_time_steps; t++) {
+ for(int t = 1; t < _nb_time_steps-1; t++) {
for(int l = 0; l < _nb_locations; l++) {
if(_entrances[l]) {
node_from[e] = source;
}
if(_exits[l]) {
node_from[e] = 1 + (2 * (t + 0) + 1) * _nb_locations + l;
- node_from[e] = sink;
+ node_to[e] = sink;
_edge_lengths[e] = 0.0;
e++;
}
_graph->find_best_paths(_edge_lengths);
_graph->retrieve_disjoint_paths();
+
+ // for(int p = 0; p < _graph->nb_paths; p++) {
+ // Path *path = _graph->paths[p];
+ // cout << "PATH " << p << " [length " << path->length << "] " << path->nodes[0];
+ // for(int n = 1; n < path->length; n++) {
+ // cout << " -> " << path->nodes[n];
+ // }
+ // cout << endl;
+ // }
}
int Tracker::nb_trajectories() {