Prolog systems with occurs check aware freeze

风流意气都作罢 提交于 2021-02-11 12:22:39

问题


David Tonhofer posed an interesting problem about occurs check. An occurs check aware coroutine can be realized as follows with a predicate with_occurs_check/2 which can be easily implemented as a refinement of with_occurs_check/1:

occurs_check_aware_freeze(X, G) :-
    current_prolog_flag(F), 
    freeze(X, with_occurs_check(F, G)). 

Namely by using an with_occurs_check/2 with a further parameter. But the main problem of a realiable with_occurs_check/[1,2] that also works with backtracking remains. Since woken up goals are allowed to leave choice points and we don't want leaking.

Would Prolog engines in some way solve the problem as David Tonhofer speculates? Are there any Prolog systems around that already implement an occurs check aware freeze?

来源:https://stackoverflow.com/questions/66050655/prolog-systems-with-occurs-check-aware-freeze

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!