gpt4 book ai didi

c++ - 使用boost将非平行边图保存到graphml文件

转载 作者:行者123 更新时间:2023-11-30 02:59:28 31 4
gpt4 key购买 nike

以下代码将图形保存到 graphml 文件中。有用!。但是当我替换 typedef adjacency_list< vecS, vecS, directedS, 时与 typedef adjacency_list< setS, setS, directedS,这样就没有重复的顶点或边被插入到图中,它提示道。

#include <boost/graph/graphml.hpp>

using namespace std;
typedef struct {
string name;
string label;
} vertex_type_t;

int main(int,char*[])
{

using namespace boost;

typedef adjacency_list< vecS, vecS, directedS,
vertex_type_t > graph_t;

graph_t g;
graph_t::vertex_descriptor v1 = add_vertex(g);
graph_t::vertex_descriptor v2 = add_vertex(g);

dynamic_properties dp;
dp.property("name", get(&vertex_type_t::name, g));

write_graphml(std::cout, g, dp, true);

return 0;
}

我无法从错误中获益。我认为以下是主要错误。

/usr/include/boost/graph/graphml.hpp: In function ‘void boost::write_graphml(std::ostream&, const Graph&, VertexIndexMap, const boost::dynamic_properties&, bool) [with Graph = boost::adjacency_list<boost::setS, boost::setS, boost::directedS, vertex_type_t>, VertexIndexMap = boost::adj_list_vertex_property_map<boost::adjacency_list<boost::setS, boost::setS, boost::directedS, vertex_type_t>, boost::detail::error_property_not_found, const boost::detail::error_property_not_found&, boost::vertex_index_t>, std::ostream = std::basic_ostream<char>]’:
/usr/include/boost/graph/graphml.hpp:345:5: instantiated from ‘void boost::write_graphml(std::ostream&, const Graph&, const boost::dynamic_properties&, bool) [with Graph = boost::adjacency_list<boost::setS, boost::setS, boost::directedS, vertex_type_t>, std::ostream = std::basic_ostream<char>]’
write_graphviz.cpp:24:39: instantiated from here
/usr/include/boost/graph/graphml.hpp:301:9: error: no match for ‘operator<<’ in ‘std::operator<< [with _Traits = std::char_traits<char>]((* & out), ((const char*)" <node id=\"n")) << boost::get [with PropertyMap = boost::adj_list_vertex_property_map<boost::adjacency_list<boost::setS, boost::setS, boost::directedS, vertex_type_t>, boost::detail::error_property_not_found, const boost::detail::error_property_not_found&, boost::vertex_index_t>, Reference = const boost::detail::error_property_not_found&, K = void*]((*(const boost::put_get_helper<const boost::detail::error_property_not_found&, boost::adj_list_vertex_property_map<boost::adjacency_list<boost::setS, boost::setS, boost::directedS, vertex_type_t>, boost::detail::error_property_not_found, const boost::detail::error_property_not_found&, boost::vertex_index_t> >*)(& vertex_index)), (* & v.std::_Rb_tree_const_iterator<_Tp>::operator* [with _Tp = void*, std::_Rb_tree_const_iterator<_Tp>::reference = void* const&]()))’
/usr/include/boost/graph/graphml.hpp:301:9: note: candidates are:
/usr/include/c++/4.6/ostream:110:7: note: std::basic_ostream<_CharT, _Traits>::__ostream_type& std::basic_ostream<_CharT, _Traits>::operator<<(std::basic_ostream<_CharT, _Traits>::__ostream_type& (*)(std::basic_ostream<_CharT, _Traits>::__ostream_type&)) [with _CharT = char, _Traits = std::char_traits<char>, std::basic_ostream<_CharT, _Traits>::__ostream_type = std::basic_ostream<char>]
/usr/include/c++/4.6/ostream:110:7: note: no known conversion for argument 1 from ‘const boost::detail::error_property_not_found’ to ‘std::basic_ostream<char>::__ostream_type& (*)(std::basic_ostream<char>::__ostream_type&) {aka std::basic_ostream<char>& (*)(std::basic_ostream<char>&)}’
/usr/include/c++/4.6/ostream:119:7: note: std::basic_ostream<_CharT, _Traits>::__ostream_type& std::basic_ostream<_CharT, _Traits>::operator<<(std::basic_ostream<_CharT, _Traits>::__ios_type& (*)(std::basic_ostream<_CharT, _Traits>::__ios_type&)) [with _CharT = char, _Traits = std::char_traits<char>, std::basic_ostream<_CharT, _Traits>::__ostream_type = std::basic_ostream<char>, std::basic_ostream<_CharT, _Traits>::__ios_type = std::basic_ios<char>]

我真的很想使用 setS 作为边缘容器。我不确定如何修改此程序以使其开始工作,因为错误消息对我来说意义不大。

最佳答案

问题是 write_graphml在你的图表中需要一个 VertexIndexMap 并且只有 adjacency_listVertexList=vecS 默认创建一个。如果您使用 listSsetS,则必须自己创建一个。

I really want to use setS as edge containers.

如果你只需要在你的OutEdgeList中使用setS,你可以简单地使用:

typedef adjacency_list< setS, vecS, directedS, 
vertex_type_t > graph_t;

如果你必须对两者都使用 setS 那么你的程序应该是(基于 this answer ):

#include <boost/graph/graphml.hpp>
#include <boost/graph/iteration_macros.hpp>

#include <map>

using namespace std;
typedef struct
{
string name;
string label;
} vertex_type_t;

int main ( int, char*[] )
{

using namespace boost;

typedef adjacency_list < setS, vecS, directedS,
vertex_type_t > graph_t;

typedef graph_t::vertex_descriptor NodeID; //define your Vertex Index Map
typedef std::map<NodeID, size_t> IndexMap;
IndexMap mapIndex;
boost::associative_property_map<IndexMap> propmapIndex ( mapIndex );

graph_t g;
graph_t::vertex_descriptor v1 = add_vertex ( g );
graph_t::vertex_descriptor v2 = add_vertex ( g );

int i = 0; //fill your Vertex Index Map
BGL_FORALL_VERTICES ( v, g, graph_t )
{
put ( propmapIndex, v, i++ );
}

g[v1].name="FirstVertex";
g[v2].name="SecondVertex";

dynamic_properties dp;
dp.property ( "name", get ( &vertex_type_t::name, g ) );

write_graphml ( std::cout, g, propmapIndex, dp, true );

return 0;
}

关于c++ - 使用boost将非平行边图保存到graphml文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12887008/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com