是否可以在 Boost Graph Library 中使用标准库类型的捆绑属性,同时使用该类型的<<
流运算符重载来满足write_graphviz
?
#include <boost/graph/graphviz.hpp>
namespace boost {
namespace detail {
namespace has_left_shift_impl {
template <typename T>
inline std::ostream &operator<<(std::ostream &o, const std::array<T,2> &a) {
o << a[0] << ',' << a[1];
return o;
}
}
}
}
static_assert(boost::has_left_shift<
std::basic_ostream<char>,
std::array<double,2>
>::value,"");
int main()
{
using namespace boost;
typedef adjacency_list<vecS, vecS, directedS, no_property, std::array<double,2>> Graph;
Graph g;
add_edge(0, 1, {123,456}, g);
write_graphviz(std::cout, g, default_writer(),
make_label_writer(boost::get(edge_bundle,g)));
return 0;
}
面对 Boost 静态断言,我将代码修改为上面的代码;从这里采纳一个建议,其中<<
实现是在命名空间中定义的boost::detail::has_left_shift_impl
。唉,我现在面临另一个错误:
/usr/include/boost/lexical_cast.hpp:1624:50: error: cannot bind ‘std::basic_ostream<char>’ lvalue to ‘std::basic_ostream<char>&&’
bool const result = !(out_stream << input).fail();
有没有办法提供可供使用的<<
重载write_graphviz
?我正在使用 Ubuntu 14.10 和 GCC 4.9.1。