1 #ifndef __BELLMAN_H__ // -*- tab-width: 2 mode: c++ -*-
9 Bellman shortest path search.
10 The reason to use Bellman-Ford instead of PFS is to be able to find
11 the shortest path with negative weight. Negative weights is made
12 from graph normalization process.
18 void search(const DAG
&dag
,Path
&seps
);