- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在编写一个 C++ 模板来读取 GraphViz 格式的加权图和 GraphML .
困难在于我使用具有不同顶点/边束的不同图形类型,它们可能看起来像
struct EdgeBundle_1 {
double weight = 1.;
};
struct EdgeBundle_2 {
double weight = 2.;
int some_int;
};
using Graph_1 = typename boost::adjacency_list<boost::listS,
boost::vecS,
boost::undirectedS,
VertexBundle,
EdgeBundle_1>;
using Graph_2 = typename boost::adjacency_list<boost::listS,
boost::vecS,
boost::undirectedS,
VertexBundle,
EdgeBundle_2>;
现在我想访问任意
Graph
的边缘包,所以我必须替换
&EdgeBundle_1
在以下仅适用于
Graph_1
的代码中
template <typename Graph>
void do_sth_with_bundled_weight(Graph& g){
boost::dynamic_properties dp(boost::ignore_other_properties);
dp.property("weight", boost::get(&EdgeBundle_1::weight, g));
... // here, I read in the graph via `boost::read_graphml(if_stream, g, dp);`
}
在
this boost docs page 的最底部,除了如何访问捆绑属性的类型之外,我找不到任何其他内容。 .
最佳答案
对于 BGL,真正的问题是“如何做任何非通用的事情”:)
所以,你可以像 boost 那样做。所有算法取property-maps它抽象出图形元素及其属性之间的关系。
通常这将与特定于算法的临时属性有关,但没有什么可以阻止您在更多地方使用它。
最好的是,你已经 有属性映射,它正是可变部分:get(&EdgeBundle_1::weight, g)
, 所以只是把它作为一个参数:
template <typename Graph, typename WeightMap>
void write_graph(std::ostream& os, Graph& g, WeightMap weight_map) {
boost::dynamic_properties dp;
dp.property("weight", weight_map);
boost::write_graphml(os, g, dp);
}
template <typename Graph, typename WeightMap>
void read_graph(Graph& g, WeightMap weight_map) {
boost::dynamic_properties dp(boost::ignore_other_properties);
dp.property("weight", weight_map);
std::ifstream ifs("input.xml", std::ios::binary);
g.clear();
boost::read_graphml(ifs, g, dp);
}
您甚至可以将其设为库默认边缘权重图的默认值:
template <typename Graph> void read_graph(Graph& g) {
return read_graph(g, get(boost::edge_weight, g));
}
template <typename Graph> void write_graph(std::ostream& os, Graph& g) {
return write_graph(os, g, get(boost::edge_weight, g));
}
演示:读取和比较相等
<?xml version="1.0" encoding="UTF-8"?>
<graphml xmlns="http://graphml.graphdrawing.org/xmlns" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://graphml.graphdrawing.org/xmlns http://graphml.graphdrawing.org/xmlns/1.0/graphml.xsd">
<key id="key0" for="edge" attr.name="weight" attr.type="double" />
<graph id="G" edgedefault="undirected" parse.nodeids="free" parse.edgeids="canonical" parse.order="nodesfirst">
<node id="n0">
</node>
<node id="n1">
</node>
<node id="n2">
</node>
<node id="n3">
</node>
<node id="n4">
</node>
<node id="n5">
</node>
<node id="n6">
</node>
<node id="n7">
</node>
<node id="n8">
</node>
<node id="n9">
</node>
<edge id="e0" source="n0" target="n7">
<data key="key0">2.2</data>
</edge>
<edge id="e1" source="n7" target="n3">
<data key="key0">3.3</data>
</edge>
<edge id="e2" source="n3" target="n2">
<data key="key0">4.4</data>
</edge>
</graph>
</graphml>
#include <boost/graph/adjacency_list.hpp>
#include <boost/graph/graphml.hpp>
#include <iostream>
#include <fstream>
struct VertexBundle {};
struct EdgeBundle_1 {
double weight = 1.;
};
struct EdgeBundle_2 {
double weight = 2.;
int some_int;
};
using Graph_1 = typename boost::adjacency_list<
boost::listS, boost::vecS, boost::undirectedS, VertexBundle, EdgeBundle_1>;
using Graph_2 = typename boost::adjacency_list<
boost::listS, boost::vecS, boost::undirectedS, VertexBundle, EdgeBundle_2>;
template <typename Graph, typename WeightMap>
void write_graph(std::ostream& os, Graph& g, WeightMap weight_map) {
boost::dynamic_properties dp;
dp.property("weight", weight_map);
boost::write_graphml(os, g, dp);
}
template <typename Graph, typename WeightMap>
void read_graph(std::istream& is, Graph& g, WeightMap weight_map) {
boost::dynamic_properties dp(boost::ignore_other_properties);
dp.property("weight", weight_map);
g.clear();
boost::read_graphml(is, g, dp);
}
template <typename Graph> void read_graph(std::istream& is, Graph& g) {
return read_graph(is, g, get(boost::edge_weight, g));
}
template <typename Graph> void write_graph(std::ostream& os, Graph& g) {
return write_graph(os, g, get(boost::edge_weight, g));
}
extern std::string const demo_xml;
int main() {
Graph_1 g1;
Graph_2 g2;
auto w1 = get(&EdgeBundle_1::weight, g1);
auto w2 = get(&EdgeBundle_2::weight, g2);
auto roundtrip = [](auto g, auto w) {
{
std::istringstream is(demo_xml);
read_graph(is, g, w);
}
std::ostringstream os;
write_graph(os, g, w);
return os.str();
};
auto xml1 = roundtrip(Graph_1{}, w1);
auto xml2 = roundtrip(Graph_2{}, w2);
std::cout << "Equal:" << std::boolalpha << (xml1 == xml2) << "\n";
}
打印
Equal:true
奖金
MyLib
)中,我们创建了一个可以自定义的包装器类型:
template <typename Impl> struct Graph {
Impl& graph() { return _impl; };
Impl const& graph() const { return _impl; };
void clear() { _impl.clear(); }
private:
Impl _impl;
};
接下来,我们委托(delegate)常见的 BGL 操作:
namespace detail {
template <typename... T> static auto& fwd_impl(Graph<T...>& g) {
return g.graph();
}
template <typename... T> static auto const& fwd_impl(Graph<T...> const& g) {
return g.graph();
}
template <typename T> static decltype(auto) fwd_impl(T&& v) {
return std::forward<T>(v);
}
}
#define DELEGATE_ONE(r, _, name) \
template <typename... Args> \
static inline decltype(auto) name(Args&&... args) { \
return (boost::name)( \
detail::fwd_impl(std::forward<decltype(args)>(args))...); \
}
#define DELEGATE(...) \
BOOST_PP_SEQ_FOR_EACH(DELEGATE_ONE, _, \
BOOST_PP_VARIADIC_TO_SEQ(__VA_ARGS__))
DELEGATE(add_vertex, add_edge, vertices, edges, num_vertices, num_edges,
out_edges, out_degree, get, source, target, vertex)
#undef DELEGATE
#undef DELEGATE_ONE
是的。好多啊。基本上,如果 ADL 关联我们的命名空间,我们会委托(delegate)所有命名的自由函数,并且我们会将所有参数转发给未修改的 boost 版本
除了 对于
Graph<>
被它的
_impl
替换的包装器.
// The crux: overriding the edge_weight map to access the bundle
template <typename Impl> auto get(boost::edge_weight_t, Graph<Impl>& g) {
auto bundle_map = boost::get(boost::edge_bundle, g.graph());
auto accessor = [](auto& bundle) -> decltype(auto) {
return access_edge_weight(bundle);
};
return boost::make_transform_value_property_map(accessor, bundle_map);
}
我们使用包装器重新定义原始图:
using Graph_1 = Graph<GraphImpl_1>;
using Graph_2 = Graph<GraphImpl_2>;
性状
template <typename Impl>
struct boost::graph_traits<MyLib::Graph<Impl>> : boost::graph_traits<Impl> {};
template <typename Impl, typename Property>
struct boost::graph_property<MyLib::Graph<Impl>, Property>
: boost::graph_property<Impl, Property> {};
template <typename Impl, typename Property>
struct boost::property_map<MyLib::Graph<Impl>, Property>
: boost::property_map<Impl, Property> {};
那里。这告诉 BGL 我们的图是我们的特征/属性映射的实现类型。
edge_weight_t
map :
template <typename Impl>
struct boost::property_map<MyLib::Graph<Impl>, boost::edge_weight_t> {
using Wrapper = MyLib::Graph<Impl>;
using type = decltype(MyLib::get(boost::edge_weight, std::declval<Wrapper&>()));
using const_type = decltype(MyLib::get(boost::edge_weight, std::declval<Wrapper const&>()));
};
(为简洁起见,再次自由地使用 c++14 功能。)
int main() {
auto roundtrip = [](auto g) {
std::istringstream is(demo_xml);
read_graph(is, g);
std::ostringstream os;
write_graph(os, g);
return os.str();
};
std::cerr << "Equal:" << std::boolalpha
<< (roundtrip(MyLib::Graph_1{}) == roundtrip(MyLib::Graph_2{}))
<< "\n";
}
仍然打印
Equal:true
关于c++ - 如何一般访问 Boost Graph 捆绑属性?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66975545/
你能比较一下属性吗 我想禁用文本框“txtName”。有两种方式 使用javascript,txtName.disabled = true 使用 ASP.NET, 哪种方法更好,为什么? 最佳答案 我
Count 属性 返回一个集合或 Dictionary 对象包含的项目数。只读。 object.Count object 可以是“应用于”列表中列出的任何集合或对
CompareMode 属性 设置并返回在 Dictionary 对象中比较字符串关键字的比较模式。 object.CompareMode[ = compare] 参数
Column 属性 只读属性,返回 TextStream 文件中当前字符位置的列号。 object.Column object 通常是 TextStream 对象的名称。
AvailableSpace 属性 返回指定的驱动器或网络共享对于用户的可用空间大小。 object.AvailableSpace object 应为 Drive 
Attributes 属性 设置或返回文件或文件夹的属性。可读写或只读(与属性有关)。 object.Attributes [= newattributes] 参数 object
AtEndOfStream 属性 如果文件指针位于 TextStream 文件末,则返回 True;否则如果不为只读则返回 False。 object.A
AtEndOfLine 属性 TextStream 文件中,如果文件指针指向行末标记,就返回 True;否则如果不是只读则返回 False。 object.AtEn
RootFolder 属性 返回一个 Folder 对象,表示指定驱动器的根文件夹。只读。 object.RootFolder object 应为 Dr
Path 属性 返回指定文件、文件夹或驱动器的路径。 object.Path object 应为 File、Folder 或 Drive 对象的名称。 说明 对于驱动器,路径不包含根目录。
ParentFolder 属性 返回指定文件或文件夹的父文件夹。只读。 object.ParentFolder object 应为 File 或 Folder 对象的名称。 说明 以下代码
Name 属性 设置或返回指定的文件或文件夹的名称。可读写。 object.Name [= newname] 参数 object 必选项。应为 File 或&
Line 属性 只读属性,返回 TextStream 文件中的当前行号。 object.Line object 通常是 TextStream 对象的名称。 说明 文件刚
Key 属性 在 Dictionary 对象中设置 key。 object.Key(key) = newkey 参数 object 必选项。通常是 Dictionary 
Item 属性 设置或返回 Dictionary 对象中指定的 key 对应的 item,或返回集合中基于指定的 key 的&
IsRootFolder 属性 如果指定的文件夹是根文件夹,返回 True;否则返回 False。 object.IsRootFolder object 应为&n
IsReady 属性 如果指定的驱动器就绪,返回 True;否则返回 False。 object.IsReady object 应为 Drive&nbs
FreeSpace 属性 返回指定的驱动器或网络共享对于用户的可用空间大小。只读。 object.FreeSpace object 应为 Drive 对象的名称。
FileSystem 属性 返回指定的驱动器使用的文件系统的类型。 object.FileSystem object 应为 Drive 对象的名称。 说明 可
Files 属性 返回由指定文件夹中所有 File 对象(包括隐藏文件和系统文件)组成的 Files 集合。 object.Files object&n
我是一名优秀的程序员,十分优秀!