Tagged Questions

1
vote
1answer
38 views

how to run suspended goals in prolog with constraints

I am trying to solve a specific problem using prologs constraint solvers, and I'm stuck :D A more general version of my problem requirement is the like this: :- lib(ic).:- lib(ic). solve( ...
1
vote
1answer
160 views

Solving jigsaw puzzle with restriction in prolog

I am starting to learn restrictions in prolog at the moment using SICStus Prolog. Though I know how solve simpe problems using this, I have one exercise where I must solve a Jigsaw puzzle. However I ...
0
votes
1answer
30 views

Creating a delayed constraint using the unity term manipulator in prolog

This is my arithmetic inequality expression in prolog: 2*X + 3*Y > 4*Z I used the unity term manipulator like this: Expr =.. [Op, Lhs, Rhs] And now I have Lhs = 2*X + 3*Y, Rhs as 4*Z and Op ...
0
votes
3answers
36 views

How to identify the inequality involved in an arithmetic expression specified by a prolog query?

I am working on prolog and faced this scenario - In my query, I pass something like this: ?- query( 2*X + 3*Y >= 3*Z ) Now, what I would like to do is have the prolog program capture the ...