- CLIPS
CLIPS is a
public domain software tool for buildingexpert systems . The name is an acronym for "C Language Integrated Production System." The syntax and name was inspired byCharles Forgy 's OPS ("Official Production System," although there was nothing really official about it). The first versions of CLIPS were developed starting in 1985 atNASA -Johnson Space Center (as an alternative for existing system ART*Inference) until the mid 1990s when the development group's responsibilities ceased to focus on expert system technology. The original name of the project was "NASA's AI Language" ("NAIL").CLIPS is probably the most widely used expert system tool because it is fast, efficient and free. Although it is now in the public domain, it is still updated and supported by the original author, Gary Riley. CLIPS incorporates a complete object-oriented language "COOL" for writing expert systems. Though it is written in C, its interface more closely resembles that of the
programming language LISP . Extensions can be written in C, and CLIPS can be called from C.Facts and rules
Like other expert system languages, CLIPS deals with rules and facts. Various facts can make a rule applicable. An applicable rule is then asserted. Facts and rules are created by first defining them, as shown below: (deffacts trouble_shooting (car_problem (name ignition_key) (status on)) (car_problem (name engine) (status wont_start)) (car_problem (name headlights) (status work)) ) (defrule rule1 (car_problem (name ignition_key) (status on)) (car_problem (name engine) (status wont_start)) => (assert (car_problem (name starter) (status faulty)) )In CLIPS, "salience" allows a user to assign priority (or weight) to a rule.
Descendants of CLIPS
Descendants of the CLIPS language include Jess (rule-based portion of CLIPS rewritten in Java, it later grew up in different direction), and
FuzzyCLIPS (which adds concept of relevancy into the language).Documentation
CLIPS contains an extensive set of readable documentation and the following books are available:
* A college textbook about CLIPS, "Expert Systems: Principles and Programming", ISBN 0-534-95053-1
* A book on Jess, "Jess in Action: Rule Based Systems in Java", ISBN 1-930110-89-8External links
* [http://clipsrules.sourceforge.net/ Homepage of the project]
* [http://www.siliconvalleyone.com/clips.htm NASA CLIPS: downloads, information, news, and history]
* [http://rd13doc.cern.ch/Atlas/Notes/108/Note108-1.html CLIPS expert system tool: a candidate for the Diagnostic System engine]
* [http://erabaki.ehu.es/ehsis/ EHSIS] : an extension to CLIPS language that adds support forGUI ,Multimedia , IPC, etc. on Windows.
* [http://iweb.tntech.edu/bhuguenard/ds6530/ClipsTutorial/tableOfContents.htm CLIPS tutorial] at iweb.tntech.edu
Wikimedia Foundation. 2010.