bellman_ford.h
Go to the documentation of this file.
1 /*
2  * This file is part of the alglib project.
3  *
4  * (c) Divyanshu Kakwani <divkakwani@gmail.com>
5  *
6  * For the full copyright and license information, please view the LICENSE file
7  * that was distributed with this source code.
8  */
9 
10 #pragma once
11 
13 
14 namespace alglib {
15 namespace graph {
16 
17 template<typename GraphType>
19 bellman_ford(const GraphType& G,
20  const typename GraphType::vertex_type source) {
21 
22 }
23 
24 
25 } // end of graph namespace
26 } // end of alglib namespace
Definition: graph_property.h:20
Definition: bimap.h:17
vertex_property< GraphType, typename GraphType::edge_type::attr_t > bellman_ford(const GraphType &G, const typename GraphType::vertex_type source)
Definition: bellman_ford.h:19