[pgrouting-dev] Where is the twoq repository in git?

Stephen Woodbridge woodbri at swoodbridge.com
Fri Jun 29 12:49:55 PDT 2012


Daniel, Jinfu,

Thanks. I'm not sure if this is supposed to compile yet but here is what 
I got. This might be because I have an old version of boost v1.34.1 
installed.

-Steve

woodbri at mappy:~/work/pgrouting-git/gsoc-twoq$ git clone 
git://github.com/pgRouting/pgrouting.git
Initialized empty Git repository in 
/u/work/pgrouting-git/gsoc-twoq/pgrouting/.git/
remote: Counting objects: 2014, done.
remote: Compressing objects: 100% (776/776), done.
remote: Total 2014 (delta 1251), reused 1956 (delta 1201)
Receiving objects: 100% (2014/2014), 702.75 KiB, done.
Resolving deltas: 100% (1251/1251), done.
woodbri at mappy:~/work/pgrouting-git/gsoc-twoq$ cd pgrouting/
woodbri at mappy:~/work/pgrouting-git/gsoc-twoq/pgrouting$ git checkout 
origin/gsoc-two_q
Note: moving to "origin/gsoc-two_q" which isn't a local branch
If you want to create a new branch from this checkout, you may do so
(now or later) by using -b with the checkout command again. Example:
   git checkout -b <new_branch_name>
HEAD is now at 769c967... optimized the logic of the mild_two_q algorithm
woodbri at mappy:~/work/pgrouting-git/gsoc-twoq/pgrouting$ cmake .
-- The C compiler identification is GNU
-- The CXX compiler identification is GNU
-- Check for working C compiler: /usr/bin/gcc
-- Check for working C compiler: /usr/bin/gcc -- works
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Check for working CXX compiler: /usr/bin/c++
-- Check for working CXX compiler: /usr/bin/c++ -- works
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- POSTGRESQL_EXECUTABLE is POSTGRESQL_EXECUTABLE-NOTFOUND
-- Found PostgreSQL: /usr/include/postgresql/8.3/server, /usr/lib/libpq.so
-- Boost version: 1.34.1
-- Found the following Boost libraries:
Boost headers were found here: /usr/include
Output directory for libraries is set to /usr/lib/postgresql/8.4/lib
-- Found PGROUTING_CORE core: 
/home/woodbri/work/pgrouting-git/gsoc-twoq/pgrouting/core/src
Installation directory for libraries is set to 
/usr/lib/postgresql/8.4/lib and for SQL files is set to /usr/share/pgrouting
-- Configuring done
-- Generating done
-- Build files have been written to: 
/home/woodbri/work/pgrouting-git/gsoc-twoq/pgrouting
woodbri at mappy:~/work/pgrouting-git/gsoc-twoq/pgrouting$ make
Scanning dependencies of target routing
[ 12%] Building C object core/src/CMakeFiles/routing.dir/dijkstra.o
[ 25%] Building C object core/src/CMakeFiles/routing.dir/astar.o
[ 37%] Building C object core/src/CMakeFiles/routing.dir/shooting_star.o
[ 50%] Building C object core/src/CMakeFiles/routing.dir/mild_two_q.o
[ 62%] Building CXX object core/src/CMakeFiles/routing.dir/boost_wrapper.o
In file included from /usr/include/c++/4.3/ext/hash_set:64,
                  from /usr/include/boost/graph/adjacency_list.hpp:22,
                  from 
/home/woodbri/work/pgrouting-git/gsoc-twoq/pgrouting/core/src/boost_wrapper.cpp:25:
/usr/include/c++/4.3/backward/backward_warning.h:33:2: warning: #warning 
This file includes at least one deprecated or antiquated header which 
may be removed without further notice at a future date. Please use a 
non-deprecated interface with equivalent functionality instead. For a 
listing of replacement headers and interfaces, consult the file 
backward_warning.h. To disable this warning use -Wno-deprecated.
[ 75%] Building CXX object 
core/src/CMakeFiles/routing.dir/astar_boost_wrapper.o
In file included from /usr/include/c++/4.3/ext/hash_set:64,
                  from /usr/include/boost/graph/adjacency_list.hpp:22,
                  from 
/home/woodbri/work/pgrouting-git/gsoc-twoq/pgrouting/core/src/astar_boost_wrapper.cpp:25:
/usr/include/c++/4.3/backward/backward_warning.h:33:2: warning: #warning 
This file includes at least one deprecated or antiquated header which 
may be removed without further notice at a future date. Please use a 
non-deprecated interface with equivalent functionality instead. For a 
listing of replacement headers and interfaces, consult the file 
backward_warning.h. To disable this warning use -Wno-deprecated.
[ 87%] Building CXX object 
core/src/CMakeFiles/routing.dir/shooting_star_boost_wrapper.o
In file included from /usr/include/c++/4.3/ext/hash_set:64,
                  from /usr/include/boost/graph/adjacency_list.hpp:22,
                  from 
/home/woodbri/work/pgrouting-git/gsoc-twoq/pgrouting/core/src/shooting_star_boost_wrapper.cpp:25:
/usr/include/c++/4.3/backward/backward_warning.h:33:2: warning: #warning 
This file includes at least one deprecated or antiquated header which 
may be removed without further notice at a future date. Please use a 
non-deprecated interface with equivalent functionality instead. For a 
listing of replacement headers and interfaces, consult the file 
backward_warning.h. To disable this warning use -Wno-deprecated.
[100%] Building CXX object 
core/src/CMakeFiles/routing.dir/mild_two_q_boost_wrapper.o
In file included from /usr/include/c++/4.3/ext/hash_set:64,
                  from /usr/include/boost/graph/adjacency_list.hpp:22,
                  from 
