Tagged Questions
13
votes
13answers
2k views
Embedded Prolog Interpreter/Compiler for Java
I'm working on an application in Java, that needs to do some complex logic rule deductions as part of its functionality. I'd like to code my logic deductions in Prolog or some other logic/constraint ...
3
votes
3answers
651 views
How to use constraint programming for optimizing shopping baskets?
I have a list of items I want to buy. The items are offered by different shops and different prices. The shops have individual delivery costs. I'm looking for an optimal shopping strategy (and a java ...
0
votes
2answers
85 views
How to write a custom constraint to check that atleast one boolean field in a class is true
I have a class called "Scheduler" which has 7 Boolean fields. I want to write a constraint in hibernate to check that at-least one boolean field is true.
Here is the "Scheduler" class.
public class ...