[[Documentation]]

*Guards

**Rules with a Guard

The full syntax of a rule is: ( Head :- [Guard | ] Body )
The full syntax of a rule is: ( '''Head''' :- ['''Guard''' | ] '''Body''' )

Guard must be a multiset of type constraints of the form: &math(p(\$p_{1}, \ldots , \$p_{n}));. The same abbreviation scheme as defined for atoms applies to type constraints when a process context name $pi occurs exactly two times in the rule.
'''Guard''' must be a multiset of ''type constraints'' of the form:
&math(p(\$p_1,\ldots,\$p_n));.
The same abbreviation scheme as defined for atoms
applies to type constraints when a process context name &math(\$p_i);
occurs exactly two times in the rule.

Type constraints put constraints on the shapes of processes with which the process contexts specified in the arguments can match. The type constraint name p specifies the content of the constraints.
Type constraints put constraints on the shapes of processes
with which the process contexts specified in the arguments can match.
The type constraint name &math(p); specifies the content of the constraints.

For example, the following type constraints can be used in Guard:
For example, the following type constraints can be used in '''Guard''':

-int($p) specifies that $p must be an integer atom.
-$p < $q specifies that $p and $q are integer atoms such that the value of $p is less than that of $q.
-$r = $p +. $q specifies that $p, $q, and $r are floating point number atoms such that the sum of the values of $p and $q is equal to the value of $r. 
-$p < $q specifies that $p and $q are integer atoms
such that the value of $p is less than that of $q.
-$r = $p +. $q specifies that $p, $q, and $r are floating point number atoms
such that the sum of the values of $p and $q is equal to the value of $r. 

In reality, each type constraint name (such as int or <) has its own mode of usage that specifies which of its arguments are input arguments. The effect of the constraint specified by a type constraint is enabled only after the shapes of its input arguments are all determined.
In reality, each type constraint name (such as int or <)
has its own mode of usage
that specifies which of its arguments are input arguments.
The effect of the constraint specified by a type constraint
is enabled only after the shapes of its input arguments are all determined.

**Typed Process Contexts

A process context name $p constrained in Guard is said to be typed in that rule. As a syntactic sugar, typed process context names can be written as link names as follows:
A process context name $p constrained in '''Guard'''
is said to be ''typed'' in that rule.
As a syntactic sugar,
typed process context names can be written as link names as follows:

 ( Res = gen(N) :- N > 0 | Res = [N|gen(N-1)] ), p(gen(10))

**Guard Library
Currently, the following type constraints can be used in the gua
rd.

Currently, the following type constraints can be used in the guard.

 '='(+Unary,-Unary)         - equivalence
 '='(-Unary,+Unary)         - equivalence
 '=='(+Unary,+Unary)        - equivalence
 unary(+Unary)
 int(+Int)
 float(+Float)
 int(+Float,-Int)           - cast
 float(+Int,-Float)         - cast
 345(-Int)                  - for every integer,  not only with 345
 '-3.14'(-Float)            - for every floating, not only with -3.14
 '<'(+Int,+Int)             - integer comparison,  as well as: > =< >= =:= =\=
 '+'(+Int,+Int,-Int)        - integer operation,   as well as: - * / mod
 '<.'(+Float,+Float)        - floating comparison, as well as: >. =<. >=. =:=. =\=.
 '+.'(+Float,+Float,-Float) - floating operation,  as well as: -. *. /.


Front page List of pages Search Recent changes Backup   Help   RSS of recent changes