/home/woodbri/work/pgrouting-git/gsoc-twoq/pgrouting/core/src/mild_two_q_boost_wrapper.cpp:25:
/usr/include/c++/4.3/backward/backward_warning.h:33:2: warning: #warning 
This file includes at least one deprecated or antiquated header which 
may be removed without further notice at a future date. Please use a 
non-deprecated interface with equivalent functionality instead. For a 
listing of replacement headers and interfaces, consult the file 
backward_warning.h. To disable this warning use -Wno-deprecated.
In file included from 
/home/woodbri/work/pgrouting-git/gsoc-twoq/pgrouting/core/src/mild_two_q_boost_wrapper.cpp:28:
/home/woodbri/work/pgrouting-git/gsoc-twoq/pgrouting/core/src/mild_two_q_shortest_paths.hpp:26:39: 
error: boost/graph/overloading.hpp: No such file or directory
/home/woodbri/work/pgrouting-git/gsoc-twoq/pgrouting/core/src/mild_two_q_shortest_paths.hpp:28:45: 
error: boost/graph/detail/d_ary_heap.hpp: No such file or directory
/home/woodbri/work/pgrouting-git/gsoc-twoq/pgrouting/core/src/mild_two_q_shortest_paths.hpp:33:36: 
error: boost/concept/assert.hpp: No such file or directory
In file included from 
/home/woodbri/work/pgrouting-git/gsoc-twoq/pgrouting/core/src/mild_two_q_boost_wrapper.cpp:28:
/home/woodbri/work/pgrouting-git/gsoc-twoq/pgrouting/core/src/mild_two_q_shortest_paths.hpp: 
In member function âvoid boost::Mild_two_q_VisitorConcept<Visitor, 
Graph>::constraints()â:
/home/woodbri/work/pgrouting-git/gsoc-twoq/pgrouting/core/src/mild_two_q_shortest_paths.hpp:75: 
error: expected primary-expression before â)â token
/home/woodbri/work/pgrouting-git/gsoc-twoq/pgrouting/core/src/mild_two_q_shortest_paths.hpp:75: 
error: there are no arguments to âBOOST_CONCEPT_ASSERTâ that depend on a 
template parameter, so a declaration of âBOOST_CONCEPT_ASSERTâ must be 
available
/home/woodbri/work/pgrouting-git/gsoc-twoq/pgrouting/core/src/mild_two_q_shortest_paths.hpp:75: 
error: (if you use â-fpermissiveâ, G++ will accept your code, but 
allowing the use of an undeclared name is deprecated)
/home/woodbri/work/pgrouting-git/gsoc-twoq/pgrouting/core/src/mild_two_q_shortest_paths.hpp: 
In function âvoid boost::mild_two_q_shortest_paths_no_init(const Graph&, 
typename boost::graph_traits<G>::vertex_descriptor, typename 
boost::graph_traits<G>::vertex_descriptor, PredecessorMap, DistanceMap, 
WeightMap, IndexMap, Compare, Combine, DistZero, Mild_two_q_Visitor, 
ColorMap)â:
/home/woodbri/work/pgrouting-git/gsoc-twoq/pgrouting/core/src/mild_two_q_shortest_paths.hpp:306: 
error: expected primary-expression before â)â token
/home/woodbri/work/pgrouting-git/gsoc-twoq/pgrouting/core/src/mild_two_q_shortest_paths.hpp:306: 
error: there are no arguments to âBOOST_CONCEPT_ASSERTâ that depend on a 
template parameter, so a declaration of âBOOST_CONCEPT_ASSERTâ must be 
available
/home/woodbri/work/pgrouting-git/gsoc-twoq/pgrouting/core/src/mild_two_q_shortest_paths.hpp:311: 
error: expected primary-expression before â)â token
/home/woodbri/work/pgrouting-git/gsoc-twoq/pgrouting/core/src/mild_two_q_shortest_paths.hpp:311: 
error: there are no arguments to âBOOST_CONCEPT_ASSERTâ that depend on a 
template parameter, so a declaration of âBOOST_CONCEPT_ASSERTâ must be 
available
/home/woodbri/work/pgrouting-git/gsoc-twoq/pgrouting/core/src/mild_two_q_shortest_paths.hpp: 
In function âvoid boost::mild_two_q_shortest_paths(const 
VertexListGraph&, typename boost::graph_traits<G>::vertex_descriptor, 
typename boost::graph_traits<G>::vertex_descriptor, PredecessorMap, 
DistanceMap, WeightMap, IndexMap, Compare, Combine, DistInf, DistZero, 
Mild_two_q_Visitor)â:
/home/woodbri/work/pgrouting-git/gsoc-twoq/pgrouting/core/src/mild_two_q_shortest_paths.hpp:427: 
error: there are no arguments to âno_named_parametersâ that depend on a 
template parameter, so a declaration of âno_named_parametersâ must be 
available
/usr/include/boost/property_map.hpp: At global scope:
/usr/include/boost/property_map.hpp: In instantiation of 
âboost::property_traits<boost::bgl_named_params<double*, 
boost::vertex_distance_t, 
boost::bgl_named_params<boost::bundle_property_map<boost::adjacency_list<boost::listS, 
boost::vecS, boost::directedS, boost::no_property, Vertex, 
boost::no_property, boost::listS>, 
boost::detail::edge_desc_impl<boost::directed_tag, long unsigned int>, 
Vertex, double>, boost::edge_weight_t, boost::bgl_named_params<long 
unsigned int*, boost::vertex_predecessor_t, boost::no_property> > > >â:
/home/woodbri/work/pgrouting-git/gsoc-twoq/pgrouting/core/src/mild_two_q_shortest_paths.hpp:395: 
   instantiated from âvoid boost::mild_two_q_shortest_paths(const 
VertexListGraph&, typename boost::graph_traits<G>::vertex_descriptor, 
typename boost::graph_traits<G>::vertex_descriptor, PredecessorMap, 
DistanceMap, WeightMap, IndexMap, Compare, Combine, DistInf, DistZero, 
Mild_two_q_Visitor, ColorMap) [with VertexListGraph = 
boost::adjacency_list<boost::listS, boost::vecS, boost::directedS, 
boost::no_property, Vertex, boost::no_property, boost::listS>, 
Mild_two_q_Visitor = boost::mild_two_q_visitor<boost::null_visitor>, 
PredecessorMap = long unsigned int*, DistanceMap = double*, WeightMap = 
boost::bundle_property_map<boost::adjacency_list<boost::listS, 
boost::vecS, boost::directedS, boost::no_property, Vertex, 
boost::no_property, boost::listS>, 
boost::detail::edge_desc_impl<boost::directed_tag, long unsigned int>, 
Vertex, double>, IndexMap = 
boost::vec_adj_list_vertex_id_map<boost::no_property, long unsigned 
int>, Compare = std::less<double>, Combine = boost::closed_plus<double>, 
DistInf = double, DistZero = double, ColorMap = 
boost::bgl_named_params<double*, boost::vertex_distance_t, 
boost::bgl_named_params<boost::bundle_property_map<boost::adjacency_list<boost::listS, 
boost::vecS, boost::directedS, boost::no_property, Vertex, 
boost::no_property, boost::listS>, 
boost::detail::edge_desc_impl<boost::directed_tag, long unsigned int>, 
Vertex, double>, boost::edge_weight_t, boost::bgl_named_params<long 
unsigned int*, boost::vertex_predecessor_t, boost::no_property> > >]â
/home/woodbri/work/pgrouting-git/gsoc-twoq/pgrouting/core/src/mild_two_q_shortest_paths.hpp:451: 
   instantiated from âvoid boost::detail::mild_two_q_dispatch2(const 
VertexListGraph&, typename boost::graph_traits<G>::vertex_descriptor, 
typename boost::graph_traits<G>::vertex_descriptor, DistanceMap, 
WeightMap, IndexMap, const Params&) [with VertexListGraph = 
boost::adjacency_list<boost::listS, boost::vecS, boost::directedS, 
boost::no_property, Vertex, boost::no_property, boost::listS>, 
DistanceMap = double*, WeightMap = 
boost::bundle_property_map<boost::adjacency_list<boost::listS, 
boost::vecS, boost::directedS, boost::no_property, Vertex, 
boost::no_property, boost::listS>, 
boost::detail::edge_desc_impl<boost::directed_tag, long unsigned int>, 
Vertex, double>, IndexMap = 
boost::vec_adj_list_vertex_id_map<boost::no_property, long unsigned 
int>, Params = boost::bgl_named_params<double*, 
boost::vertex_distance_t, 
boost::bgl_named_params<boost::bundle_property_map<boost::adjacency_list<boost::listS, 
boost::vecS, boost::directedS, boost::no_property, Vertex, 
boost::no_property, boost::listS>, 
boost::detail::edge_desc_impl<boost::directed_tag, long unsigned int>, 
Vertex, double>, boost::edge_weight_t, boost::bgl_named_params<long 
unsigned int*, boost::vertex_predecessor_t, boost::no_property> > >]â
/home/woodbri/work/pgrouting-git/gsoc-twoq/pgrouting/core/src/mild_two_q_shortest_paths.hpp:484: 
   instantiated from âvoid boost::detail::mild_two_q_dispatch1(const 
VertexListGraph&, typename boost::graph_traits<G>::vertex_descriptor, 
typename boost::graph_traits<G>::vertex_descriptor, DistanceMap, 
WeightMap, IndexMap, const Params&) [with VertexListGraph = 
boost::adjacency_list<boost::listS, boost::vecS, boost::directedS, 
boost::no_property, Vertex, boost::no_property, boost::listS>, 
DistanceMap = double*, WeightMap = 
boost::bundle_property_map<boost::adjacency_list<boost::listS, 
boost::vecS, boost::directedS, boost::no_property, Vertex, 
boost::no_property, boost::listS>, 
boost::detail::edge_desc_impl<boost::directed_tag, long unsigned int>, 
Vertex, double>, IndexMap = 
boost::vec_adj_list_vertex_id_map<boost::no_property, long unsigned 
int>, Params = boost::bgl_named_params<double*, 
boost::vertex_distance_t, 
boost::bgl_named_params<boost::bundle_property_map<boost::adjacency_list<boost::listS, 
boost::vecS, boost::directedS, boost::no_property, Vertex, 
boost::no_property, boost::listS>, 
boost::detail::edge_desc_impl<boost::directed_tag, long unsigned int>, 
Vertex, double>, boost::edge_weight_t, boost::bgl_named_params<long 
unsigned int*, boost::vertex_predecessor_t, boost::no_property> > >]â
/home/woodbri/work/pgrouting-git/gsoc-twoq/pgrouting/core/src/mild_two_q_shortest_paths.hpp:503: 
   instantiated from âvoid boost::mild_two_q_shortest_paths(const 
VertexListGraph&, typename boost::graph_traits<G>::vertex_descriptor, 
typename boost::graph_traits<G>::vertex_descriptor, const 
boost::bgl_named_params<P, T, R>&) [with VertexListGraph = 
boost_mild_two_q(edge_t*, unsigned int, int, int, bool, bool, 
path_element_t**, int*, char**)::graph_t, Param = double*, Tag = 
boost::vertex_distance_t, Rest = 
boost::bgl_named_params<boost::bundle_property_map<boost::adjacency_list<boost::listS, 
boost::vecS, boost::directedS, boost::no_property, Vertex, 
boost::no_property, boost::listS>, 
boost::detail::edge_desc_impl<boost::directed_tag, long unsigned int>, 
Vertex, double>, boost::edge_weight_t, boost::bgl_named_params<long 
unsigned int*, boost::vertex_predecessor_t, boost::no_property> >]â
/home/woodbri/work/pgrouting-git/gsoc-twoq/pgrouting/core/src/mild_two_q_boost_wrapper.cpp:123: 
   instantiated from here
