【发布时间】:2021-04-08 19:34:54
【问题描述】:
修正隐含的事实断言
deftemplate 和 defrules
(deftemplate Fuels "Identifying characteristics"
(slot appearance
(type SYMBOL)
(allowed-symbols clear amber brownish-red yellow-tint brown-with-green-tint yellowish-green)
)
(slot smell
(type SYMBOL)
(allowed-symbols strong-odour strong-lingering-odour cooking-oil burnt-popcorn)
)
(slot touch
(type SYMBOL)
(allowed-symbols oily-feel waxy cold slippery)
)
)
(defrule Petrol "Identifying characteristics"
(Fuels (appearance brownish-red|yellow-tint)
(smell strong-odour)
(touch cold)
)
=>
(printout t "It's petrol that is leaking" crlf
"If leak is caused by something other than over filling the tank, do NOT drive the car." crlf
"Fuel leaks are very dangerous and potentially explosive."crlf
"Call a mechanic if you find a fuel leak in your car"crlf
)
)
(defrule Diesel "Identifying characteristics"
(Fuels (appearance brown-with-green-tint|yellowish-green)
(smell strong-lingering-odour)
(touch oily-feel|waxy)
)
=>
(printout t "It's diesel that is leaking" crlf
"If leak is caused by something other than overfilling the tank, do NOT drive the car." crlf
"Fuel leaks are very dangerous and potentially explosive."crlf
"Call a mechanic if you find a fuel leak in your car"crlf
)
)
(defrule Bio-fuel "Identifying characteristics"
(Fuels (appearance clear|amber)
(smell cooking-oil|burnt-popcorn)
(touch slippery)
)
=>
(printout t crlf
"It's bio-fuel that is leaking" crlf
"If leak is caused by something other than overfilling the tank,DO NOT! drive the car." crlf
"Fuel leaks are very dangerous and potentially explosive."crlf
"Call a mechanic if you find a fuel leak in your car."crlf
)
)
当使用facts命令时返回
f-1 (Fuels (appearance brownish-red) (smell strong-odor) (touch oily-feel))
f-2 (Fuels (appearance clear) (smell strong-odor) (touch oily-feel))
f-3 (Fuels (appearance clear) (smell strong-odor) (touch cold))
即使这是断言:
(Fuels (appearance brownish-red) (smell strong-odour) (touch cold))
帮助解决这个问题
【问题讨论】:
-
您发布的代码不可能产生此结果。你在描述你的问题时遗漏了一些东西。
-
这是完整的知识库
-
使用匹配时,汽油、柴油或生物燃料均未激活
标签: clips