Origins
Pednault observed that the expressive power of STRIPS was susceptible to being improved by allowing the effects of an operator to be conditional. This is the main idea of ADL-A, which is basically the propositional fragment of the ADL proposed by Pednault, with ADL-B an extension of -A. In the -B extension, actions can be described with indirect effects by the introduction of a new kind of propositions: ”static laws". A third variation of ADL is ADL-C which is similar to -B, in the sense that its propositions can be classified into static and dynamic laws, but with some more particularities. The sense of a planning language is to represent certain conditions in the environment and, based on these, automatically generate a chain of actions which lead to a desired goal. A goal is a certain partially specified condition. Before an action can be executed its preconditions must be fulfilled; after the execution the action yields effects, by which the environment changes. The environment is described by means of certain predicates, which are either fulfilled or not. Contrary to STRIPS, the principle of the open world applies with ADL: everything not occurring in the conditions is unknown (Instead of being assumed false). In addition, whereas in STRIPS only positive literals and conjunctions are permitted, ADL allows negative literals and disjunctions as well.Syntax of ADL
An ADL schema consists of an action name, an optional parameter list and four optional groups of clauses labeled Precond, Add, Delete and Update. The Precond group is a list of formulae that define the preconditions for the execution of an action. If the set is empty the value "TRUE" is inserted into the group and the preconditions are always evaluated as holding conditions. The Add and Delete conditions are specified by the Add and Delete groups, respectively. Each group consists of a set of clauses of the forms shown in the left-hand column of the figure 1: # The ''R'' represents a relation symbol # ''τ''1, ..., ''τ''''n'' represents terms # ''ψ'' represents a formula # The sequence ''z''1, ..., ''z''''k'' are variable symbols that appear in the terms ''τ''1, ..., ''τ''''n'', but not in the parameter list of the action schema # ''x''1, ..., ''x''''n'' are variable symbols that are different from the variables ''z''1, ..., ''z''''n'' and do not appear in ''τ''1, ..., ''τ''''n'', ''ψ'', or the parameter list of the action schema The Update groups are used to specify the update conditions to change the values of function symbols. An Update group consists of a set of clauses of the forms shown in the left column of the figure 2:Semantics of ADL
The formal semantic of ADL is defined by 4 constraints. The first constraint is that actions may not change the set of objects that exist in the world; this means that for every action α and every current-state/next-state pair (''s'', ''t'') ∈ ''a'', it must be the case that the domain of t should be equal to the domain of ''s''. The second constraint is that actions in ADL must be deterministic. If (''s'', ''t''1) and (''s'', ''t''2) are current-state/next-state pairs of action ∃, then it must be the case that ''t''1 = ''t''2. The third constraint incorporated into ADL is that the functions introduced above must be representable as first-order formulas. For every ''n''-ary relation symbol ''R'', there must exist a formula Φ''a''''R''(''x''1,... ,''x''''n'') with free variables ''x''2, ..., ''x''''n'' such that ''f''''a''''R''(''s'') is given by: : Consequently, ''F''(''n''1, ..., ''x''''n'') = ''y'' will be true after performing action , = if and only if Φ''a''''R'' (''x''1, ..., ''x''''n'',''y'') was true beforehand. Note that this representability requirement relies on the first constraint (domain of ''f'' should be equal to domain of ''s''). The fourth and final constraint incorporated into ADL is that set of states in which an action is executable must also be representable as a formula. For every action ''α'' that can be represented in ADL, there must exist a formula Πa with the property that ''s'' , = Π''a'' if and only if there is some state ''t'' for which (''s'', ''t'') ∈ ''α'' (i.e. action α is executable in state ''s'')Complexity of planning
In terms of computational efficiency, ADL can be located between STRIPS and the Situation Calculus. Any ADL problem can be translated into a STRIPS instance – however, existing compilation techniques are worst-case exponential. This worst case cannot be improved if we are willing to preserve the length of plans polynomially, and thus ADL is strictly more brief than STRIPS. ADL planning is still a PSPACE-complete problem. Most of the algorithms polynomial space even if the preconditions and effects are complex formulae. Most of the top-performing approaches to classical planning internally utilize a STRIPS like representation. In fact most of the planners (FF, LPG, Fast-Downward, SGPLAN5 and LAMA) first translate the ADL instance into one that is essentially a STRIPS one (without conditional or quantified effects or goals).Comparison between STRIPS and ADL
# The STRIPS language only allows positive literals in the states, while ADL can support both positive and negative literals. For example, a valid sentence in STRIPS could be Rich ∧ Beautiful. The same sentence could be expressed in ADL as ¬Poor ∧ ¬Ugly # In STRIPS the unmentioned literals are false. This is called theExample
Consider the problem of air freight transport, where certain goods must be transported from an airport to another airport by plane and where airplanes need to be loaded and unloaded. The necessary actions would be ''loading'', ''unloading'' and ''flying''; over the descriptors one could express and whether a freight ''c'' is in an airplane ''p'' and whether an object ''x'' is at an airport ''A''. The actions could be defined then as follows:See also
*References
{{DEFAULTSORT:Action Description Language Robot programming languages Programming languages created in 1987