/usr/include/boost/property_map.hpp:25: error: no type named âkey_typeâ 
in âstruct boost::bgl_named_params<double*, boost::vertex_distance_t, 
boost::bgl_named_params<boost::bundle_property_map<boost::adjacency_list<boost::listS, 
boost::vecS, boost::directedS, boost::no_property, Vertex, 
boost::no_property, boost::listS>, 
boost::detail::edge_desc_impl<boost::directed_tag, long unsigned int>, 
Vertex, double>, boost::edge_weight_t, boost::bgl_named_params<long 
unsigned int*, boost::vertex_predecessor_t, boost::no_property> > >â
/usr/include/boost/property_map.hpp:27: error: no type named âreferenceâ 
in âstruct boost::bgl_named_params<double*, boost::vertex_distance_t, 
boost::bgl_named_params<boost::bundle_property_map<boost::adjacency_list<boost::listS, 
boost::vecS, boost::directedS, boost::no_property, Vertex, 
boost::no_property, boost::listS>, 
boost::detail::edge_desc_impl<boost::directed_tag, long unsigned int>, 
Vertex, double>, boost::edge_weight_t, boost::bgl_named_params<long 
unsigned int*, boost::vertex_predecessor_t, boost::no_property> > >â
/usr/include/boost/property_map.hpp:28: error: no type named âcategoryâ 
in âstruct boost::bgl_named_params<double*, boost::vertex_distance_t, 
boost::bgl_named_params<boost::bundle_property_map<boost::adjacency_list<boost::listS, 
boost::vecS, boost::directedS, boost::no_property, Vertex, 
boost::no_property, boost::listS>, 
boost::detail::edge_desc_impl<boost::directed_tag, long unsigned int>, 
Vertex, double>, boost::edge_weight_t, boost::bgl_named_params<long 
unsigned int*, boost::vertex_predecessor_t, boost::no_property> > >â
/home/woodbri/work/pgrouting-git/gsoc-twoq/pgrouting/core/src/mild_two_q_shortest_paths.hpp: 
In function âvoid boost::mild_two_q_shortest_paths(const 
VertexListGraph&, typename boost::graph_traits<G>::vertex_descriptor, 
typename boost::graph_traits<G>::vertex_descriptor, PredecessorMap, 
DistanceMap, WeightMap, IndexMap, Compare, Combine, DistInf, DistZero, 
Mild_two_q_Visitor, ColorMap) [with VertexListGraph = 
boost::adjacency_list<boost::listS, boost::vecS, boost::directedS, 
boost::no_property, Vertex, boost::no_property, boost::listS>, 
Mild_two_q_Visitor = boost::mild_two_q_visitor<boost::null_visitor>, 
PredecessorMap = long unsigned int*, DistanceMap = double*, WeightMap = 
boost::bundle_property_map<boost::adjacency_list<boost::listS, 
boost::vecS, boost::directedS, boost::no_property, Vertex, 
boost::no_property, boost::listS>, 
boost::detail::edge_desc_impl<boost::directed_tag, long unsigned int>, 
Vertex, double>, IndexMap = 
boost::vec_adj_list_vertex_id_map<boost::no_property, long unsigned 
int>, Compare = std::less<double>, Combine = boost::closed_plus<double>, 
DistInf = double, DistZero = double, ColorMap = 
boost::bgl_named_params<double*, boost::vertex_distance_t, 
boost::bgl_named_params<boost::bundle_property_map<boost::adjacency_list<boost::listS, 
boost::vecS, boost::directedS, boost::no_property, Vertex, 
boost::no_property, boost::listS>, 
boost::detail::edge_desc_impl<boost::directed_tag, long unsigned int>, 
Vertex, double>, boost::edge_weight_t, boost::bgl_named_params<long 
unsigned int*, boost::vertex_predecessor_t, boost::no_property> > >]â:
/home/woodbri/work/pgrouting-git/gsoc-twoq/pgrouting/core/src/mild_two_q_shortest_paths.hpp:451: 
   instantiated from âvoid boost::detail::mild_two_q_dispatch2(const 
VertexListGraph&, typename boost::graph_traits<G>::vertex_descriptor, 
typename boost::graph_traits<G>::vertex_descriptor, DistanceMap, 
WeightMap, IndexMap, const Params&) [with VertexListGraph = 
boost::adjacency_list<boost::listS, boost::vecS, boost::directedS, 
boost::no_property, Vertex, boost::no_property, boost::listS>, 
DistanceMap = double*, WeightMap = 
boost::bundle_property_map<boost::adjacency_list<boost::listS, 
boost::vecS, boost::directedS, boost::no_property, Vertex, 
boost::no_property, boost::listS>, 
boost::detail::edge_desc_impl<boost::directed_tag, long unsigned int>, 
Vertex, double>, IndexMap = 
boost::vec_adj_list_vertex_id_map<boost::no_property, long unsigned 
int>, Params = boost::bgl_named_params<double*, 
boost::vertex_distance_t, 
boost::bgl_named_params<boost::bundle_property_map<boost::adjacency_list<boost::listS, 
boost::vecS, boost::directedS, boost::no_property, Vertex, 
boost::no_property, boost::listS>, 
boost::detail::edge_desc_impl<boost::directed_tag, long unsigned int>, 
Vertex, double>, boost::edge_weight_t, boost::bgl_named_params<long 
unsigned int*, boost::vertex_predecessor_t, boost::no_property> > >]â
/home/woodbri/work/pgrouting-git/gsoc-twoq/pgrouting/core/src/mild_two_q_shortest_paths.hpp:484: 
   instantiated from âvoid boost::detail::mild_two_q_dispatch1(const 
VertexListGraph&, typename boost::graph_traits<G>::vertex_descriptor, 
typename boost::graph_traits<G>::vertex_descriptor, DistanceMap, 
WeightMap, IndexMap, const Params&) [with VertexListGraph = 
boost::adjacency_list<boost::listS, boost::vecS, boost::directedS, 
boost::no_property, Vertex, boost::no_property, boost::listS>, 
DistanceMap = double*, WeightMap = 
boost::bundle_property_map<boost::adjacency_list<boost::listS, 
boost::vecS, boost::directedS, boost::no_property, Vertex, 
boost::no_property, boost::listS>, 
boost::detail::edge_desc_impl<boost::directed_tag, long unsigned int>, 
Vertex, double>, IndexMap = 
boost::vec_adj_list_vertex_id_map<boost::no_property, long unsigned 
int>, Params = boost::bgl_named_params<double*, 
boost::vertex_distance_t, 
boost::bgl_named_params<boost::bundle_property_map<boost::adjacency_list<boost::listS, 
boost::vecS, boost::directedS, boost::no_property, Vertex, 
boost::no_property, boost::listS>, 
boost::detail::edge_desc_impl<boost::directed_tag, long unsigned int>, 
Vertex, double>, boost::edge_weight_t, boost::bgl_named_params<long 
unsigned int*, boost::vertex_predecessor_t, boost::no_property> > >]â
/home/woodbri/work/pgrouting-git/gsoc-twoq/pgrouting/core/src/mild_two_q_shortest_paths.hpp:503: 
   instantiated from âvoid boost::mild_two_q_shortest_paths(const 
VertexListGraph&, typename boost::graph_traits<G>::vertex_descriptor, 
typename boost::graph_traits<G>::vertex_descriptor, const 
boost::bgl_named_params<P, T, R>&) [with VertexListGraph = 
boost_mild_two_q(edge_t*, unsigned int, int, int, bool, bool, 
path_element_t**, int*, char**)::graph_t, Param = double*, Tag = 
boost::vertex_distance_t, Rest = 
boost::bgl_named_params<boost::bundle_property_map<boost::adjacency_list<boost::listS, 
boost::vecS, boost::directedS, boost::no_property, Vertex, 
boost::no_property, boost::listS>, 
boost::detail::edge_desc_impl<boost::directed_tag, long unsigned int>, 
Vertex, double>, boost::edge_weight_t, boost::bgl_named_params<long 
unsigned int*, boost::vertex_predecessor_t, boost::no_property> >]â
/home/woodbri/work/pgrouting-git/gsoc-twoq/pgrouting/core/src/mild_two_q_boost_wrapper.cpp:123: 
   instantiated from here
