welcome: please sign in

Revision 33 as of 2012-08-07 18:04:21

Clear message
location: ProblemIOSpecification

Problem Submission Specification: Input, Output, Checking

Quick Directions

Package Submission Instructions

Package Example Download

Problem Input-Output predicates and Instance Specification (mandatory for the System Competition)

In the following it is specified the allowed format for specifying input and output of problems and instances. Samples are available in the competition web site.

Problem Input and Output.

Benchmark problems specifications have to clearly indicate the vocabulary of input and output predicates, i.e., a list of predicate names for the input and a list of predicate names for the output and their arity in the usual logic programming notation (e.g. edge/2 denotes the binary predicate edge).

Instance Specification.

Input instance are sequences of Facts (atoms followed by the dot "." character) with only predicates of the input vocabulary, possibly separated by spaces and line breaks, entirely saved in a text file (instances and files must be in 1-to-1 correspondence). Examples of facts: node(a), edge(a,b). The terms a and b can be positive integers, double quoted strings or unquoted strings belonging to the vocabulary [a-zA-Z][a-zA-Z0-9]*.

Maximum Integer and maximum function nesting level,

have to be provided in a per-instance basis. In particular, they are specified in the filename containing a given instance. We recall that instances must be named XX-benchmark_name-MAXINT-MAXLEVEL.asp where XX is the instance number, MAXINT is the maximum integer (0 if not relevant/no arithmetics are required), and MAXLEVEL is the maximum function nesting level (0 if not relevant). These data should be provided for those solvers needing an explicit bound on the range of integers and/or function symbols. One or both can be set to 0 if your problem domain does not use either numbers or function symbols or both.

Checker Description

The checker gets as parameters

  1. the exit code from the solver, which is 10 for satisfiable instances, 20 for unsatisfiable instances, and any other value in case of an error (e.g. timeout, segmentation fault, etc.)
  2. the file name of the problem instance

If the solver exit code is 10, the checker reads from standard input a witness, i.e. an answer to the problem instance at hand. If the solver exit code is 20, it reads from standard input the constant string INCONSISTENT. If the solver exit code is any other value, it reads from standard input the constant string INCOMPLETE.

To sum it up, the checker is called in the following way:

./checker.sh EXITCODE INSTANCEFILE < AS-SOLVER-OUTPUT

The checker is expected to write to standard output a single row of text containing the string OK with exit code 0 if the solver exit code and standard input correspond to the expected output for the given instance. That is, the instance is satisfiable and the solver correctly returned 10 and produced and answer set, or the instance is unsatisfiable and the solver correctly returned 20 and the input to the checker was INCONSISTENT.The checker is expected to write a single row of text containing the string FAIL with exit code 1 if the solver result was wrong. That is, e.g., the solver produced an answer set of an inconsistent instance or returned 20 for a satisfiable one.

Remark: Additionally, the checker may return 2 and the string DO_NOT_KNOW if the checker is not able to verify or falsify the solver result. This result should be avoided whenever possible, but might be used if it is computationally too costly to determine an answer, e.g., to verify an INCONSISTENT result (i.e. to prove that the instance is indeed unsatisfiable) or to prove minimality of an answer set of a disjunctive program.

In summary, the following cases are possible:

Solver

Checker

exit code

standard output

standard input

possible outputs

10

an answer set

an answer set

OK with exit code 0 if the answer set is correct; FAIL with exit code 1 if the answer set is incorrect; DO_NOT_KNOW if the checker cannot verify the result

20

INCONSISTENT

OK with exit code 0 if the instance is indeed inconsistent; FAIL with exit code 1 if the instance is consistent

any other value

INCOMPLETE

FAIL with exit code 1

Note that witnesses given in input to checkers are assumed to be inclusive of both instance facts (input predicates) and solution facts (output predicates), but the file name of the instance is additionally passed as second parameter to the checker.

The source code of the correctness checker has to be be included in the package; the provided software must be able to (be built and) run on the Debian i686 GNU/Linux(kernel ver. 2.6.26) operating system. A checker can be built on top of a logic specification for a solver of choice: in such a case binaries of the solver must be provided together with the checker encoding.

Checker Example Download

Generator Description

The generator should create one instance per call, printing it to standard out.

The file README.txt must explain how the instance generator is built and run. In particular, the parameters which may influence the hardness of the instance need to be described, such that we can produce useful benchmark instances ranging from easy to difficult ones.

Furthermore, it must describe how the maximum integer and maximum function nesting level are obtained for a generated instance. This allows us to generate instances according to the naming conventions (see instance naming convention). In case any of those values are irrelevant for your problem, please mention that the respective vaule(s) can be set to 0.