Problem CiME 04 list-sum-prod-assoc

Tool CaT

Execution TimeUnknown
Answer
MAYBE
InputCiME 04 list-sum-prod-assoc

stdout:

MAYBE

Problem:
 +(x,0()) -> x
 +(0(),x) -> x
 +(s(x),s(y)) -> s(s(+(x,y)))
 +(+(x,y),z) -> +(x,+(y,z))
 *(x,0()) -> 0()
 *(0(),x) -> 0()
 *(s(x),s(y)) -> s(+(*(x,y),+(x,y)))
 *(*(x,y),z) -> *(x,*(y,z))
 sum(nil()) -> 0()
 sum(cons(x,l)) -> +(x,sum(l))
 prod(nil()) -> s(0())
 prod(cons(x,l)) -> *(x,prod(l))

Proof:
 Open

Tool IRC1

Execution TimeUnknown
Answer
MAYBE
InputCiME 04 list-sum-prod-assoc

stdout:

MAYBE

Tool IRC2

Execution TimeUnknown
Answer
TIMEOUT
InputCiME 04 list-sum-prod-assoc

stdout:

TIMEOUT

'Fastest (timeout of 60.0 seconds)'
-----------------------------------
Answer:           TIMEOUT
Input Problem:    innermost runtime-complexity with respect to
  Rules:
    {  +(x, 0()) -> x
     , +(0(), x) -> x
     , +(s(x), s(y)) -> s(s(+(x, y)))
     , +(+(x, y), z) -> +(x, +(y, z))
     , *(x, 0()) -> 0()
     , *(0(), x) -> 0()
     , *(s(x), s(y)) -> s(+(*(x, y), +(x, y)))
     , *(*(x, y), z) -> *(x, *(y, z))
     , sum(nil()) -> 0()
     , sum(cons(x, l)) -> +(x, sum(l))
     , prod(nil()) -> s(0())
     , prod(cons(x, l)) -> *(x, prod(l))}

Proof Output:    
  Computation stopped due to timeout after 60.0 seconds

Tool RC1

Execution TimeUnknown
Answer
MAYBE
InputCiME 04 list-sum-prod-assoc

stdout:

MAYBE

Tool RC2

Execution TimeUnknown
Answer
TIMEOUT
InputCiME 04 list-sum-prod-assoc

stdout:

TIMEOUT

'Fastest (timeout of 60.0 seconds)'
-----------------------------------
Answer:           TIMEOUT
Input Problem:    runtime-complexity with respect to
  Rules:
    {  +(x, 0()) -> x
     , +(0(), x) -> x
     , +(s(x), s(y)) -> s(s(+(x, y)))
     , +(+(x, y), z) -> +(x, +(y, z))
     , *(x, 0()) -> 0()
     , *(0(), x) -> 0()
     , *(s(x), s(y)) -> s(+(*(x, y), +(x, y)))
     , *(*(x, y), z) -> *(x, *(y, z))
     , sum(nil()) -> 0()
     , sum(cons(x, l)) -> +(x, sum(l))
     , prod(nil()) -> s(0())
     , prod(cons(x, l)) -> *(x, prod(l))}

Proof Output:    
  Computation stopped due to timeout after 60.0 seconds