HOME

TheInfoList



OR:

Constraint Handling Rules (CHR) is a declarative, rule-based
programming language A programming language is a system of notation for writing computer programs. Most programming languages are text-based formal languages, but they may also be graphical. They are a kind of computer language. The description of a programming ...
, introduced in 1991 by Thom Frühwirth at the time with European Computer-Industry Research Centre (ECRC) in Munich, Germany.Thom Frühwirth. ''Theory and Practice of Constraint Handling Rules''. Special Issue on Constraint Logic Programming (P. Stuckey and K. Marriott, Eds.), Journal of Logic Programming, Vol 37(1-3), October 1998. Originally intended for
constraint programming Constraint programming (CP) is a paradigm for solving combinatorial problems that draws on a wide range of techniques from artificial intelligence, computer science, and operations research. In constraint programming, users declaratively state th ...
, CHR finds applications in
grammar induction Grammar induction (or grammatical inference) is the process in machine learning of learning a formal grammar (usually as a collection of ''re-write rules'' or '' productions'' or alternatively as a finite state machine or automaton of some kind) fr ...
,
type system In computer programming, a type system is a logical system comprising a set of rules that assigns a property called a type to every "term" (a word, phrase, or other set of symbols). Usually the terms are various constructs of a computer progra ...
s,
abductive reasoning Abductive reasoning (also called abduction,For example: abductive inference, or retroduction) is a form of logical inference formulated and advanced by American philosopher Charles Sanders Peirce beginning in the last third of the 19th century ...
,
multi-agent system A multi-agent system (MAS or "self-organized system") is a computerized system composed of multiple interacting intelligent agents.Hu, J.; Bhowmick, P.; Jang, I.; Arvin, F.; Lanzon, A.,A Decentralized Cluster Formation Containment Framework fo ...
s,
natural language processing Natural language processing (NLP) is an interdisciplinary subfield of linguistics, computer science, and artificial intelligence concerned with the interactions between computers and human language, in particular how to program computers to pro ...
,
compilation Compilation may refer to: *In computer programming, the translation of source code into object code by a compiler **Compilation error **Compilation unit *Product bundling, a marketing strategy used to sell multiple products *Compilation thesis M ...
,
scheduling A schedule or a timetable, as a basic time-management tool, consists of a list of times at which possible task (project management), tasks, events, or actions are intended to take place, or of a sequence of events in the chronological order ...
, spatial-temporal reasoning,
testing An examination (exam or evaluation) or test is an educational assessment intended to measure a test-taker's knowledge, skill, aptitude, physical fitness, or classification in many other topics (e.g., beliefs). A test may be administered verba ...
, and
verification Verify or verification may refer to: General * Verification and validation, in engineering or quality management systems, is the act of reviewing, inspecting or testing, in order to establish and document that a product, service or system meets ...
. A CHR program, sometimes called a ''constraint handler'', is a set of rules that maintain a ''constraint store'', a multi-set of logical formulas. Execution of rules may add or remove formulas from the store, thus changing the state of the program. The order in which rules "fire" on a given constraint store is non-deterministic, according to its ''abstract
semantics Semantics (from grc, σημαντικός ''sēmantikós'', "significant") is the study of reference, meaning, or truth. The term can be used to refer to subfields of several distinct disciplines, including philosophy Philosophy (f ...
'' and deterministic (top-down rule application), according to its ''refined semantics''. Although CHR is
Turing complete Alan Mathison Turing (; 23 June 1912 – 7 June 1954) was an English mathematician, computer scientist, logician, cryptanalyst, philosopher, and theoretical biologist. Turing was highly influential in the development of theoretical com ...
, it is not commonly used as a programming language in its own right. Rather, it is used to extend a ''host language'' with constraints. Prolog is by far the most popular host language and CHR is included in several Prolog implementations, including ''SICStus'' and ''
SWI-Prolog SWI-Prolog is a free implementation of the programming language Prolog, commonly used for teaching and semantic web applications. It has a rich set of features, libraries for constraint logic programming, multithreading, unit testing, GUI, inte ...
'', although CHR implementations also exist for
Haskell Haskell () is a general-purpose, statically-typed, purely functional programming language with type inference and lazy evaluation. Designed for teaching, research and industrial applications, Haskell has pioneered a number of programming lan ...
,
Java Java (; id, Jawa, ; jv, ꦗꦮ; su, ) is one of the Greater Sunda Islands in Indonesia. It is bordered by the Indian Ocean to the south and the Java Sea to the north. With a population of 151.6 million people, Java is the world's List ...
, C, SQL, and JavaScript. In contrast to Prolog, CHR rules are multi-headed and are executed in a committed-choice manner using a
forward chaining Forward chaining (or forward reasoning) is one of the two main methods of reasoning when using an inference engine and can be described logically as repeated application of ''modus ponens''. Forward chaining is a popular implementation strategy fo ...
algorithm.


Language overview

The concrete syntax of CHR programs depends on the host language, and in fact programs embed statements in the host language that are executed to handle some rules. The host language supplies a data structure for representing terms, including logical variables. Terms represent constraints, which can be thought of as "facts" about the program's problem domain. Traditionally, Prolog is used as the host language, so its data structures and variables are used. The rest of this section uses a neutral, mathematical notation that is common in the CHR literature. A CHR program, then, consists of rules that manipulate a multi-set of these terms, called the ''constraint store''. Rules come in three types: * Simplification rules have the form h_1, \dots, h_n \Longleftrightarrow g_1, \dots, g_m \,, \, b_1, \dots, b_o. When they match the ''heads'' h_1, \dots, h_n and the '' guards'' g_1, \dots, g_m hold, simplification rules may rewrite the heads into the ''body'' b_1, \dots, b_o. * Propagation rules have the form h_1, \dots, h_n \Longrightarrow g_1, \dots, g_m \,, \, b_1, \dots, b_o. These rules add the constraints in the body to the store, without removing the heads. * ''Simpagation'' rules combine simplification and propagation. They are written h_1, \dots, h_\ell \,\backslash\, h_, \dots, h_n \Longleftrightarrow g_1, \dots, g_m \,, \, b_1, \dots, b_o. For a simpagation rule to fire, the constraint store must match all the rules in the head and the guards must hold true. The \ell constraints before the \backslash are kept, as a in a propagation rule; the remaining n - \ell constraints are removed. Since simpagation rules subsume simplification and propagation, all CHR rules follow the format :H_k \,\backslash\, H_r \Longleftrightarrow G \,, \, B where each of H_k, H_r, G, B is a conjunction of constraints: H_k, H_r and B contain CHR constraints, while the guards G are built-in. Only one of H_k, H_r needs to be non-empty. The host language must also define ''built-in constraints'' over terms. The guards in rules are built-in constraints, so they effectively execute host language code. The built-in constraint theory must include at least true (the constraint that always holds), fail (the constraint that never holds, and is used to signal failure) and equality of terms, i.e., unification. When the host language does not support these features, they must be implemented along with CHR. Execution of a CHR program starts with an initial constraint store. The program then proceeds by matching rules against the store and applying them, until either no more rules match (success) or the fail constraint is derived. In the former case, the constraint store can be read off by a host language program to look for facts of interest. Matching is defined as "one-way unification": it binds variables only on one side of the equation. Pattern matching can be easily implemented when as unification when the host language supports it.


Example program

The following CHR program, in Prolog syntax, contains four rules that implement a solver for a ''less-or-equal'' constraint. The rules are labeled for convenience (labels are optional in CHR). % X leq Y means variable X is less-or-equal to variable Y reflexivity @ X leq X <=> true. antisymmetry @ X leq Y, Y leq X <=> X = Y. transitivity @ X leq Y, Y leq Z

> X leq Z. idempotence @ X leq Y \ X leq Y <=> true.
The rules can be read in two ways. In the declarative reading, three of the rules specify the axioms of a partial ordering: * Reflexivity: ''X'' ≤ ''X'' * Antisymmetry: if ''X'' ≤ ''Y'' and ''Y'' ≤ ''X'', then ''X'' = ''Y'' * Transitivity: if ''X'' ≤ ''Y'' and ''Y'' ≤ ''Z'', then ''X'' ≤ ''Z'' All three rules are implicitly universally quantified (upper-cased identifiers are variables in Prolog syntax). The idempotence rule is a tautology from the logical viewpoint, but has a purpose in the second reading of the program. The second way to read the above is as a computer program for maintaining a constraint store, a collection of facts (constraints) about objects. The constraint store is not part of this program, but must be supplied separately. The rules express the following rules of computation: * Reflexivity is a ''simplification'' rule: it expresses that, if a fact of the form ''X'' ≤ ''X'' is found in the store, it may be removed. * Antisymmetry is also a simplification rule, but with two ''heads''. If two facts of the form ''X'' ≤ ''Y'' and ''Y'' ≤ ''X'' can be found in the store (with matching ''X'' and ''Y''), then they can be replaced with the single fact ''X'' = ''Y''. Such an equality constraint is considered built in, and implemented as a unification that is typically handled by the underlying Prolog system. * Transitivity is a ''propagation'' rule. Unlike simplification, it does not remove anything from the constraint store; instead, when facts of the form ''X'' ≤ ''Y'' and ''Y'' ≤ ''Z'' (with the same value for ''Y'') are in the store, a third fact ''X'' ≤ ''Z'' may be added. * Idempotence, finally, is a ''simpagation'' rule, a combined simplification and propagation. When it finds duplicate facts, it removes them from the store. Duplicates may occur because constraint stores are multi-sets of facts. Given the query A leq B, B leq C, C leq A the following transformations may occur: The ''transitivity'' rule adds A leq C. Then, by applying the ''antisymmetry'' rule, A leq C and C leq A are removed and replaced by A = C. Now the ''antisymmetry'' rule becomes applicable on the first two constraints of the original query. Now all CHR constraints are eliminated, so no further rules can be applied, and the answer A = B, A = C is returned: CHR has correctly inferred that all three variables must refer to the same object.


Execution of CHR programs

To decide which rule should "fire" on a given constraint store, a CHR implementation must use some
pattern matching In computer science, pattern matching is the act of checking a given sequence of tokens for the presence of the constituents of some pattern. In contrast to pattern recognition, the match usually has to be exact: "either it will or will not be ...
algorithm. Candidate algorithms include RETE and TREAT, but most implementation use a lazy algorithm called LEAPS. The original specification of CHR's semantics was entirely non-deterministic, but the so-called "refined operation semantics" of Duck ''et al.'' removed much of the non-determinism so that application writers can rely on the order of execution for performance and correctness of their programs. Most applications of CHRs require that the rewriting process be
confluent In geography, a confluence (also: ''conflux'') occurs where two or more flowing bodies of water join to form a single channel. A confluence can occur in several configurations: at the point where a tributary joins a larger river (main stem); o ...
; otherwise the results of searching for a satisfying assignment will be nondeterministic and unpredictable. Establishing confluence is usually done by way of the following three properties: * A CHR program is ''locally confluent'' if all its critical pairs are joinable. * A CHR program is called ''terminating'' if there are no infinite computations. * A terminating CHR program is confluent if ''all its critical pairs are joinable''.


See also

*
Constraint programming Constraint programming (CP) is a paradigm for solving combinatorial problems that draws on a wide range of techniques from artificial intelligence, computer science, and operations research. In constraint programming, users declaratively state th ...
*
Constraint logic programming Constraint logic programming is a form of constraint programming, in which logic programming is extended to include concepts from constraint satisfaction. A constraint logic program is a logic program that contains constraints in the body of clau ...
*
Logic programming Logic programming is a programming paradigm which is largely based on formal logic. Any program written in a logic programming language is a set of sentences in logical form, expressing facts and rules about some problem domain. Major logic prog ...
*
Production system (computer science) A "production system " (or "production rule system") is a computer program typically used to provide some form of artificial intelligence, which consists primarily of a set of rules about behavior but it also includes the mechanism necessary to fol ...
*
Business rules engine A business rules engine is a software system that executes one or more business rules in a runtime production environment. The rules might come from legal regulation ("An employee can be fired for any reason or no reason but not for an illegal rea ...
s *
Rewriting In mathematics, computer science, and logic, rewriting covers a wide range of methods of replacing subterms of a well-formed formula, formula with other terms. Such methods may be achieved by rewriting systems (also known as rewrite systems, rewr ...


References


Further reading

* Christiansen, Henning.
CHR grammars
" Theory and Practice of Logic Programming 5.4-5 (2005): 467-501.


External links

* {{Official website, constraint-handling-rules.org
CHR Bibliography



The K.U.Leuven CHR System

WebCHR: a CHR web interface
Constraint logic programming Declarative programming languages Constraint programming languages Concurrent programming languages