Tagged Questions

Jess is a rule engine for the Java platform - it is a superset of CLIPS programming language, developed by Ernest Friedman-Hill of Sandia National Labs. It was first written in late 1995. It provides rule-based programming suitable for automating an expert system, and is often referred to as an ...

learn more… | top users | synonyms

17
votes
3answers
6k views

Pros and cons of Java rules engines

What are the pros and cons to adopting the Java rules engines JESS and Drools? Are there any other players? I understand that Drools is Open Source and JESS is not, but how do they compare in other ...
7
votes
2answers
557 views

What are the myths about rules engine?

I'm writing a presentation about rule engine technology, specifically JBoss Drools. What are some of the 'myths' about rule engines. One I can think of is that it allows business users to control ...
5
votes
4answers
423 views

What is the best language in which to write an expert system?

Is LISP or something like Jess the best choice? I'm interested in writing a program that makes a suggestion based on users' answers. Computational considerations are not really a factor this is ...
3
votes
1answer
50 views

Passing lambdas with arguments in Jess

I have defined a boolean Jess function that accepts a lambda, as follows: (deffunction at-least(?n ?lambda $?values) (>= (length$ (filter ?lambda ?values)) ?n)) Which I can call as follows: ...
1
vote
1answer
43 views

Forming rules from facts. Rule based programming

Learning Clips, while I don't mind the syntax I'm finding it difficult to derive rules from facts. Is there a tip on how to structure rules given a knowledge base? A non trivial example would be ...
1
vote
1answer
113 views

Jess and FuzzyJ assistance

I'm trying to learn Jess and FuzzyJ but am having problems getting a simple program to run. I have looked at it for hours and am no quite sure why it doesn't run. If someone could point me in the ...
1
vote
0answers
146 views

Counting Existing Facts in the RHS of Clips Rules

How do you test for fact existence in the RHS of rules in Clips? I'm trying to design a rule that will "score" the current state by counting how many goal facts exist. It's obvious how to test for ...
1
vote
3answers
713 views

Rules engine for spatial and temporal reasoning?

I have an application that receives a number of datums that characterize 3 dimensional spatial and temporal processes. It then filters these datums and creates actions which are then sent to ...
0
votes
1answer
17 views

Can we count facts with same values in Jess?

Using Jess as the rule engine, we can assert a fact that some witness has seen a person, at some place, and with time associated: (deffacts witnesses (witness Batman Gotham 18) (witness Hulk ...
0
votes
2answers
20 views

Program Highlightning .clp files ??

I am developing an expert system using Jess shell. I would like a program so as to highlight with colors my code because I want to paste it in a word document. Is there extension in notepad++ ?? Or ...
0
votes
1answer
52 views

Jess in php code how?

I am trying to embed an expert system in a site. My code for expert system is a Jess script (1.clp) like : (defrule ask_input (initial-fact) => (printout t ...
0
votes
0answers
122 views

Java + Jess Cleaner Intelligent Agent

I need an example of a multi-agent system that simulates a vacuum-cleaner. Does anyone have some links in regard to this subject ? Thx.