| bio | website | |
|---|---|---|
| location | ||
| age | ||
| visits | member for | 8 months |
| seen | Sep 18 '12 at 8:33 | |
| stats | profile views | 2 |
|
Nov 9 |
awarded | Good Answer |
|
Sep 24 |
awarded | Nice Answer |
|
Sep 18 |
awarded | Necromancer |
|
Sep 17 |
awarded | Teacher |
|
Sep 17 |
awarded | Editor |
|
Sep 17 |
revised |
How can one manage thousands of IF…THEN…ELSE rules? added 6 characters in body |
|
Sep 17 |
answered | How can one manage thousands of IF…THEN…ELSE rules? |
|
Sep 17 |
comment |
How can one manage thousands of IF…THEN…ELSE rules? Prolog is a logic programming language (that is arguably a domain specific language) which might be suitable for your problem. Logic programming is very different from other programming paradigms and excels only in certain kinds of problems. A Prolog program is essentially a collection of facts and rules in implication form, which is quite close to your if-this-then-that kind of problem space. |