Meriem Djefel wrote: > Hi all, > I want to know can I declare a real variable with a domain union of > intervals. You can model such a problem using a disjunctive constraint. You need to load lib(ic) and lib(propia) for the following. Write a disjunction of the alternative domain intervals, and annotate it as follows: ?- (X :: 0.0 .. 1.3 ; X :: 2.1 .. 4.0) infers ic. X = X{0.0 .. 4.0} There is 1 delayed goal. Yes (0.00s cpu) You see that, although X is displayed as having domain 0.0..4.0, there is a "delayed goal", i.e. an active constraint which will make sure that X only takes the allowed values. For example: ?- (X :: 0.0..1.3 ; X :: 2.1..4.0) infers ic, X = 2.0. No (0.00s cpu) ?- (X :: 0.0..1.3 ; X :: 2.1..4.0) infers ic, X :: 1.5 .. 2.2. X = X{2.1 .. 2.2} There is 1 delayed goal. Yes (0.00s cpu) -- JoachimReceived on Sat Apr 18 2009 - 10:51:58 CEST
This archive was generated by hypermail 2.2.0 : Thu Feb 02 2012 - 02:31:58 CET