Input Format

We use an adapted version of the format for Integer Programs (IPs, see for example here or here) from the Termination and Complexity Competition extended by costs. Furthermore, we introduce IPs with function calls (ϱ-IPs) and also probabilistic IPs (PIPs).

Integer Programs (IPs)

(GOAL COMPLEXITY)
(STARTTERM (FUNCTIONSYMBOLS f))
(VAR x y)
(RULES
  f(x,y) -{0}> g(x,y)
  g(x,y) -> g(x-1,y+x) :|: x > 0
  g(x,y) -> h(x,y)
  h(x,y) -{y}> h(x,y-1) :|: y > 0
)

Integer Programs with Function Calls (ϱ-IPs)

In addition to IPs, we also allow function calls and so-called return locations. See our article here for the formal semantics.

(GOAL COMPLEXITY)
(STARTTERM (FUNCTIONSYMBOLS l0))
(RETURNLOCATIONS (FUNCTIONSYMBOLS f2))
(VAR x y a)
(RULES
  # Computes the sum x! + ... + 1! at l1
  # and afterwards uses this result in the second loop at l2.
  l0(x,y,a) -> l1(x,y,a)
  l1(x,y,a) -> l1(x-1,y+f1[a | (x,y,a) <- (x,y,x)],a) :|: x > 0
  l1(x,y,a) -> l2(1,y,a) :|: x <= 0
  l2(x,y,a) -> l2(2*x,3*y,a) :|: x < y

  # Recursively computes the factorial a!.
  f1(x,y,a) -> f2(x,y,1) :|: a = 0
  f1(x,y,a) -> f2(x,y,a*f1[a | (x,y,a) <- (x,y,a - 1)]) :|: a > 0
)

Here, a function call has the form l[ v | L <- R ] where L is a tuple of variables and R is a tuple of polynomial expressions. Here, l is the start location of the subprogram that is called, the update L <- R sets the program variables of the subprogram to their initial values, and v contains the “return value” of the subprogram upon its termination. In the example, we have two function calls f1[a | (x,y,a) <- (x,y,x)] and f1[a | (x,y,a) <- (x,y,a - 1)]. Furthermore, the return locations are specified in the third line (RETURNLOCATIONS (FUNCTIONSYMBOLS ...)).

Probabilistic Integer Programs (PIPs)

(GOAL EXPECTEDCOMPLEXITY)
(STARTTERM (FUNCTIONSYMBOLS f))
(VAR x y)
(RULES
  f(x,y) -{0}> g(x,y)
  g(x,y) -> 0.5:g(x-1,y+x) :+: 0.5:g(x,y+x) :|: x > 0
  g(x,y) -{0}> h(x,y)
  h(x,y) -> h(x,y-1) :|: y > 0
)