Joachim Schimpf wrote: >... > Here is more generic code for the same idea: > > simplifiable(Constraint) :- > call(Constraint), % post for the first time > suspend(repost_simplified(Constraint), 0, Constraint->bound). Correction: suspend(repost_simplified(Constraint,Susp), 0, Constraint->bound, Susp). > > :- demon repost_simplified/2. > repost_simplified(Constraint, Susp) :- > call(Constraint), % post again > ( ground(Constraint) -> kill_suspension(Susp) ; true ). > > > This can be used as follows: > > no_longer_infinite_loop :- > integers([V1,V2]), > V2 $>= 1, > simplifiable(V1 $> V2), > V1 $= V2. > > > -- JoachimReceived on Wed Jan 14 2009 - 06:02:59 CET
This archive was generated by hypermail 2.2.0 : Thu Feb 02 2012 - 02:31:58 CET