[TOC]

  1. Title: Detecting Ai Planning Modelling Mistakes Potential Errors and Benchmark Domains
  2. Author: Pascal Bercher et. al.
  3. Publish Year: 2023
  4. Review Date: Mon, Nov 13, 2023
  5. url: https://bercher.net/publications/2023/Sleath2023PossibleModelingErrors.pdf

Summary of paper

Contribution

Some key terms

list of errors

Syntax Errors

  1. inconsistent parameter use
    • the modeller attempts to use a predicate with either a parameter of an incompatible type or a different number of parameters than it was defined with.
  2. undefined entities
    • the modeller attempts to use an undefined predicate or type
  3. General Syntax error
    • typo, forgets to write “:parameters”, add extra parenthesis, forget question mark in front of a variable name to differentiate it from a constant.
  4. duplicated definition
    • the modeller repeats some definitions
  5. cyclic type declaration
    • when two types are directly or indirectly declared to be subtypes of each other, forming a cycle
  6. undeclared parameters
    • the modeller tries to use a variable in the definition of a task that wasn’t declared as a parameter

Semantic Errors

  1. complementary effect
    • there is an intersection between the ground negated and positive effects of a task
  2. Unsatisfied preconditions
    • some action’s preconditions can never be fulfilled. This may be due to syntactically complementary preconditions (with identical predicates), or simply since in the given planning problem the preconditions cannot be made true. this require complex reasoning, which is as hard as planning
  3. Unused elements
    • The modeller defines a type or predicate or a parameter in a task that is not used
  4. Redundant effects
    • Some effect will never change the state to which the respective action is applied. There are two possibilities how this can happen: The simplest case is if some effect also occurs as a precondition (with identical parameters). The redundancy can however also be problem-dependent
  5. immutable predicate
    • A predicate is defined which never occurs in task effects. This means the state of that predicate is constant.

Good things about the paper (one paragraph)

The semantic error part is not what I expected.

https://github.com/ProfDrChaos/flawedPlanningModels