I want to test, if not(pred(A)) has could have solution. That would be the case if A is not bound, or it's bound to A\=1. And after writing this, i also now how to do this :) ... thx for the cue. cheers, Christian Kish Shen schrieb: > Christian Wirth wrote: >> i have a conditon NOT(pred(A)) and a fact pred(1). The existenc check >> \+(\+(not(pred(A))) should succeed, because it's possible that A is >> not bound to 1, but it fails because A gets bound to 1 by the test. >> How can i test if a NOT(condition) is solvable ? >> > > Hi Christian, > > not/1 and \+/1 behave exactly the same -- I believe \+/1 was added > because not/1 does not do negation as some people understand it, so > \+/2 is considered by some to be a better name for the way Prolog (and > thus ECLiPSe) implements negation. Specifically, negation as failure > (with closed world assumption). > > \+(A) and not(A) succeeds if A fails, and fails if A succeeds. > Thus \+( \+( not(A))) (which is what you have) has exactly the same > semantics as \+(A) (and not(A)), except it does more work. > > What exact semantics do you want? Note that if you want pred(A) to > behave like a constraint (i.e. it can delay if it is not immediately > entailed), then you cannot use the \+(\+(A)) trick, because if A > delays, A will appear to succeed, and \+(A) will fail. > > Cheers, > > Kish >Received on Wed Apr 14 2010 - 19:57:40 CEST
This archive was generated by hypermail 2.2.0 : Thu Feb 02 2012 - 02:31:58 CET