Tagged Questions

CLIPS means "C Language Integrated Production System". This is a rules-based programming framework designed for building expert system. It is is written in C and can interact with C language. It belongs to the public domain and was originally developped by NASA under the name "NASA's AI Language" (NAIL).

learn more… | top users | synonyms

4
votes
2answers
658 views

Using Python Functions From the Clips Expert System

Using PyClips, I'm trying to build rules in Clips that dynamically retrieve data from the Python interpreter. To do this, I register an external function as outlined in the manual. The code below is ...
3
votes
1answer
49 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: ...
2
votes
2answers
827 views

Datalog vs CLIPS vs Prolog

As many programmers I studied Prolog in university, but only very little. I understand that Prolog and Datalog are closely related, but Datalog is simpler? Also, I believe that I read that Datalog ...
1
vote
1answer
38 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
0answers
24 views

Is there a method to import Dreamweaver Snippets into Coda as Clips

Is there a simple way (app, automater script) to import my Dreamweaver Snippets into Coda as Clips ?
1
vote
1answer
102 views

How to spawn long-running-processes in Twisted

Preface I'm writing an web-server that gives to users an access to some program written on C (I'm using an Python wrapper over this C-program, it is PyCLIPS). To serve a lot of users, the web-server ...
1
vote
0answers
60 views

Build a SKOS Reasoner rule-based

I have to build a reasoner for ontologies SKOS to reason with rules made ​​in CLIPS / Jess. I want to have simple forms of automated reasoning. I could not find anything specifically to help me create ...
1
vote
0answers
97 views

chess: bishop move with CLIPS

I'm trying to implement the possible moves of a bishop on a chess table, which can have other pieces on random cells. I've been able to make a sketch of an answer, but it doesn't detect other pieces. ...
1
vote
2answers
206 views

Integrating CLIPS with a user interface

I am developing a project using CLIPS, the rules based system. I need to develop a good GUI as well for my project. Which language can be integrated with CLIPS? Can .NET be intergrated? Please suggest ...
1
vote
0answers
137 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
2answers
186 views

How to read line in CLIPS?

I need to read a string in CLIPS so i'm usign (readline) but it doesn't seem to work. It doesn't let me enter anything and it just returns "". Any ideea what's the issue? CLIPS> (readline) "" ...
1
vote
2answers
198 views

Does anyone have experience with Clipsmm?

Hey Stack Overflowers, I have been looking at using CLIPS as an expert system for a simulator i am working on, and so i had a look at clipsmm. The only problem is that their sourceforge page has ...
0
votes
0answers
13 views

CLIPS using (not (a-fact $?)) doesn't fire

I'm having a slight difficulty in understanding how the not function interacts with pattern matching. I'd like to write a pattern match that goes "such a fact doesn't exist". Namely, what I want is: ...
0
votes
0answers
12 views

How can I use deftemplate to store results in CLIPS?

I was trying to build a template for storing some of the results I calculate, so I made this for initialization: (deftemplate tempAlumne (slot nota-media-total) (slot nota-media-obligatorias) ...
0
votes
1answer
24 views

how to add instances in a list?

I'm working with CLIPS and I'm getting in trouble when trying to add instances in an empty list. I'm using the insert$ function but does not seem to work properly. The concrete code is this: ...
0
votes
0answers
18 views

PyCLIPS: NameError: name 'ctestcase' is not defined

I have installed PyCLIPS. However, when I try to run any of the tests in the testsuite, I get the following error: NameError: name 'ctestcase' is not defined This is because classes in the ...
0
votes
0answers
42 views

Error in clips.BuildRule

I am using pyClips (which is Clips embedded in python) for building a knowledge base. I want to add a new rule to a knowledge base file by calling a function that implements the rule shown in this ...
0
votes
0answers
19 views

How does one write a rule to detect the deletion of an instance in clips?

This is what I currently have: (defclass classA (is-a USER) (role concrete)) (defclass classB (is-a USER) (role concrete) (slot a (type INSTANCE))) (defrule classA-delete ?binstance <- ...
0
votes
1answer
79 views

A program that can play video clips and recieve data while the clips are being played

So I need to make a program (For now the program is in Java) that recives data ona countinuous basis and selects and displays video clips based on the data recived. I primarily need help on displaying ...
0
votes
1answer
72 views

Access a slot from multifield in deffunction

I have this function which calculates some value based on multiple slots of multiple multifield facts. Because quite some slots are involved and all of them are needed in the function I was thinking ...
0
votes
1answer
62 views

CLIPS incrementing a variable with a rule

I want to increment security when the rule is run. Right now it changes nothing. The fact (human_resources n) does exist. (defglobal ?security = 0) (defrule rule1 (human_resources n) => ...
0
votes
1answer
62 views

Vidoes not playing on ipod

I need to play some movie files in the iphone. For that i have used standard coding, converted the file to m4v format from itunes, and then uploaded the file onto a server, so that i can directly call ...
0
votes
2answers
253 views

Front end for CLIPS

I have just been introdcude to the CLIPS expert system. Does anyone know how difficult it is to integrate a GUI in Java or C++ for this tool?
0
votes
1answer
373 views

fuzzyCLIPS examples

I am learning how to use the version of fuzzyCLIPS from NRC. I would appreciate if someone could point out some ftp/web sites with examples and code using fuzzyCLIPS. I find the manual difficult to ...
0
votes
1answer
120 views

Propagating Clips Error Messages in PyClips

I'm finding it very difficult to develop with PyClips, because it appears to replace useful error messages thrown by Clips with a generic "syntax error" message. This makes debugging very laborious ...
0
votes
1answer
65 views

Dereferencing a Slot in a Matched Fact in Clips

How do you dereference a slot in a fact matched in the LHS of a rule? If a variable matches a fact, I can't find how to create further conditions that match slots within that fact. For example, in ...
0
votes
1answer
64 views

Strange errors in Clips

I want to make a program in Clips which generates all the partitions of a number. First of all I start with the number like his basic partition: (1 1 1 1 1) if it is number 5, etc. (deftemplate ...
0
votes
1answer
125 views

Clips matching expression is not working

hello in clips i have this template: (deftemplate cell(slot x)(slot y)(slot alive)) and this fact : (start 1 1) then i have this claus in the LHS : ?start<-(start ?x ?y) and i want to get ...
0
votes
1answer
466 views

Aggregating Facts in the CLIPS Expert System to Find a Maximum

I'm trying to clarify my understanding of semantics in the Clips expert system, so I'm trying to write some simple rules to aggregate a list of facts to find the fact with the highest slot value. The ...