/home/woodbri/work/pgrouting-git/gsoc-twoq/pgrouting/core/src/mild_two_q_shortest_paths.hpp:402: 
error: no matching function for call to 
âput(boost::bgl_named_params<double*, boost::vertex_distance_t, 
boost::bgl_named_params<boost::bundle_property_map<boost::adjacency_list<boost::listS, 
boost::vecS, boost::directedS, boost::no_property, Vertex, 
boost::no_property, boost::listS>, 
boost::detail::edge_desc_impl<boost::directed_tag, long unsigned int>, 
Vertex, double>, boost::edge_weight_t, boost::bgl_named_params<long 
unsigned int*, boost::vertex_predecessor_t, boost::no_property> > >&, 
const long unsigned int&, boost::default_color_type)â
/home/woodbri/work/pgrouting-git/gsoc-twoq/pgrouting/core/src/mild_two_q_shortest_paths.hpp: 
In function âvoid boost::mild_two_q_shortest_paths_no_init(const Graph&, 
typename boost::graph_traits<G>::vertex_descriptor, typename 
boost::graph_traits<G>::vertex_descriptor, PredecessorMap, DistanceMap, 
WeightMap, IndexMap, Compare, Combine, DistZero, Mild_two_q_Visitor, 
ColorMap) [with Graph = boost::adjacency_list<boost::listS, boost::vecS, 
boost::directedS, boost::no_property, Vertex, boost::no_property, 
boost::listS>, Mild_two_q_Visitor = 
boost::mild_two_q_visitor<boost::null_visitor>, PredecessorMap = long 
unsigned int*, DistanceMap = double*, WeightMap = 
boost::bundle_property_map<boost::adjacency_list<boost::listS, 
boost::vecS, boost::directedS, boost::no_property, Vertex, 
boost::no_property, boost::listS>, 
boost::detail::edge_desc_impl<boost::directed_tag, long unsigned int>, 
Vertex, double>, IndexMap = 
boost::vec_adj_list_vertex_id_map<boost::no_property, long unsigned 
int>, Compare = std::less<double>, Combine = boost::closed_plus<double>, 
DistZero = double, ColorMap = boost::bgl_named_params<double*, 
boost::vertex_distance_t, 
boost::bgl_named_params<boost::bundle_property_map<boost::adjacency_list<boost::listS, 
boost::vecS, boost::directedS, boost::no_property, Vertex, 
boost::no_property, boost::listS>, 
boost::detail::edge_desc_impl<boost::directed_tag, long unsigned int>, 
Vertex, double>, boost::edge_weight_t, boost::bgl_named_params<long 
unsigned int*, boost::vertex_predecessor_t, boost::no_property> > >]â:
/home/woodbri/work/pgrouting-git/gsoc-twoq/pgrouting/core/src/mild_two_q_shortest_paths.hpp:406: 
   instantiated from âvoid boost::mild_two_q_shortest_paths(const 
VertexListGraph&, typename boost::graph_traits<G>::vertex_descriptor, 
typename boost::graph_traits<G>::vertex_descriptor, PredecessorMap, 
DistanceMap, WeightMap, IndexMap, Compare, Combine, DistInf, DistZero, 
Mild_two_q_Visitor, ColorMap) [with VertexListGraph = 
boost::adjacency_list<boost::listS, boost::vecS, boost::directedS, 
boost::no_property, Vertex, boost::no_property, boost::listS>, 
Mild_two_q_Visitor = boost::mild_two_q_visitor<boost::null_visitor>, 
PredecessorMap = long unsigned int*, DistanceMap = double*, WeightMap = 
boost::bundle_property_map<boost::adjacency_list<boost::listS, 
boost::vecS, boost::directedS, boost::no_property, Vertex, 
boost::no_property, boost::listS>, 
boost::detail::edge_desc_impl<boost::directed_tag, long unsigned int>, 
Vertex, double>, IndexMap = 
boost::vec_adj_list_vertex_id_map<boost::no_property, long unsigned 
int>, Compare = std::less<double>, Combine = boost::closed_plus<double>, 
DistInf = double, DistZero = double, ColorMap = 
boost::bgl_named_params<double*, boost::vertex_distance_t, 
boost::bgl_named_params<boost::bundle_property_map<boost::adjacency_list<boost::listS, 
boost::vecS, boost::directedS, boost::no_property, Vertex, 
boost::no_property, boost::listS>, 
boost::detail::edge_desc_impl<boost::directed_tag, long unsigned int>, 
Vertex, double>, boost::edge_weight_t, boost::bgl_named_params<long 
unsigned int*, boost::vertex_predecessor_t, boost::no_property> > >]â
/home/woodbri/work/pgrouting-git/gsoc-twoq/pgrouting/core/src/mild_two_q_shortest_paths.hpp:451: 
   instantiated from âvoid boost::detail::mild_two_q_dispatch2(const 
VertexListGraph&, typename boost::graph_traits<G>::vertex_descriptor, 
typename boost::graph_traits<G>::vertex_descriptor, DistanceMap, 
WeightMap, IndexMap, const Params&) [with VertexListGraph = 
boost::adjacency_list<boost::listS, boost::vecS, boost::directedS, 
boost::no_property, Vertex, boost::no_property, boost::listS>, 
DistanceMap = double*, WeightMap = 
boost::bundle_property_map<boost::adjacency_list<boost::listS, 
boost::vecS, boost::directedS, boost::no_property, Vertex, 
boost::no_property, boost::listS>, 
boost::detail::edge_desc_impl<boost::directed_tag, long unsigned int>, 
Vertex, double>, IndexMap = 
boost::vec_adj_list_vertex_id_map<boost::no_property, long unsigned 
int>, Params = boost::bgl_named_params<double*, 
boost::vertex_distance_t, 
boost::bgl_named_params<boost::bundle_property_map<boost::adjacency_list<boost::listS, 
boost::vecS, boost::directedS, boost::no_property, Vertex, 
boost::no_property, boost::listS>, 
boost::detail::edge_desc_impl<boost::directed_tag, long unsigned int>, 
Vertex, double>, boost::edge_weight_t, boost::bgl_named_params<long 
unsigned int*, boost::vertex_predecessor_t, boost::no_property> > >]â
/home/woodbri/work/pgrouting-git/gsoc-twoq/pgrouting/core/src/mild_two_q_shortest_paths.hpp:484: 
   instantiated from âvoid boost::detail::mild_two_q_dispatch1(const 
VertexListGraph&, typename boost::graph_traits<G>::vertex_descriptor, 
typename boost::graph_traits<G>::vertex_descriptor, DistanceMap, 
WeightMap, IndexMap, const Params&) [with VertexListGraph = 
boost::adjacency_list<boost::listS, boost::vecS, boost::directedS, 
boost::no_property, Vertex, boost::no_property, boost::listS>, 
DistanceMap = double*, WeightMap = 
boost::bundle_property_map<boost::adjacency_list<boost::listS, 
boost::vecS, boost::directedS, boost::no_property, Vertex, 
boost::no_property, boost::listS>, 
boost::detail::edge_desc_impl<boost::directed_tag, long unsigned int>, 
Vertex, double>, IndexMap = 
boost::vec_adj_list_vertex_id_map<boost::no_property, long unsigned 
int>, Params = boost::bgl_named_params<double*, 
boost::vertex_distance_t, 
boost::bgl_named_params<boost::bundle_property_map<boost::adjacency_list<boost::listS, 
boost::vecS, boost::directedS, boost::no_property, Vertex, 
boost::no_property, boost::listS>, 
boost::detail::edge_desc_impl<boost::directed_tag, long unsigned int>, 
Vertex, double>, boost::edge_weight_t, boost::bgl_named_params<long 
unsigned int*, boost::vertex_predecessor_t, boost::no_property> > >]â
/home/woodbri/work/pgrouting-git/gsoc-twoq/pgrouting/core/src/mild_two_q_shortest_paths.hpp:503: 
   instantiated from âvoid boost::mild_two_q_shortest_paths(const 
VertexListGraph&, typename boost::graph_traits<G>::vertex_descriptor, 
typename boost::graph_traits<G>::vertex_descriptor, const 
boost::bgl_named_params<P, T, R>&) [with VertexListGraph = 
boost_mild_two_q(edge_t*, unsigned int, int, int, bool, bool, 
path_element_t**, int*, char**)::graph_t, Param = double*, Tag = 
boost::vertex_distance_t, Rest = 
boost::bgl_named_params<boost::bundle_property_map<boost::adjacency_list<boost::listS, 
boost::vecS, boost::directedS, boost::no_property, Vertex, 
boost::no_property, boost::listS>, 
boost::detail::edge_desc_impl<boost::directed_tag, long unsigned int>, 
Vertex, double>, boost::edge_weight_t, boost::bgl_named_params<long 
unsigned int*, boost::vertex_predecessor_t, boost::no_property> >]â
/home/woodbri/work/pgrouting-git/gsoc-twoq/pgrouting/core/src/mild_two_q_boost_wrapper.cpp:123: 
   instantiated from here
