- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我正在使用以下代码获取 Kamada-Kawai 布局:
template <class PointMap>
PointMap layout() const {
PointMap res;
boost::associative_property_map<PointMap> temp(res);
minstd_rand gen;
rectangle_topology<> rect_top(gen, 0, 0, 50, 50);
random_graph_layout(g_, temp, rect_top); // random layout to show that
// Kamada-Kawai isn't doing the job
// circle_graph_layout(g_, temp, 10.0);
// http://stackoverflow.com/q/33903879/2725810
// http://stackoverflow.com/a/8555715/2725810
typedef std::map<VertexDescriptor, std::size_t> IndexMap;
IndexMap mapIndex;
associative_property_map<IndexMap> propmapIndex(mapIndex);
// http://www.boost.org/doc/libs/1_59_0/libs/graph/doc/bundles.html
kamada_kawai_spring_layout(
g_, temp,
boost::make_transform_value_property_map([](int i)
->double { return i; },
get(edge_bundle, g_)),
//get(edge_bundle, g_),
square_topology<>(50.0), side_length(50.0),
//layout_tolerance<CostType>(0.01),
kamada_kawai_done(),
CostType(1), propmapIndex);
return res;
}
使用了以下类型:
图表类型为:
boost::adjacency_list<vecS, setS, undirectedS, State, CostType>;
哪里CostType
是int
.
PointMap
是:
std::map<VertexDescriptor, square_topology<>::point_type>
这是我使用的停止条件:
struct kamada_kawai_done
{
kamada_kawai_done() : last_delta() {}
template<typename Graph>
bool operator()(double delta_p,
typename boost::graph_traits<Graph>::vertex_descriptor /*p*/,
const Graph& /*g*/,
bool global)
{
if (global) {
double diff = last_delta - delta_p;
if (diff < 0) diff = -diff;
std::cout << "delta_p: " << delta_p << std::endl;
last_delta = delta_p;
return diff < 0.01;
} else {
return delta_p < 0.01;
}
}
double last_delta;
};
请注意,它显示 delta_p
在每次迭代中。
我正在为一个只有六个顶点的简单图运行它。 delta_p
仅显示一次且为 0。考虑到初始布局是随机的,这确实很奇怪。这是我得到的图片:
正如您所看到的,随机布局并不漂亮,Kamada-Kawai 没有对它做任何事情。
我尝试了另一个停止条件:layout_tolerance<CostType>(0.01)
.这导致 Kamada-Kawai 永远运行。
我在这里做错了什么?
P.S.:由于我在浏览器中看不到图片,以防万一它没有附加,这里是图的邻接结构。该图表示三个煎饼情况下煎饼拼图的状态空间。即,顶点对应于数字 0、1、2 的不同排列,并且每个顶点有两条边(权重均为 1):
[0, 2, 1]:
[2, 0, 1] (w=1)
[1, 2, 0] (w=1)
[2, 0, 1]:
[0, 2, 1] (w=1)
[1, 0, 2] (w=1)
[1, 2, 0]:
[0, 2, 1] (w=1)
[2, 1, 0] (w=1)
[2, 1, 0]:
[1, 2, 0] (w=1)
[0, 1, 2] (w=1)
[1, 0, 2]:
[2, 0, 1] (w=1)
[0, 1, 2] (w=1)
[0, 1, 2]:
[1, 0, 2] (w=1)
[2, 1, 0] (w=1)
更新:这是我实现已接受答案的代码:
template <class PointMap> PointMap layout() const {
PointMap res;
// Make a copy into a graph that is easier to deal with:
// -- vecS for vertex set, so there is index map
// -- double for edge weights
using LayoutGraph =
boost::adjacency_list<vecS, vecS, undirectedS, int, double>;
using LayoutVertexDescriptor =
typename graph_traits<LayoutGraph>::vertex_descriptor;
std::map<VertexDescriptor, LayoutVertexDescriptor> myMap;
std::map<LayoutVertexDescriptor, VertexDescriptor> myReverseMap;
LayoutGraph lg; // This is the copy
// Copy vertices
for (auto vd : vertexRange()) {
auto lvd = add_vertex(lg);
myMap[vd] = lvd;
myReverseMap[lvd] = vd;
}
// Copy edges
for (auto from: vertexRange()) {
for (auto to: adjacentVertexRange(from)) {
auto lfrom = myMap[from], lto = myMap[to];
if (!edge(lfrom, lto, lg).second)
add_edge(lfrom, lto, (double)(g_[edge(to, from, g_).first]),
lg);
}
}
// Done copying
using LayoutPointMap =
std::map<LayoutVertexDescriptor, square_topology<>::point_type>;
LayoutPointMap intermediateResults;
boost::associative_property_map<LayoutPointMap> temp(
intermediateResults);
minstd_rand gen;
rectangle_topology<> rect_top(gen, 0, 0, 100, 100);
random_graph_layout(lg, temp, rect_top);
// circle_graph_layout(lg, temp, 10.0);
kamada_kawai_spring_layout(lg, temp, get(edge_bundle, lg),
square_topology<>(100.0), side_length(100.0),
//layout_tolerance<CostType>(0.01));
kamada_kawai_done());
for (auto el: intermediateResults)
res[myReverseMap[el.first]] = el.second;
return res;
}
对于 6 个顶点,布局是一个完美的六边形,所以它有效!对于 24 个顶点,最后显示的是 delta_p
是 ~2.25(它不应该低于 0.01 吗?)。此外,从随机布局开始的布局比从圆形布局开始的布局更漂亮...
使用较小的矩形(例如 20 x 20 而不是 100 x 100)会导致布局不美观,使用 layout_tolerance<double>(0.01)
也是如此。作为停止条件。
最佳答案
我认为中间近似值可能存储在实际的边束属性中,这使得它转换为整数。
由于输入的规模,它显然丢失了对实现(局部)最佳布局很重要的数字。我建议使用 double 作为 edge bundle,看看会发生什么。
关于c++ - Kamada-Kawai 布局的停止条件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33912929/
我正在努力处理查询的 WHERE 部分。查询本身包含一个基于两个表中都存在的 ID 的 LEFT JOIN。但是,我要求 where 语句仅返回其中一列中存在的最大单个结果。目前我返回连接中的所有值,
我有这个代码来改变文件系统的大小。问题是,即使满足 if 条件,它也不会进入 if 条件,而我根本没有检查 if 条件。它直接进入 else 条件。 运行代码后的结果 post-install-ray
假设我有一个包含 2 列的 Excel 表格:单元格 A1 到 A10 中的日期和 B1 到 B10 中的值。 我想对五月日期的所有值求和。我有3种可能性: {=SUM((MONTH(A1:A10)=
伪代码: SELECT * FROM 'table' WHERE ('date' row.date 或 ,我们在Stack Overflow上找到一个类似的问题: https://stackove
我有下面这行代码做一个简单的查询 if ($this->fulfilled) $criteria->addCondition('fulfilled ' . (($this->fulfilled
如果在数据库中找到用户输入的键,我将尝试显示“表”中的数据。目前我已将其设置为让数据库检查 key 是否存在,如下所示: //Select all from table if a key entry
关闭。此题需要details or clarity 。目前不接受答案。 想要改进这个问题吗?通过 editing this post 添加详细信息并澄清问题. 已关闭 5 年前。 Improve th
在MYSQL中可以吗 一共有三个表 任务(task_id、task_status、...) tasks_assigned_to(ta_id、task_id、user_id) task_suggeste
我想先根据用户的状态然后根据用户名来排序我的 sql 请求。该状态由 user_type 列设置: 1=活跃,2=不活跃,3=创始人。 我会使用此请求来执行此操作,但它不起作用,因为我想在“活跃”成员
下面两个函数中最专业的代码风格是什么? 如果函数变得更复杂和更大,例如有 20 个检查怎么办? 注意:每次检查后我都需要做一些事情,所以我不能将所有内容连接到一个 if 语句中,例如: if (veh
我在 C# 项目中使用 EntityFramework 6.1.3 和 SQL Server。我有两个查询,基本上应该执行相同的操作。 1. Exams.GroupBy(x=>x.SubjectID)
我试图在 case when 语句中放入两个条件,但我在 postgresql 中遇到语法错误 case when condition 1 and condition 2 then X else Y
我正在构建一个连接多个表的查询,一个表 prodRecipe 将包含某些行的数据,但不是全部,但是 tmp_inv1 将包含所有行的计数信息。问题是,tmp_inv1.count 取决于某个项目是否在
我有一个涉及 couples of rows which have a less-than-2-hours time-difference 的查询(~0.08333 天): SELECT mt1.*,
我有一个包含许多这样的 OR 条件的代码(工作正常)来检查其中一个值是否为空,然后我们抛出一条错误消息(所有这些都必须填写) } elsif ( !$params{'account'}
我有一个名为 spGetOrders 的存储过程,它接受一些参数:@startdate 和 @enddate。这将查询“订单”表。表中的一列称为“ClosedDate”。如果订单尚未关闭,则此列将保留
在代码中,注释部分是我需要解决的问题...有没有办法在 LINQ 中编写这样的查询?我需要这个,因为我需要根据状态进行排序。 var result = ( from contact in d
我正在尝试创建一个允许省略参数的存储过程,但如果提供了参数,则进行 AND 操作: CREATE PROCEDURE MyProcedure @LastName Varchar(30)
我正在寻找一种方法来过滤我的主机文件中的新 IP 地址。我创建了一个脚本,每次我用来自矩阵企业管理器的数据调用它时都会更新我的主机文件。它工作正常。但是我必须找到一个解决方案,只允许更新 10.XX.
所以我正在做一种 slider ,当它完全向下时隐藏向下按钮,反之亦然,当向上按钮隐藏时,我遇到了问题。 var amount = $('slide').attr('number'); $('span
我是一名优秀的程序员,十分优秀!