Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am working on a decision engine / rule evaluation engine. For example:

Input: Customer and all the offences done by the customer

Output: Consequences of the offences

A sample case would be:

Input: Customer(Jhonny Chimpo, 999-00-1111), Offences ( Broke window, slapped boss, kicked team lead in his groin)

Output: Gets pink slip

So the piece of code I want to write evaluates different offences based on rules for each offence and combined offence. The current code is just a maze of if and else statements. I am sure such business problems are common. What design/enterprise pattern is usually used to solve a problem like this?

Is it the specification pattern? I want the code to be open for extension, clean and flexible.

share|improve this question
Do you want to write one? You could take a look at Jess jessrules.com – Joe Jan 24 '10 at 10:48

closed as not constructive by ThinkingStiff, Kev Aug 5 '12 at 13:55

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

6 Answers

up vote 3 down vote accepted

Basically business rules look like

forall rules:
  if <condition> then doAction();

What about categorizing all offences by severity using scores, perhaps extra bonus for frequent "evil-doers", some offences may become time-barred and whatever required.

Then a rough draft of an algorithm could be:

  • Sum of all scores of a customer (weighted)
  • compare to maximum

This would be straight forward using data structures instead of many (possibly deeply nested) if..then..else things.

share|improve this answer
the current code we have is maze of if-else loops – Perpetualcoder Jan 25 '10 at 5:59

I can suggest you a tool we used to solve a similar problem.

Take a look at JBoss Drools: http://www.jboss.org/drools/

It's a BRMS: Business Rules Management System

Here it is an introductory video: http://www.jboss.com/products/platforms/brms/

share|improve this answer
I am trying to develop in .net platform +1 for mentioning the great product – Perpetualcoder Jan 25 '10 at 5:54

I'm not sure any of the answers above have been that helpful.

I have written similar components using expression trees. You can build lambda expressions that represent predicates, compile and execute them, all dynamically, and then trigger some action in response. This approach is powerful, flexible and strips out all the if/else horror (which is definitely not the way to go).

However, what you are really talking about is logic programming. There are numerous implementations of Prolog over .NET. Prolog is a logic based language, used alot for AI applications, that starts to become seriously powerful once you have your head around its paradigm.

Have a look at some of these ..

share|improve this answer
this is something really interesting. I am not a fan of business rule engines out there either – Perpetualcoder Feb 8 '10 at 7:59
but..:)...I am not a Prolog fan either..i just find it amazing :) – Perpetualcoder Feb 8 '10 at 8:01
check out expression trees. – flesh Feb 8 '10 at 15:39

You could try something similar to this "event based" rules engine

share|improve this answer

I think any RETE Algorithm based Rule Engine would work for your case. You can try drools.

share|improve this answer

I think you're trying to develop an expert system. You can check the term and then check the appropriate programming languages as prolog etc.

share|improve this answer
I am not trying to build an expert system. – Perpetualcoder Jan 25 '10 at 19:13
2  
@Perpetualcoder actually, what you have listed is precisely an expert system. – NickLarsen Jan 28 '10 at 21:03
isnt an expert system also a learning machine for doing a specific job ? – Perpetualcoder Jan 29 '10 at 15:42

Not the answer you're looking for? Browse other questions tagged or ask your own question.