/home/woodbri/work/pgrouting-git/gsoc-twoq/pgrouting/core/src/mild_two_q_shortest_paths.hpp:306: 
error: âBOOST_CONCEPT_ASSERTâ was not declared in this scope
/home/woodbri/work/pgrouting-git/gsoc-twoq/pgrouting/core/src/mild_two_q_shortest_paths.hpp:406: 
   instantiated from âvoid boost::mild_two_q_shortest_paths(const 
VertexListGraph&, typename boost::graph_traits<G>::vertex_descriptor, 
typename boost::graph_traits<G>::vertex_descriptor, PredecessorMap, 
DistanceMap, WeightMap, IndexMap, Compare, Combine, DistInf, DistZero, 
Mild_two_q_Visitor, ColorMap) [with VertexListGraph = 
boost::adjacency_list<boost::listS, boost::vecS, boost::directedS, 
boost::no_property, Vertex, boost::no_property, boost::listS>, 
Mild_two_q_Visitor = boost::mild_two_q_visitor<boost::null_visitor>, 
PredecessorMap = long unsigned int*, DistanceMap = double*, WeightMap = 
boost::bundle_property_map<boost::adjacency_list<boost::listS, 
boost::vecS, boost::directedS, boost::no_property, Vertex, 
boost::no_property, boost::listS>, 
boost::detail::edge_desc_impl<boost::directed_tag, long unsigned int>, 
Vertex, double>, IndexMap = 
boost::vec_adj_list_vertex_id_map<boost::no_property, long unsigned 
int>, Compare = std::less<double>, Combine = boost::closed_plus<double>, 
DistInf = double, DistZero = double, ColorMap = 
boost::bgl_named_params<double*, boost::vertex_distance_t, 
boost::bgl_named_params<boost::bundle_property_map<boost::adjacency_list<boost::listS, 
boost::vecS, boost::directedS, boost::no_property, Vertex, 
boost::no_property, boost::listS>, 
boost::detail::edge_desc_impl<boost::directed_tag, long unsigned int>, 
Vertex, double>, boost::edge_weight_t, boost::bgl_named_params<long 
unsigned int*, boost::vertex_predecessor_t, boost::no_property> > >]â
/home/woodbri/work/pgrouting-git/gsoc-twoq/pgrouting/core/src/mild_two_q_shortest_paths.hpp:451: 
   instantiated from âvoid boost::detail::mild_two_q_dispatch2(const 
VertexListGraph&, typename boost::graph_traits<G>::vertex_descriptor, 
typename boost::graph_traits<G>::vertex_descriptor, DistanceMap, 
WeightMap, IndexMap, const Params&) [with VertexListGraph = 
boost::adjacency_list<boost::listS, boost::vecS, boost::directedS, 
boost::no_property, Vertex, boost::no_property, boost::listS>, 
DistanceMap = double*, WeightMap = 
boost::bundle_property_map<boost::adjacency_list<boost::listS, 
boost::vecS, boost::directedS, boost::no_property, Vertex, 
boost::no_property, boost::listS>, 
boost::detail::edge_desc_impl<boost::directed_tag, long unsigned int>, 
Vertex, double>, IndexMap = 
boost::vec_adj_list_vertex_id_map<boost::no_property, long unsigned 
int>, Params = boost::bgl_named_params<double*, 
boost::vertex_distance_t, 
boost::bgl_named_params<boost::bundle_property_map<boost::adjacency_list<boost::listS, 
boost::vecS, boost::directedS, boost::no_property, Vertex, 
boost::no_property, boost::listS>, 
boost::detail::edge_desc_impl<boost::directed_tag, long unsigned int>, 
Vertex, double>, boost::edge_weight_t, boost::bgl_named_params<long 
unsigned int*, boost::vertex_predecessor_t, boost::no_property> > >]â
/home/woodbri/work/pgrouting-git/gsoc-twoq/pgrouting/core/src/mild_two_q_shortest_paths.hpp:484: 
   instantiated from âvoid boost::detail::mild_two_q_dispatch1(const 
VertexListGraph&, typename boost::graph_traits<G>::vertex_descriptor, 
typename boost::graph_traits<G>::vertex_descriptor, DistanceMap, 
WeightMap, IndexMap, const Params&) [with VertexListGraph = 
boost::adjacency_list<boost::listS, boost::vecS, boost::directedS, 
boost::no_property, Vertex, boost::no_property, boost::listS>, 
DistanceMap = double*, WeightMap = 
boost::bundle_property_map<boost::adjacency_list<boost::listS, 
boost::vecS, boost::directedS, boost::no_property, Vertex, 
boost::no_property, boost::listS>, 
boost::detail::edge_desc_impl<boost::directed_tag, long unsigned int>, 
Vertex, double>, IndexMap = 
boost::vec_adj_list_vertex_id_map<boost::no_property, long unsigned 
int>, Params = boost::bgl_named_params<double*, 
boost::vertex_distance_t, 
boost::bgl_named_params<boost::bundle_property_map<boost::adjacency_list<boost::listS, 
boost::vecS, boost::directedS, boost::no_property, Vertex, 
boost::no_property, boost::listS>, 
boost::detail::edge_desc_impl<boost::directed_tag, long unsigned int>, 
Vertex, double>, boost::edge_weight_t, boost::bgl_named_params<long 
unsigned int*, boost::vertex_predecessor_t, boost::no_property> > >]â
/home/woodbri/work/pgrouting-git/gsoc-twoq/pgrouting/core/src/mild_two_q_shortest_paths.hpp:503: 
   instantiated from âvoid boost::mild_two_q_shortest_paths(const 
VertexListGraph&, typename boost::graph_traits<G>::vertex_descriptor, 
typename boost::graph_traits<G>::vertex_descriptor, const 
boost::bgl_named_params<P, T, R>&) [with VertexListGraph = 
boost_mild_two_q(edge_t*, unsigned int, int, int, bool, bool, 
path_element_t**, int*, char**)::graph_t, Param = double*, Tag = 
boost::vertex_distance_t, Rest = 
boost::bgl_named_params<boost::bundle_property_map<boost::adjacency_list<boost::listS, 
boost::vecS, boost::directedS, boost::no_property, Vertex, 
boost::no_property, boost::listS>, 
boost::detail::edge_desc_impl<boost::directed_tag, long unsigned int>, 
Vertex, double>, boost::edge_weight_t, boost::bgl_named_params<long 
unsigned int*, boost::vertex_predecessor_t, boost::no_property> >]â
/home/woodbri/work/pgrouting-git/gsoc-twoq/pgrouting/core/src/mild_two_q_boost_wrapper.cpp:123: 
   instantiated from here
/home/woodbri/work/pgrouting-git/gsoc-twoq/pgrouting/core/src/mild_two_q_shortest_paths.hpp:324: 
error: no matching function for call to 
âput(boost::bgl_named_params<double*, boost::vertex_distance_t, 
boost::bgl_named_params<boost::bundle_property_map<boost::adjacency_list<boost::listS, 
boost::vecS, boost::directedS, boost::no_property, Vertex, 
boost::no_property, boost::listS>, 
boost::detail::edge_desc_impl<boost::directed_tag, long unsigned int>, 
Vertex, double>, boost::edge_weight_t, boost::bgl_named_params<long 
unsigned int*, boost::vertex_predecessor_t, boost::no_property> > >&, 
long unsigned int&, boost::default_color_type)â
/home/woodbri/work/pgrouting-git/gsoc-twoq/pgrouting/core/src/mild_two_q_shortest_paths.hpp:406: 
   instantiated from âvoid boost::mild_two_q_shortest_paths(const 
VertexListGraph&, typename boost::graph_traits<G>::vertex_descriptor, 
typename boost::graph_traits<G>::vertex_descriptor, PredecessorMap, 
DistanceMap, WeightMap, IndexMap, Compare, Combine, DistInf, DistZero, 
Mild_two_q_Visitor, ColorMap) [with VertexListGraph = 
boost::adjacency_list<boost::listS, boost::vecS, boost::directedS, 
boost::no_property, Vertex, boost::no_property, boost::listS>, 
Mild_two_q_Visitor = boost::mild_two_q_visitor<boost::null_visitor>, 
PredecessorMap = long unsigned int*, DistanceMap = double*, WeightMap = 
boost::bundle_property_map<boost::adjacency_list<boost::listS, 
boost::vecS, boost::directedS, boost::no_property, Vertex, 
boost::no_property, boost::listS>, 
boost::detail::edge_desc_impl<boost::directed_tag, long unsigned int>, 
Vertex, double>, IndexMap = 
boost::vec_adj_list_vertex_id_map<boost::no_property, long unsigned 
int>, Compare = std::less<double>, Combine = boost::closed_plus<double>, 
DistInf = double, DistZero = double, ColorMap = 
boost::bgl_named_params<double*, boost::vertex_distance_t, 
boost::bgl_named_params<boost::bundle_property_map<boost::adjacency_list<boost::listS, 
boost::vecS, boost::directedS, boost::no_property, Vertex, 
boost::no_property, boost::listS>, 
boost::detail::edge_desc_impl<boost::directed_tag, long unsigned int>, 
Vertex, double>, boost::edge_weight_t, boost::bgl_named_params<long 
unsigned int*, boost::vertex_predecessor_t, boost::no_property> > >]â
/home/woodbri/work/pgrouting-git/gsoc-twoq/pgrouting/core/src/mild_two_q_shortest_paths.hpp:451: 
   instantiated from âvoid boost::detail::mild_two_q_dispatch2(const 
VertexListGraph&, typename boost::graph_traits<G>::vertex_descriptor, 
typename boost::graph_traits<G>::vertex_descriptor, DistanceMap, 
WeightMap, IndexMap, const Params&) [with VertexListGraph = 
boost::adjacency_list<boost::listS, boost::vecS, boost::directedS, 
boost::no_property, Vertex, boost::no_property, boost::listS>, 
DistanceMap = double*, WeightMap = 
boost::bundle_property_map<boost::adjacency_list<boost::listS, 
boost::vecS, boost::directedS, boost::no_property, Vertex, 
boost::no_property, boost::listS>, 
boost::detail::edge_desc_impl<boost::directed_tag, long unsigned int>, 
Vertex, double>, IndexMap = 
boost::vec_adj_list_vertex_id_map<boost::no_property, long unsigned 
int>, Params = boost::bgl_named_params<double*, 
boost::vertex_distance_t, 
boost::bgl_named_params<boost::bundle_property_map<boost::adjacency_list<boost::listS, 
boost::vecS, boost::directedS, boost::no_property, Vertex, 
boost::no_property, boost::listS>, 
boost::detail::edge_desc_impl<boost::directed_tag, long unsigned int>, 
Vertex, double>, boost::edge_weight_t, boost::bgl_named_params<long 
unsigned int*, boost::vertex_predecessor_t, boost::no_property> > >]â
/home/woodbri/work/pgrouting-git/gsoc-twoq/pgrouting/core/src/mild_two_q_shortest_paths.hpp:484: 
   instantiated from âvoid boost::detail::mild_two_q_dispatch1(const 
VertexListGraph&, typename boost::graph_traits<G>::vertex_descriptor, 
typename boost::graph_traits<G>::vertex_descriptor, DistanceMap, 
WeightMap, IndexMap, const Params&) [with VertexListGraph = 
boost::adjacency_list<boost::listS, boost::vecS, boost::directedS, 
boost::no_property, Vertex, boost::no_property, boost::listS>, 
DistanceMap = double*, WeightMap = 
boost::bundle_property_map<boost::adjacency_list<boost::listS, 
boost::vecS, boost::directedS, boost::no_property, Vertex, 
boost::no_property, boost::listS>, 
boost::detail::edge_desc_impl<boost::directed_tag, long unsigned int>, 
Vertex, double>, IndexMap = 
boost::vec_adj_list_vertex_id_map<boost::no_property, long unsigned 
int>, Params = boost::bgl_named_params<double*, 
boost::vertex_distance_t, 
boost::bgl_named_params<boost::bundle_property_map<boost::adjacency_list<boost::listS, 
boost::vecS, boost::directedS, boost::no_property, Vertex, 
boost::no_property, boost::listS>, 
boost::detail::edge_desc_impl<boost::directed_tag, long unsigned int>, 
Vertex, double>, boost::edge_weight_t, boost::bgl_named_params<long 
unsigned int*, boost::vertex_predecessor_t, boost::no_property> > >]â
/home/woodbri/work/pgrouting-git/gsoc-twoq/pgrouting/core/src/mild_two_q_shortest_paths.hpp:503: 
   instantiated from âvoid boost::mild_two_q_shortest_paths(const 
VertexListGraph&, typename boost::graph_traits<G>::vertex_descriptor, 
typename boost::graph_traits<G>::vertex_descriptor, const 
boost::bgl_named_params<P, T, R>&) [with VertexListGraph = 
boost_mild_two_q(edge_t*, unsigned int, int, int, bool, bool, 
path_element_t**, int*, char**)::graph_t, Param = double*, Tag = 
boost::vertex_distance_t, Rest = 
boost::bgl_named_params<boost::bundle_property_map<boost::adjacency_list<boost::listS, 
boost::vecS, boost::directedS, boost::no_property, Vertex, 
boost::no_property, boost::listS>, 
boost::detail::edge_desc_impl<boost::directed_tag, long unsigned int>, 
Vertex, double>, boost::edge_weight_t, boost::bgl_named_params<long 
unsigned int*, boost::vertex_predecessor_t, boost::no_property> >]â
/home/woodbri/work/pgrouting-git/gsoc-twoq/pgrouting/core/src/mild_two_q_boost_wrapper.cpp:123: 
   instantiated from here
