- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我知道我在这里遇到 XY 问题的可能性很大,所以第一部分是关于更普遍的情况。
问题
我有一组包含抽象地理特征信息的数据点,但没有实际位置(绝对或相对)。例如,我们将其称为以下描述本地地形但没有坐标或相对定位的城市列表:
最佳答案
这是使用 MiniZinc(一种非常好的约束建模语言)的方法。
该模型的假设是有一张固定地点的 map ,例如山、丘陵、河流等所在的地方。 (我不确定这是否在您的假设中。对于不同的模型,请参见下文。)
然后目标是使用这些约束放置一些城市(在这个模型中的城市 A..H)
- Near(P1,P2):P1 和 P2 必须在一定距离内(由“near_distance”定义)
- on(P1,P2):城市P1必须在或非常靠近固定地点
- not_near(P1,P2):P1 和 P2 不能靠近
我更改了原始约束之一,并添加了更多城市和约束。
这个模型也在这里:http://hakank.org/minizinc/place_cities2.mzn .
解决方案是在模型之后
include "globals.mzn";
% The places
enum places = {island,hill,coast,river,mountain,plains,
city_a,city_b,city_c,city_d,city_e,city_f,city_g,city_h
};
int: empty = 0;
set of int: fixed_places = {island,hill,coast,river,mountain,plains};
set of int: to_place = places diff fixed_places; % {city_a,city_b,city_c,city_d,city_e,city_f,city_g,city_h};
int: num_places = length(places);
int: max_x;
int: max_y;
int: near_distance;
array[1..max_x, 1..max_y] of int: data;
array[0..num_places] of string: places_s = array1d(0..num_places,
["-","i","h","c","r","m","p",
"A","B","C","D","E","F","G","H",
]);
% decision variables
% position of a city
array[to_place] of var 1..max_x: x;
array[to_place] of var 1..max_y: y;
% the grid (0 is an empty spot)
array[1..max_x, 1..max_y] of var 0..num_places: grid;
% on: must be really near.
% Assumption: p2 is a fixed_place
predicate on(var 1..num_places: p1, var 1..num_places: p2) =
exists(I in 1..max_x, J in 1..max_y) (
data[I,J] = p2 /\
pow(abs(x[p1]-I),2) + pow(abs(y[p1]-J),2) <= 1
)
;
% define the concept of near: atmost d distance apart
predicate near(var 1..num_places: p1, var 1..num_places: p2) =
exists(I in 1..max_x, J in 1..max_y) (
grid[I,J] = p2 /\
pow(abs(x[p1]-I),2) + pow(abs(y[p1]-J),2) <= near_distance
)
;
% not near: > d distance apart
predicate not_near(var int: p1, var int: p2) =
exists(I in 1..max_x, J in 1..max_y) (
grid[I,J] = p2 /\
pow(abs(x[p1]-I),2) + pow(abs(y[p1]-J),2) > near_distance
)
;
solve satisfy;
% solve :: int_search(x ++ y ++ array1d(grid), input_order, indomain_split, complete) satisfy;
% general constraints
constraint
% Here we ensure that:
% - a fixed place can only be positioned by the fixed place or a city
% - if an empty spot (in data[I,J]) then it can only be positioned by a city
forall(I in 1..max_x, J in 1..max_y) (
if data[I,J] != empty then
(grid[I,J] in {data[I,J]} union to_place)
/\ grid[I,J] != empty
else
grid[I,J] in to_place union {empty}
endif
)
;
% city constraints
constraint
% City A is on an island and on a hill.
on(city_a,island) /\
on(city_a, hill) /\
% City B is on the coast and near a river.
on(city_b,coast) /\
near(city_b,river) /\
% City C is on a mountain and near a river
on(city_c,mountain) /\
near(city_c,river) /\
% City D is on an island and on a hill.
on(city_d,island) /\
on(city_d,hill) /\
%%%City E is on an island and on plains.
% % on(city_e,island) /\
% Changed it to:
% City E is near the mountains and on plains
near(city_e, mountain) /\
on(city_e,plains)
% ADDED:
% City F is on mountains and near a river
/\
on(city_f, mountain) /\
near(city_f,river)
/\
near(city_g, mountain) /\
near(city_g, hill)
/\
on(city_h,plains) /\
% near(city_h,hill) % /\
% not_near(city_h,city_c) /\
not_near(city_h,city_f)
;
constraint
% connect the x[p] and y[p] arrays with grid[I,J]
forall(p in to_place) (
exists(I in 1..max_x, J in 1..max_y) (
x[p] = I /\ y[p] = J /\ grid[I,J] = p
)
)
% unique place in grid
% all cities have unique positions
/\ all_different([(x[p]*num_places-1)+ y[p] | p in to_place])
/\ % each city has just one place in the grid
forall(p in to_place) (
sum([grid[I,J] = p | I in 1..max_x, J in 1..max_y]) <= 1
)
;
output [
"x: \(x)\ny: \(y)\n"
]
++
[
join("", [places_s[fix(grid[I,J])] | J in 1..max_y]) ++ "\n"
| I in 1..max_x % , J in 1..max_y
]
;
%
% data
%
max_x = 15;
max_y = 15;
near_distance = 4;
data = array2d(1..max_x,1..max_y,
[
empty,empty,empty,empty,empty,empty,river,empty,empty,coast,empty,island,hill,hill,empty,
empty,empty,empty,empty,empty,empty,river,empty,empty,coast,empty,empty,island,island,empty,
empty,empty,empty,empty,empty,empty,river,empty,empty,empty,coast,coast,coast,coast,coast,
empty,empty,empty,empty,empty,empty,river,empty,empty,empty,empty,empty,empty,empty,empty,
empty,empty,empty,empty,empty,empty,river,empty,empty,empty,empty,empty,empty,empty,empty,
empty,empty,mountain,mountain,mountain,mountain,empty,empty,empty,empty,empty,empty,empty,empty,empty,
empty,empty,mountain,mountain,mountain,mountain,mountain,empty,empty,empty,hill,hill,hill,empty,empty,
empty,empty,empty,empty,empty,empty,empty,empty,empty,empty,hill,hill,hill,empty,empty,
empty,empty,empty,empty,plains,plains,plains,plains,empty,empty,empty,empty,empty,empty,empty,
empty,empty,empty,empty,plains,plains,plains,empty,empty,empty,empty,empty,empty,empty,empty,
empty,empty,empty,empty,empty,empty,empty,empty,empty,empty,empty,empty,empty,empty,empty,
empty,empty,empty,empty,empty,empty,mountain,mountain,mountain,empty,empty,empty,empty,empty,empty,
empty,empty,empty,empty,empty,empty,mountain,mountain,mountain,empty,empty,empty,empty,empty,empty,
empty,empty,empty,empty,empty,empty,empty,empty,empty,empty,empty,empty,empty,empty,empty,
empty,empty,empty,empty,empty,empty,empty,empty,empty,empty,empty,empty,empty,empty,empty,
]);
i: island
h: hill
c: coast
r: river
m: mountain
p: plains
......r..c.ihh.
......r..c..ii.
......r...ccccc
......r........
......r........
..mmmm.........
..mmmmm...hhh..
..........hhh..
....pppp.......
....ppp........
...............
......mmm......
x: [1, 1, 5, 1, 9, 5, 7, 10]
y: [13, 9, 6, 12, 4, 5, 9, 4]
------r-Bc-DAh-
------r--c--ii-
------r---ccccc
------r--------
----FCr--------
--mmmm---------
--mmmmm-G-hhh--
----------hhh--
---Epppp-------
---Hppp--------
---------------
------mmm------
------mmm------
---------------
---------------
关于prolog - 逻辑引擎中的不确定性(根据本地地理产生合理的相对位置),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43662477/
以下代码: if (!(ep = engOpen("\0"))) { fprintf(stderr, "\nCan't start MATLAB engine\n");
我在谈论一些网络事物,例如 http://uservoice.com/ 你能推荐任何其他类似的服务、网站,或者可能是(甚至更好)一个现成的引擎来部署在自己的服务器上? 实际上,更多关于系统的问题,可以
很难说出这里问的是什么。这个问题是含糊的、模糊的、不完整的、过于宽泛的或修辞性的,无法以目前的形式得到合理的回答。如需帮助澄清此问题以便重新打开它,visit the help center 。 已关
我正在寻找一个矩阵表达式解析器/引擎。例如, 3 * A + B * C 其中 A、B、C 是矩阵是一个典型的表达式。这应该类似于(单值)数学表达式解析器/引擎,但应该处理矩阵值和变量。我已经用谷歌搜
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 想改进这个问题?将问题更新为 on-topic对于堆栈溢出。 5年前关闭。 Improve this qu
是否有基于 .net 的 cometd 引擎?比如 Ajax 推送引擎 那是免费和开源的吗? 最佳答案 轨道式 Orbited是一个 HTTP 守护进程,针对长期 cometd 连接进行了优化。它旨在
按照目前的情况,这个问题不适合我们的问答形式。我们希望答案得到事实、引用或专业知识的支持,但这个问题可能会引发辩论、争论、投票或扩展讨论。如果您觉得这个问题可以改进并可能重新打开,visit the
已结束。此问题正在寻求书籍、工具、软件库等的推荐。它不满足Stack Overflow guidelines 。目前不接受答案。 我们不允许提出寻求书籍、工具、软件库等推荐的问题。您可以编辑问题,以便
我正在寻找支持以下功能的 haml javascript“端口”: 存储在文件中的模板。 JSON 输入。 支持“集合”[{Booking},{Booking},{Booking}] 进行迭代处理。
我在 IronPython 中托管 IronPython。我没有找到使用等效的命令行参数初始化它的方法:-X:FullFrames . 我的代码有点像这样: import clr clr.AddRef
我想将我工作的公司的所有松散信息整合到一个知识库中。 Wiki 似乎是一种可行的方法,但大部分相关信息都隐藏在 PST 文件中,并且需要很长时间才能说服人们将他们的电子邮件(包括附件)手动翻译成 Wi
我已经使用缓存的 flutter 引擎 flutter 到现有的 native 应用程序(添加到应用程序)中。 override fun onCreate(savedInstanceState: Bu
就目前而言,这个问题不适合我们的问答形式。我们希望答案得到事实、引用或专业知识的支持,但这个问题可能会引起辩论、争论、投票或扩展讨论。如果您觉得这个问题可以改进并可能重新打开,visit the he
我正在使用 Django Cassandra我已经定义了我的模型,我可以用它来命名一个表: class Meta: db_table = "table_name" 但是,Cassand
类似于 NoSQL 数据库,但适用于 OLAP。当然是开源的:) 编辑: OLAP 引擎在幕后使用关系数据库。例如 SAPBW 可以使用 Oracle 等。我的意思是一个没有这个底层关系数据库的 OL
我正在使用以下片段来 enable Razor templating in my solution (在 ASP.NET MVC3 之外)。是否可以轻松实现布局? 背景资料: 我在这一点上(模板编译成
我们目前使用闭源知识库解决方案,所见即所得创建文章是TinyMCE(看起来可能是修改/简化的)。 他们目前根本不允许更改它(添加插件等,除非您可以以某种方式注入(inject)插件)。 我确实拥有对
我正在评估我们的高性能电信应用程序的 BPEL 引擎,但性能似乎很差。我们评估了 Apache Ode、SunBPEL 引擎、Active BPEL 等。您知道任何更快的 BPEL 引擎实现或 C/C
Elastic / Lucene真的需要在文档中存储所有索引数据吗?您难道不就通过通过传递数据,以便Lucene may index the words into its hash table并为每个
我是 3D 游戏新手?我正在使用 Libgdx。如何计算像 Tetromino Revolution 游戏这样的透视相机的参数?请给我任何想法。 看图片:http://www.terminalstud
我是一名优秀的程序员,十分优秀!