Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
283 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 Answer

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...