/home/woodbri/work/pgrouting-git/gsoc-twoq/pgrouting/core/src/mild_two_q_shortest_paths.hpp:327: 
error: no matching function for call to 
âget(boost::bgl_named_params<double*, boost::vertex_distance_t, 
boost::bgl_named_params<boost::bundle_property_map<boost::adjacency_list<boost::listS, 
boost::vecS, boost::directedS, boost::no_property, Vertex, 
boost::no_property, boost::listS>, 
boost::detail::edge_desc_impl<boost::directed_tag, long unsigned int>, 
Vertex, double>, boost::edge_weight_t, boost::bgl_named_params<long 
unsigned int*, boost::vertex_predecessor_t, boost::no_property> > >&, 
long unsigned int&)â
/home/woodbri/work/pgrouting-git/gsoc-twoq/pgrouting/core/src/mild_two_q_shortest_paths.hpp:406: 
   instantiated from âvoid boost::mild_two_q_shortest_paths(const 
VertexListGraph&, typename boost::graph_traits<G>::vertex_descriptor, 
typename boost::graph_traits<G>::vertex_descriptor, PredecessorMap, 
DistanceMap, WeightMap, IndexMap, Compare, Combine, DistInf, DistZero, 
Mild_two_q_Visitor, ColorMap) [with VertexListGraph = 
boost::adjacency_list<boost::listS, boost::vecS, boost::directedS, 
boost::no_property, Vertex, boost::no_property, boost::listS>, 
Mild_two_q_Visitor = boost::mild_two_q_visitor<boost::null_visitor>, 
PredecessorMap = long unsigned int*, DistanceMap = double*, WeightMap = 
boost::bundle_property_map<boost::adjacency_list<boost::listS, 
boost::vecS, boost::directedS, boost::no_property, Vertex, 
boost::no_property, boost::listS>, 
boost::detail::edge_desc_impl<boost::directed_tag, long unsigned int>, 
Vertex, double>, IndexMap = 
boost::vec_adj_list_vertex_id_map<boost::no_property, long unsigned 
int>, Compare = std::less<double>, Combine = boost::closed_plus<double>, 
DistInf = double, DistZero = double, ColorMap = 
boost::bgl_named_params<double*, boost::vertex_distance_t, 
boost::bgl_named_params<boost::bundle_property_map<boost::adjacency_list<boost::listS, 
boost::vecS, boost::directedS, boost::no_property, Vertex, 
boost::no_property, boost::listS>, 
boost::detail::edge_desc_impl<boost::directed_tag, long unsigned int>, 
Vertex, double>, boost::edge_weight_t, boost::bgl_named_params<long 
unsigned int*, boost::vertex_predecessor_t, boost::no_property> > >]â
/home/woodbri/work/pgrouting-git/gsoc-twoq/pgrouting/core/src/mild_two_q_shortest_paths.hpp:451: 
   instantiated from âvoid boost::detail::mild_two_q_dispatch2(const 
VertexListGraph&, typename boost::graph_traits<G>::vertex_descriptor, 
typename boost::graph_traits<G>::vertex_descriptor, DistanceMap, 
WeightMap, IndexMap, const Params&) [with VertexListGraph = 
boost::adjacency_list<boost::listS, boost::vecS, boost::directedS, 
boost::no_property, Vertex, boost::no_property, boost::listS>, 
DistanceMap = double*, WeightMap = 
boost::bundle_property_map<boost::adjacency_list<boost::listS, 
boost::vecS, boost::directedS, boost::no_property, Vertex, 
boost::no_property, boost::listS>, 
boost::detail::edge_desc_impl<boost::directed_tag, long unsigned int>, 
Vertex, double>, IndexMap = 
boost::vec_adj_list_vertex_id_map<boost::no_property, long unsigned 
int>, Params = boost::bgl_named_params<double*, 
boost::vertex_distance_t, 
boost::bgl_named_params<boost::bundle_property_map<boost::adjacency_list<boost::listS, 
boost::vecS, boost::directedS, boost::no_property, Vertex, 
boost::no_property, boost::listS>, 
boost::detail::edge_desc_impl<boost::directed_tag, long unsigned int>, 
Vertex, double>, boost::edge_weight_t, boost::bgl_named_params<long 
unsigned int*, boost::vertex_predecessor_t, boost::no_property> > >]â
/home/woodbri/work/pgrouting-git/gsoc-twoq/pgrouting/core/src/mild_two_q_shortest_paths.hpp:484: 
   instantiated from âvoid boost::detail::mild_two_q_dispatch1(const 
VertexListGraph&, typename boost::graph_traits<G>::vertex_descriptor, 
typename boost::graph_traits<G>::vertex_descriptor, DistanceMap, 
WeightMap, IndexMap, const Params&) [with VertexListGraph = 
boost::adjacency_list<boost::listS, boost::vecS, boost::directedS, 
boost::no_property, Vertex, boost::no_property, boost::listS>, 
DistanceMap = double*, WeightMap = 
boost::bundle_property_map<boost::adjacency_list<boost::listS, 
boost::vecS, boost::directedS, boost::no_property, Vertex, 
boost::no_property, boost::listS>, 
boost::detail::edge_desc_impl<boost::directed_tag, long unsigned int>, 
Vertex, double>, IndexMap = 
boost::vec_adj_list_vertex_id_map<boost::no_property, long unsigned 
int>, Params = boost::bgl_named_params<double*, 
boost::vertex_distance_t, 
boost::bgl_named_params<boost::bundle_property_map<boost::adjacency_list<boost::listS, 
boost::vecS, boost::directedS, boost::no_property, Vertex, 
boost::no_property, boost::listS>, 
boost::detail::edge_desc_impl<boost::directed_tag, long unsigned int>, 
Vertex, double>, boost::edge_weight_t, boost::bgl_named_params<long 
unsigned int*, boost::vertex_predecessor_t, boost::no_property> > >]â
/home/woodbri/work/pgrouting-git/gsoc-twoq/pgrouting/core/src/mild_two_q_shortest_paths.hpp:503: 
   instantiated from âvoid boost::mild_two_q_shortest_paths(const 
VertexListGraph&, typename boost::graph_traits<G>::vertex_descriptor, 
typename boost::graph_traits<G>::vertex_descriptor, const 
boost::bgl_named_params<P, T, R>&) [with VertexListGraph = 
boost_mild_two_q(edge_t*, unsigned int, int, int, bool, bool, 
path_element_t**, int*, char**)::graph_t, Param = double*, Tag = 
boost::vertex_distance_t, Rest = 
boost::bgl_named_params<boost::bundle_property_map<boost::adjacency_list<boost::listS, 
boost::vecS, boost::directedS, boost::no_property, Vertex, 
boost::no_property, boost::listS>, 
boost::detail::edge_desc_impl<boost::directed_tag, long unsigned int>, 
Vertex, double>, boost::edge_weight_t, boost::bgl_named_params<long 
unsigned int*, boost::vertex_predecessor_t, boost::no_property> >]â
/home/woodbri/work/pgrouting-git/gsoc-twoq/pgrouting/core/src/mild_two_q_boost_wrapper.cpp:123: 
   instantiated from here
