タイプのブーストグラフを使用しています:
namespace boost {
struct computable_object_t
{
typedef vertex_property_tag kind;
};
}
typedef boost::property<boost::vertex_index_t, unsigned int,
boost::property<boost::computable_object_t,
plComputableObject*> > slVertexProperty;
typedef boost::property<boost::edge_weight_t, slScoreValueType> slEdgeProperty;
typedef boost::adjacency_list<boost::vecS, boost::listS, boost::bidirectionalS,
slVertexProperty, slEdgeProperty> slGraph;
次に、グラフの各エッジにスティングタイプのエッジラベルを追加する必要があります。さらに、プログラムでそれらを使用して、さまざまな種類のエッジを区別することができます。
よろしくお願いします。