- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我似乎无法让我的 if else 语句起作用。
male(john).
male(fred).
male(harry).
female(mary).
female(julie).
female(susan).
female(anne).
hasblonde(X):-(male(X),X = john);(female(X),X = susan);(female(X),X = julie).
hasdarkhair(X):-(male(X),X = harry);(male(X),X = fred).
hasbrunette(X):-(female(X),X = mary);(female(X),X = anne).
isrich(X):-(female(julie),X=julie);(male(fred),X=fred).
likes(male(X),female(Y));likes(female(X),male(Y)):-likes(X,Y).
likes(X,Y):-
((X==julie)->
((hasdarkhair(Y))->
(female(X), male(Y));
male(X));
female(X),male(Y));
((X==julie)->
((isrich(Y))->
(female(X), male(Y));
male(X));
female(X),male(Y));
((X=mary)->
((hasdarkhair(Y))->
(female(X), male(Y));
male(X));
female(X),male(Y));
((X=john)->
((isrich(Y))->
(female(X), male(Y));
female(X));
male(X),female(Y));
((X=harry)->
((isrich(Y))->
(female(X), male(Y));
female(X));
male(X),female(Y));
((X=fred)->
((hasbrunette(Y))->
(female(X), male(Y));
female(X));
male(X),female(Y)).
likes(MaleName,FemaleName)
likes(FemaleName,MaleName)
最佳答案
基于 CapelliC 的回答,因为显然他的回答不够明确。至于 if-else 语法和用法,请参阅答案末尾。
首先,您在问题陈述中拥有的是您想要以 Prolog 程序形式表示的信息。在 Prolog 中,您有谓词,可以描述它们的参数之间的关系,或者陈述关于它们的参数的已知真理。例如,这是一个事实表;它说我们知道有七个人存在:
person(john).person(fred).person(harry).person(mary).person(julie).person(susan).person(anne).
Alright. We now want to state that some of them are male, and some are female.
% John, Fred and Harry are men, Mary, Julie, Susan and Anne are women.male(john).male(fred).male(harry).female(mary).female(julie).female(susan).female(anne).
These are two more tables of facts. Now you want to add to your database the information about their hair color:
% John has blonde hair while Fred and Harry have dark hair.% Julie and Susan are blonde, Mary and Anne are brunette.person_hair(john, blond).person_hair(fred, dark).person_hair(harry, dark).person_hair(julie, blond).person_hair(susan, blond).person_hair(mary, dark).person_hair(anne, dark).
This is a table with two columns if you will: the first is the person, the second one is a description of the hair color. The word "brunette" is usually used to describe a dark-haired woman, so we could add a rule that states that:
% A brunette is a female with dark hairbrunette(X) :- female(X), person_hair(X, dark).
Some of the people we have own gold, and owning gold in our program makes a person rich:
person_owns(fred, gold).person_owns(julie, gold).is_rich(X) :- %person(X), person_owns(X, gold).
In our strictly heterosexual program, men like women and women like men:
person_likes(M, F) :- male(M), female(F).person_likes(F, M) :- female(F), male(M).
As you can calculate, this gives us 3 x 4 + 4 x 3 = 24 possible solutions for person_likes(A, B)
without any further constraints:
?- bagof(A-B, person_likes(A, B), R), length(R, Len).R = [john-mary, john-julie, john-susan, john-anne, fred-mary, fred-julie, fred-susan, fred-anne, ... - ...|...],Len = 24.
This is a very general rule: it describes a relationship between free variables, which makes it somewhat different from our person_owns/2
relationship, for example. Is it a really useful? Why not:
is_heterosexual(H) :- person(H).
But this only states that every person in our program is heterosexual; it doesn't let us derive the rule that a heterosexual is someone who likes the opposite sex. Maybe it is even better to re-name it, to better express its meaning (and I will use an if-then-else construct, to show how it is normally done):
opposite_sex(X, Y) :- ( male(X) -> female(Y) ; female(X) -> male(Y) ).
For our purposes, this could have just as well written as above:
opposite_sex(M, F) :- male(M), female(F).opposite_sex(F, M) :- male(M), female(F).
With this, we can write a rule person_likes/2
with a general pre-condition stating that the other has to be of the opposite sex:
person_likes(X, Y) :- opposite_sex(X, Y), fits_personal_taste(X, Y).
We can now make rules for the personal tastes of each person. For Julie:
fits_personal_taste(julie, X) :- is_rich(X), person_hair(X, dark).
This creates a small problem, however. You need to make sure that for each person the program knows about there is a rule in this form. We don't know of any preferences for Anne, so we would have to have a rule:
% Anyone (male) would fit Anne's tastesfits_personal_taste(anne, _).
It would be nicer if we could instead have a table with an entry for each person that does have preferences, for example:
person_preferences(julie, [is_rich, person_hair(dark)]).person_preferences(harry, [is_rich]).% and so on
This would allow us to write fits_personal_taste/2
something like this:
fits_personal_taste(X, Y) :- ( person_preferences(X, Ps) -> maplist(fits_preference(Y), Ps) ; true ).
This is the intended use of an if-else construct in Prolog: an exclusive OR.
If a person has preferences, check if the candidate fits all of them; otherwise succeed.
How would fits_preference/2
look like though? It would take a person as the first argument, a term with the preference in the second, and would have to somehow check if that preference is met for that person. One somewhat hacky solution would be to use the so called Univ operator =..
to take the a term of the form person_hair(Color)
, make a term of the form person_hair(Person, Color)
, and call it:
fits_preference(Person, Preference) :-
Preference =.. [F|Args],
Preference1 =.. [F,Person|Args],
call(Preference1).
person_preferences
直接将一个人映射到可调用的术语:
person_preferences(julie, P, [is_rich(P), person_hair(P, dark)]).person_preferences(harry, P, [is_rich(P)]).% and so on
With this, fits_personal_taste/2
becomes:
fits_personal_taste(X, Y) :- ( person_preferences(X, Y, Ps) -> maplist(call, Ps) ; true ).
When person_preferences/3
is called in the condition part of the statement, each preference in the list of preferences is bound to a concrete person; we then call each to check if it can be proven to be true for the facts in our program.
Finally, a helper predicate possible_pair/2
that states that both people need to like each other:
possible_pair(X, Y) :-
person_likes(X, Y),
person_likes(Y, X),
X @< Y.
?- bagof(A-B, possible_pair(A, B), R).
R = [fred-mary, anne-fred].
?- bagof(A-B, person_likes(A, B), R), write(R).
[john-julie,fred-mary,fred-anne,harry-julie,susan-john,anne-john,mary-fred,julie-fred,susan-fred,anne-fred,mary-harry,susan-harry,anne-harry]
R = [john-julie, fred-mary, fred-anne, harry-julie, susan-john, anne-john, mary-fred, julie-fred, ... - ...|...].
关于Prolog if else 语法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31529755/
在此处回答的另一个问题中,我发现了以下 JavaScript代码: function _dom_trackActiveElement(evt) { if (evt && evt.target)
if (A == 0) OR (B == 0) 怎么说? 最佳答案 只是为了讽刺: if (A === 0 || B === 0) 关于语法,我们在Stack Overflow上找到一个类似的问题:
var ret = [] ,xresult = document.evaluate(exp, rootEl, null, X
我一直在寻找一些类似于下例的 JavaScript。有人可以解释一下吗,因为我以前从未见过这样编写的 JavaScript。 “SomethingHere”和冒号代表什么?我习惯于看到函数 myFun
这是我的程序: delimiter // drop procedure if exists migContactToActor; create procedure migContactToActor(
我遇到了一个问题。我一直在使用 gcc 编译/汇编我的 C 代码一段时间,并且习惯了阅读 Intel 汇编语法。我在生成程序集文件时使用了 -masm=intel 标志。 但是最近因为公司迁移,拿到了
自上而下和自下而上语法有什么区别?举个例子就太好了。 最佳答案 首先,语法本身不是自上而下或自下而上的,解析器是(尽管有些语法可以被其中一个解析,但不能被另一个解析)。 从实践的角度来看,主要区别在于
我知道这是草率的代码,但它是: display dialog ("Start Screensaver. Please type: matrix, coffee, waffles, star, wate
这个问题已经有答案了: Giving name to a loop (6 个回答) 已关闭 8 年前。 我见过这个字符在 C# 中使用,就像 Java 中的扩展一样,但最近我在代码中发现了这个 loo
我正在尝试编写一个函数来检查字符串是否为回文,但我认为在使用字符串指针时存在一些错误。这段代码有什么问题? #include #include #define MAX 1000 int IsPalin
所以在this question我询问了一些 Javascript 是如何被压缩的。问题已得到解答,但以下片段让我非常困惑,以至于我不得不问另一个问题。在这里: for (Y = 0; $ = 'zx
假设我有一个接受这些参数的函数。 int create(Ptr * p,void * (*insert)(void *, void *)) { //return something later } 结
这个问题已经有答案了: Bitwise '&' operator (6 个回答) 已关闭 5 年前。 我在代码中找到了这个,但我从未遇到过像 & 这样的事情,仅 && if ((code & 1) =
我在处理继承类及其中的构造函数和方法的语法时遇到了问题。 我想实现一个类日期和一个子类 date_ISO,它们将按特定顺序设置给定的日、月、年,并通过一种方法将其写入字符串。我觉得我的基类日期工作正常
我正在尝试通过存储过程填充表,如下所示: SET @resultsCount = (SELECT COUNT(*) FROM tableA); SET @i = 0; WHILE @i THEN
谁能解释一下下面代码中的“<<”? mysql test<
刚刚开始学习 MySQL,这是一个菜鸟问题,也是我在 StackOverflow 上的第一个问题。 假设我有 12 个订单状态,我想从其中的 5 个中选择总计。我会使用: SELECT SUM(tot
我的编程背景是在学校学过一点Java。由于某些原因,JavaScript 语法往往让我感到困惑。下面的 JavaScript 代码是一种我不知道如何构成的语法模式: foo.ready = funct
我正在阅读 javascript 源代码,并且我以前没有编写过 javascript。我对它的一些语法感到困惑。 $(function () { window.onload=function
我什至不知道如何命名我想要的东西。那么让我举个例子来解释一下。 虽然火狐使用textContent,但其他浏览器支持innerText属性。顺便说一句,如果我使用了错误的术语,请纠正我。无论如何,到目
我是一名优秀的程序员,十分优秀!