/home/woodbri/work/pgrouting-git/gsoc-twoq/pgrouting/core/src/mild_two_q_shortest_paths.hpp:329: 
error: no matching function for call to 
âput(boost::bgl_named_params<double*, boost::vertex_distance_t, 
boost::bgl_named_params<boost::bundle_property_map<boost::adjacency_list<boost::listS, 
boost::vecS, boost::directedS, boost::no_property, Vertex, 
boost::no_property, boost::listS>, 
boost::detail::edge_desc_impl<boost::directed_tag, long unsigned int>, 
Vertex, double>, boost::edge_weight_t, boost::bgl_named_params<long 
unsigned int*, boost::vertex_predecessor_t, boost::no_property> > >&, 
Vertex&, boost::default_color_type)â
/home/woodbri/work/pgrouting-git/gsoc-twoq/pgrouting/core/src/mild_two_q_shortest_paths.hpp:406: 
   instantiated from âvoid boost::mild_two_q_shortest_paths(const 
VertexListGraph&, typename boost::graph_traits<G>::vertex_descriptor, 
typename boost::graph_traits<G>::vertex_descriptor, PredecessorMap, 
DistanceMap, WeightMap, IndexMap, Compare, Combine, DistInf, DistZero, 
Mild_two_q_Visitor, ColorMap) [with VertexListGraph = 
boost::adjacency_list<boost::listS, boost::vecS, boost::directedS, 
boost::no_property, Vertex, boost::no_property, boost::listS>, 
Mild_two_q_Visitor = boost::mild_two_q_visitor<boost::null_visitor>, 
PredecessorMap = long unsigned int*, DistanceMap = double*, WeightMap = 
boost::bundle_property_map<boost::adjacency_list<boost::listS, 
boost::vecS, boost::directedS, boost::no_property, Vertex, 
boost::no_property, boost::listS>, 
boost::detail::edge_desc_impl<boost::directed_tag, long unsigned int>, 
Vertex, double>, IndexMap = 
boost::vec_adj_list_vertex_id_map<boost::no_property, long unsigned 
int>, Compare = std::less<double>, Combine = boost::closed_plus<double>, 
DistInf = double, DistZero = double, ColorMap = 
boost::bgl_named_params<double*, boost::vertex_distance_t, 
boost::bgl_named_params<boost::bundle_property_map<boost::adjacency_list<boost::listS, 
boost::vecS, boost::directedS, boost::no_property, Vertex, 
boost::no_property, boost::listS>, 
boost::detail::edge_desc_impl<boost::directed_tag, long unsigned int>, 
Vertex, double>, boost::edge_weight_t, boost::bgl_named_params<long 
unsigned int*, boost::vertex_predecessor_t, boost::no_property> > >]â
/home/woodbri/work/pgrouting-git/gsoc-twoq/pgrouting/core/src/mild_two_q_shortest_paths.hpp:451: 
   instantiated from âvoid boost::detail::mild_two_q_dispatch2(const 
VertexListGraph&, typename boost::graph_traits<G>::vertex_descriptor, 
typename boost::graph_traits<G>::vertex_descriptor, DistanceMap, 
WeightMap, IndexMap, const Params&) [with VertexListGraph = 
boost::adjacency_list<boost::listS, boost::vecS, boost::directedS, 
boost::no_property, Vertex, boost::no_property, boost::listS>, 
DistanceMap = double*, WeightMap = 
boost::bundle_property_map<boost::adjacency_list<boost::listS, 
boost::vecS, boost::directedS, boost::no_property, Vertex, 
boost::no_property, boost::listS>, 
boost::detail::edge_desc_impl<boost::directed_tag, long unsigned int>, 
Vertex, double>, IndexMap = 
boost::vec_adj_list_vertex_id_map<boost::no_property, long unsigned 
int>, Params = boost::bgl_named_params<double*, 
boost::vertex_distance_t, 
boost::bgl_named_params<boost::bundle_property_map<boost::adjacency_list<boost::listS, 
boost::vecS, boost::directedS, boost::no_property, Vertex, 
boost::no_property, boost::listS>, 
boost::detail::edge_desc_impl<boost::directed_tag, long unsigned int>, 
Vertex, double>, boost::edge_weight_t, boost::bgl_named_params<long 
unsigned int*, boost::vertex_predecessor_t, boost::no_property> > >]â
/home/woodbri/work/pgrouting-git/gsoc-twoq/pgrouting/core/src/mild_two_q_shortest_paths.hpp:484: 
   instantiated from âvoid boost::detail::mild_two_q_dispatch1(const 
VertexListGraph&, typename boost::graph_traits<G>::vertex_descriptor, 
typename boost::graph_traits<G>::vertex_descriptor, DistanceMap, 
WeightMap, IndexMap, const Params&) [with VertexListGraph = 
boost::adjacency_list<boost::listS, boost::vecS, boost::directedS, 
boost::no_property, Vertex, boost::no_property, boost::listS>, 
DistanceMap = double*, WeightMap = 
boost::bundle_property_map<boost::adjacency_list<boost::listS, 
boost::vecS, boost::directedS, boost::no_property, Vertex, 
boost::no_property, boost::listS>, 
boost::detail::edge_desc_impl<boost::directed_tag, long unsigned int>, 
Vertex, double>, IndexMap = 
boost::vec_adj_list_vertex_id_map<boost::no_property, long unsigned 
int>, Params = boost::bgl_named_params<double*, 
boost::vertex_distance_t, 
boost::bgl_named_params<boost::bundle_property_map<boost::adjacency_list<boost::listS, 
boost::vecS, boost::directedS, boost::no_property, Vertex, 
boost::no_property, boost::listS>, 
boost::detail::edge_desc_impl<boost::directed_tag, long unsigned int>, 
Vertex, double>, boost::edge_weight_t, boost::bgl_named_params<long 
unsigned int*, boost::vertex_predecessor_t, boost::no_property> > >]â
/home/woodbri/work/pgrouting-git/gsoc-twoq/pgrouting/core/src/mild_two_q_shortest_paths.hpp:503: 
   instantiated from âvoid boost::mild_two_q_shortest_paths(const 
VertexListGraph&, typename boost::graph_traits<G>::vertex_descriptor, 
typename boost::graph_traits<G>::vertex_descriptor, const 
boost::bgl_named_params<P, T, R>&) [with VertexListGraph = 
boost_mild_two_q(edge_t*, unsigned int, int, int, bool, bool, 
path_element_t**, int*, char**)::graph_t, Param = double*, Tag = 
boost::vertex_distance_t, Rest = 
boost::bgl_named_params<boost::bundle_property_map<boost::adjacency_list<boost::listS, 
boost::vecS, boost::directedS, boost::no_property, Vertex, 
boost::no_property, boost::listS>, 
boost::detail::edge_desc_impl<boost::directed_tag, long unsigned int>, 
Vertex, double>, boost::edge_weight_t, boost::bgl_named_params<long 
unsigned int*, boost::vertex_predecessor_t, boost::no_property> >]â
/home/woodbri/work/pgrouting-git/gsoc-twoq/pgrouting/core/src/mild_two_q_boost_wrapper.cpp:123: 
   instantiated from here
