diff --git a/doc/output-format.md b/doc/output-format.md index a8cc202..9fd491e 100644 --- a/doc/output-format.md +++ b/doc/output-format.md @@ -69,7 +69,7 @@ type(type()). % specifies that inherits inherits(type(), type()). -% specifies to be of type type() +% specifies to have type type() has(, type()). ``` @@ -93,10 +93,10 @@ Variables are linked to the problem's [objects](#constants-objects) and [constan `plasp`’s variables are multivalued, and each variable has exactly one value at each point in time. 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. +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().` +Variables are 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. @@ -138,7 +138,7 @@ Actions may also have *action costs* required to apply them. Action costs are cu % declares a or object constant(constant()). -% specifies to be of type type() +% specifies to have type type() has(, ). ```