Questions tagged [rules-engine]
The rules-engine tag has no summary.
32 questions
-2 votes
1 answer
798 views
How to create Business rule engine in PostgreSQL? [closed]
Our organization is into Health Care RCM business. In that, we use to receive medical records (called as accounts, which is a business phrase) and our staff (Medical coders) use to do medical coding, ...
1 vote
2 answers
840 views
How to implement a rule-based decision maker for an agent-based model?
I have a hard time understanding how to combine a rule-based decision making approach for an agent in an agent-based model I try to develop. The interface of the agent is a very simple one. public ...
1 vote
2 answers
152 views
Trying to figure out the optimal selection based on a set of rules
Background: We have software that displays different products to the user Problem: With a given set of rules, determine which is the primary product we should show the user. These are images. We are ...
2 votes
1 answer
2k views
Evaluate and run Dynamic Rules
I have to build a dynamic rules engine in say, Java, where a user can define a certain list of filters and trigger a certain event based on them. The rules will be a long chain of conditions, such as: ...
0 votes
0 answers
129 views
How to design database tables for complex build of materials as product models?
I need to redesign a 10 year old Product Management Portal and underlying Data-model. There are build of materials as products in the system. Product managers update pricing frequently for products. ...
1 vote
4 answers
2k views
Rules engine suggestion for hard coded if-then-else
Reposting question as Previous post on same Topic was not clear. Currently our financial application receives multiple feeds in csv format from client, there are usually 100k to 5M rows of data. ...
-1 votes
1 answer
62 views
Tools for generating a form from a schema, and applying process flow logic
We have a situation where the business has a range of datasets which end users contribute to. The business needs flexibility in adjusting or rather extending these datasets, and also publishing new ...
5 votes
1 answer
12k views
A better design for a rules engine implementation
I've implemented a rule engine like this: public interface IRuleEngine { List<ValidationMessage> Validate(param1, param2, param3); } public class DefaultRuleEngine : IRuleEngine { ...