/home/woodbri/work/pgrouting-git/gsoc-twoq/pgrouting/core/src/mild_two_q_shortest_paths.hpp:338: 
error: no matching function for call to 
âget(boost::bgl_named_params<double*, boost::vertex_distance_t, 
boost::bgl_named_params<boost::bundle_property_map<boost::adjacency_list<boost::listS, 
boost::vecS, boost::directedS, boost::no_property, Vertex, 
boost::no_property, boost::listS>, 
boost::detail::edge_desc_impl<boost::directed_tag, long unsigned int>, 
Vertex, double>, boost::edge_weight_t, boost::bgl_named_params<long 
unsigned int*, boost::vertex_predecessor_t, boost::no_property> > >&, 
Vertex&)â
/home/woodbri/work/pgrouting-git/gsoc-twoq/pgrouting/core/src/mild_two_q_shortest_paths.hpp:339: 
error: no match for âoperator==â in âc_v == 
boost::color_traits<ColorValue>::white [with ColorValue = double*]()â
/home/woodbri/work/pgrouting-git/gsoc-twoq/pgrouting/core/src/mild_two_q_shortest_paths.hpp:342: 
error: no matching function for call to 
âput(boost::bgl_named_params<double*, boost::vertex_distance_t, 
boost::bgl_named_params<boost::bundle_property_map<boost::adjacency_list<boost::listS, 
boost::vecS, boost::directedS, boost::no_property, Vertex, 
boost::no_property, boost::listS>, 
boost::detail::edge_desc_impl<boost::directed_tag, long unsigned int>, 
Vertex, double>, boost::edge_weight_t, boost::bgl_named_params<long 
unsigned int*, boost::vertex_predecessor_t, boost::no_property> > >&, 
Vertex&, boost::default_color_type)â
/home/woodbri/work/pgrouting-git/gsoc-twoq/pgrouting/core/src/mild_two_q_shortest_paths.hpp:344: 
error: no match for âoperator==â in âc_v == 
boost::color_traits<ColorValue>::black [with ColorValue = double*]()â
/home/woodbri/work/pgrouting-git/gsoc-twoq/pgrouting/core/src/mild_two_q_shortest_paths.hpp:406: 
   instantiated from âvoid boost::mild_two_q_shortest_paths(const 
VertexListGraph&, typename boost::graph_traits<G>::vertex_descriptor, 
typename boost::graph_traits<G>::vertex_descriptor, PredecessorMap, 
DistanceMap, WeightMap, IndexMap, Compare, Combine, DistInf, DistZero, 
Mild_two_q_Visitor, ColorMap) [with VertexListGraph = 
boost::adjacency_list<boost::listS, boost::vecS, boost::directedS, 
boost::no_property, Vertex, boost::no_property, boost::listS>, 
Mild_two_q_Visitor = boost::mild_two_q_visitor<boost::null_visitor>, 
PredecessorMap = long unsigned int*, DistanceMap = double*, WeightMap = 
boost::bundle_property_map<boost::adjacency_list<boost::listS, 
boost::vecS, boost::directedS, boost::no_property, Vertex, 
boost::no_property, boost::listS>, 
boost::detail::edge_desc_impl<boost::directed_tag, long unsigned int>, 
Vertex, double>, IndexMap = 
boost::vec_adj_list_vertex_id_map<boost::no_property, long unsigned 
int>, Compare = std::less<double>, Combine = boost::closed_plus<double>, 
DistInf = double, DistZero = double, ColorMap = 
boost::bgl_named_params<double*, boost::vertex_distance_t, 
boost::bgl_named_params<boost::bundle_property_map<boost::adjacency_list<boost::listS, 
boost::vecS, boost::directedS, boost::no_property, Vertex, 
boost::no_property, boost::listS>, 
boost::detail::edge_desc_impl<boost::directed_tag, long unsigned int>, 
Vertex, double>, boost::edge_weight_t, boost::bgl_named_params<long 
unsigned int*, boost::vertex_predecessor_t, boost::no_property> > >]â
/home/woodbri/work/pgrouting-git/gsoc-twoq/pgrouting/core/src/mild_two_q_shortest_paths.hpp:451: 
   instantiated from âvoid boost::detail::mild_two_q_dispatch2(const 
VertexListGraph&, typename boost::graph_traits<G>::vertex_descriptor, 
typename boost::graph_traits<G>::vertex_descriptor, DistanceMap, 
WeightMap, IndexMap, const Params&) [with VertexListGraph = 
boost::adjacency_list<boost::listS, boost::vecS, boost::directedS, 
boost::no_property, Vertex, boost::no_property, boost::listS>, 
DistanceMap = double*, WeightMap = 
boost::bundle_property_map<boost::adjacency_list<boost::listS, 
boost::vecS, boost::directedS, boost::no_property, Vertex, 
boost::no_property, boost::listS>, 
boost::detail::edge_desc_impl<boost::directed_tag, long unsigned int>, 
Vertex, double>, IndexMap = 
boost::vec_adj_list_vertex_id_map<boost::no_property, long unsigned 
int>, Params = boost::bgl_named_params<double*, 
boost::vertex_distance_t, 
boost::bgl_named_params<boost::bundle_property_map<boost::adjacency_list<boost::listS, 
boost::vecS, boost::directedS, boost::no_property, Vertex, 
boost::no_property, boost::listS>, 
boost::detail::edge_desc_impl<boost::directed_tag, long unsigned int>, 
Vertex, double>, boost::edge_weight_t, boost::bgl_named_params<long 
unsigned int*, boost::vertex_predecessor_t, boost::no_property> > >]â
/home/woodbri/work/pgrouting-git/gsoc-twoq/pgrouting/core/src/mild_two_q_shortest_paths.hpp:484: 
   instantiated from âvoid boost::detail::mild_two_q_dispatch1(const 
VertexListGraph&, typename boost::graph_traits<G>::vertex_descriptor, 
typename boost::graph_traits<G>::vertex_descriptor, DistanceMap, 
WeightMap, IndexMap, const Params&) [with VertexListGraph = 
boost::adjacency_list<boost::listS, boost::vecS, boost::directedS, 
boost::no_property, Vertex, boost::no_property, boost::listS>, 
DistanceMap = double*, WeightMap = 
boost::bundle_property_map<boost::adjacency_list<boost::listS, 
boost::vecS, boost::directedS, boost::no_property, Vertex, 
boost::no_property, boost::listS>, 
boost::detail::edge_desc_impl<boost::directed_tag, long unsigned int>, 
Vertex, double>, IndexMap = 
boost::vec_adj_list_vertex_id_map<boost::no_property, long unsigned 
int>, Params = boost::bgl_named_params<double*, 
boost::vertex_distance_t, 
boost::bgl_named_params<boost::bundle_property_map<boost::adjacency_list<boost::listS, 
boost::vecS, boost::directedS, boost::no_property, Vertex, 
boost::no_property, boost::listS>, 
boost::detail::edge_desc_impl<boost::directed_tag, long unsigned int>, 
Vertex, double>, boost::edge_weight_t, boost::bgl_named_params<long 
unsigned int*, boost::vertex_predecessor_t, boost::no_property> > >]â
/home/woodbri/work/pgrouting-git/gsoc-twoq/pgrouting/core/src/mild_two_q_shortest_paths.hpp:503: 
   instantiated from âvoid boost::mild_two_q_shortest_paths(const 
VertexListGraph&, typename boost::graph_traits<G>::vertex_descriptor, 
typename boost::graph_traits<G>::vertex_descriptor, const 
boost::bgl_named_params<P, T, R>&) [with VertexListGraph = 
boost_mild_two_q(edge_t*, unsigned int, int, int, bool, bool, 
path_element_t**, int*, char**)::graph_t, Param = double*, Tag = 
boost::vertex_distance_t, Rest = 
boost::bgl_named_params<boost::bundle_property_map<boost::adjacency_list<boost::listS, 
boost::vecS, boost::directedS, boost::no_property, Vertex, 
boost::no_property, boost::listS>, 
boost::detail::edge_desc_impl<boost::directed_tag, long unsigned int>, 
Vertex, double>, boost::edge_weight_t, boost::bgl_named_params<long 
unsigned int*, boost::vertex_predecessor_t, boost::no_property> >]â
/home/woodbri/work/pgrouting-git/gsoc-twoq/pgrouting/core/src/mild_two_q_boost_wrapper.cpp:123: 
   instantiated from here
/home/woodbri/work/pgrouting-git/gsoc-twoq/pgrouting/core/src/mild_two_q_shortest_paths.hpp:347: 
error: no matching function for call to 
âput(boost::bgl_named_params<double*, boost::vertex_distance_t, 
boost::bgl_named_params<boost::bundle_property_map<boost::adjacency_list<boost::listS, 
boost::vecS, boost::directedS, boost::no_property, Vertex, 
boost::no_property, boost::listS>, 
boost::detail::edge_desc_impl<boost::directed_tag, long unsigned int>, 
Vertex, double>, boost::edge_weight_t, boost::bgl_named_params<long 
unsigned int*, boost::vertex_predecessor_t, boost::no_property> > >&, 
Vertex&, boost::default_color_type)â
make[2]: *** 
[core/src/CMakeFiles/routing.dir/mild_two_q_boost_wrapper.o] Error 1
make[1]: *** [core/src/CMakeFiles/routing.dir/all] Error 2
make: *** [all] Error 2
woodbri at mappy:~/work/pgrouting-git/gsoc-twoq/pgrouting$


On 6/29/2012 1:58 PM, Daniel Kastl wrote:
> Hi Steve,
>
> It's a branch in the pgRouting repository:
> https://github.com/pgRouting/pgrouting/tree/gsoc-two_q
>
> Btw., the Github network graph is interesting, because you can see some
> activities of other users:
> https://github.com/pgRouting/pgrouting/network
> Didn't look at it for a while.
>
> Daniel
>
>
> On Fri, Jun 29, 2012 at 7:42 PM, Stephen Woodbridge
> <woodbri at swoodbridge.com <mailto:woodbri at swoodbridge.com>> wrote:
>
>     Hi Jinfu,
>
>     Have you created a git repository for your twoq code?
>     Where is it? git://github.com/... <http://github.com/...>..
>     I looked through your weekly reports, and emails to the list but did
>     not notice it anywhere. I probably just missed it.
>
>     I would probably be a good idea to post this link on your respective
>     project pages.
>
>     Thanks,
>       -Steve
>     ______________________________ _________________
>     pgrouting-dev mailing list
>     pgrouting-dev at lists.osgeo.org <mailto:pgrouting-dev at lists.osgeo.org>
>     http://lists.osgeo.org/ mailman/listinfo/pgrouting-dev
>     <http://lists.osgeo.org/mailman/listinfo/pgrouting-dev>
>
>
>
>
> --
> Georepublic UG & Georepublic Japan
> eMail: daniel.kastl at georepublic.de <mailto:daniel.kastl at georepublic.de>
> Web: http://georepublic.de <http://georepublic.de/>
>
>
> _______________________________________________
> pgrouting-dev mailing list
> pgrouting-dev at lists.osgeo.org
> http://lists.osgeo.org/mailman/listinfo/pgrouting-dev
>




More information about the pgrouting-dev mailing list