# Output Format `plasp` 3 translates SAS and PDDL files into a uniform ASP fact format. ## Overview Essentially, `plasp`’s output format consists of *variables* that are modified by *actions* whose preconditions are fulfilled. `plasp`’s variables correspond to the multivalued variables in SAS. PDDL predicates are turned into Boolean variables to make the output format consistent. Actions are modeled exactly as PDDL actions and SAS operators. ## In a Nutshell The following illustrates `plasp`’s output format for the problem of turning switches on and off. ```prolog % declares the type "type(switch)" type(type(switch)). % introduces a switch "constant(a)" constant(constant(a)). has(constant(a), type(switch)). % declares a variable "variable(on(X))" for switches X variable(variable(on(X))) :- has(X, type(switch)). % the variable may be true or false contains(variable(on(X)), value(on(X)), true)) :- has(X, type(switch)). contains(variable(on(X)), value(on(X)), false)) :- has(X, type(switch)). % declares the action "action(turnOn(X))", which requires switch X to be off and then turns it on action(action(turnOn(X))) :- has(X, type(switch)). precondition(action(turnOn(X)), variable(on(X)), value(on(X), false)) :- has(X, type(switch)). postcondition(action(turnOn(X)), effect(0), variable(on(X)), value(on(X), true)) :- has(X, type(switch)). % initially, the switch is off initialState(variable(on(constant(a))), value(on(constant(a)), false)). % in the end, the switch should be on goal(variable(on(constant(a))), value(on(constant(a)), true)). ``` ## Syntax and Semantics `plasp` structures the translated ASP facts into multiple sections, which are explained in the following. ### Feature Requirements ```prolog % declares a required feature requires(feature()). ``` `plasp` recognizes and declares advanced features used by the input problem, such as conditional effects and [axiom rules](#axiom-rules) (currently only SAS). See the [full list of supported features](feature-requirements.md) for more information. The feature requirement predicates may be used in meta encodings to warn about unsupported features. ### Types ```prolog % declares a type(type()). % specifies to be of type type() has(, type()). ``` [Variables](#variables), [constants](#constants), and [objects](#objects) may be typed. Types are only available with PDDL and if typing is enabled. ### Variables ```prolog % declares a variable(variable()). % adds a to the domain of a contains(, ). ``` With SAS, variable names are numbers starting at 0, `variable()`. SAS variables are inherently multivalued, which results in two or more values of the form `value(, )` for each variable. With PDDL, Boolean variables are created from the PDDL predicates. Variables ared named after the PDDL predicates, `variable().` Each variable contains exactly two values (one true, one false) of the form `value(, )`. Note that with PDDL, variables and values are named identically. ### Actions ```prolog % declares an action(action()). % defines that as a precondition to , must have value precondition(, , ). % defines that after executing , is assigned postcondition(, effect(), , ). % defines the condition of a conditional effect precondition(effect(), , ). ``` Actions may require certain variables to have specific values in order to be executed. After applying an action, variables get new values according to the action's postconditions. Actions may have *conditional effects*, that is, certain postconditions are only applied if additional conditions are satisfied. For this reason, each conditional effect is uniquely identified with a predicate `effect()` as the second argument of the `postcondition` facts. The conditions of conditional effects are given by additional `precondition` facts that take the respective `effect()` predicates as the first argument. Unconditional effects are identified with `effect(unconditional)`. Conditional effects are currently only supported with SAS input problems.