Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
284 views
in Technique[技术] by (71.8m points)

delayed execution - Prolog systems with occurs check aware freeze

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?

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

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...