Problem Mixed TRS minsort

LMPO

Execution Time (secs)
0.156
Answer
MAYBE
InputMixed TRS minsort
MAYBE

We consider the following Problem:

  Strict Trs:
    {  le(0(), y) -> true()
     , le(s(x), 0()) -> false()
     , le(s(x), s(y)) -> le(x, y)
     , eq(0(), 0()) -> true()
     , eq(0(), s(y)) -> false()
     , eq(s(x), 0()) -> false()
     , eq(s(x), s(y)) -> eq(x, y)
     , if(true(), x, y) -> x
     , if(false(), x, y) -> y
     , minsort(nil()) -> nil()
     , minsort(cons(x, y)) ->
       cons(min(x, y), minsort(del(min(x, y), cons(x, y))))
     , min(x, nil()) -> x
     , min(x, cons(y, z)) -> if(le(x, y), min(x, z), min(y, z))
     , del(x, nil()) -> nil()
     , del(x, cons(y, z)) -> if(eq(x, y), z, cons(y, del(x, z)))}
  StartTerms: basic terms
  Strategy: innermost

Certificate: MAYBE

Proof:
  The input cannot be shown compatible

Arrrr..

MPO

Execution Time (secs)
0.134
Answer
MAYBE
InputMixed TRS minsort
MAYBE

We consider the following Problem:

  Strict Trs:
    {  le(0(), y) -> true()
     , le(s(x), 0()) -> false()
     , le(s(x), s(y)) -> le(x, y)
     , eq(0(), 0()) -> true()
     , eq(0(), s(y)) -> false()
     , eq(s(x), 0()) -> false()
     , eq(s(x), s(y)) -> eq(x, y)
     , if(true(), x, y) -> x
     , if(false(), x, y) -> y
     , minsort(nil()) -> nil()
     , minsort(cons(x, y)) ->
       cons(min(x, y), minsort(del(min(x, y), cons(x, y))))
     , min(x, nil()) -> x
     , min(x, cons(y, z)) -> if(le(x, y), min(x, z), min(y, z))
     , del(x, nil()) -> nil()
     , del(x, cons(y, z)) -> if(eq(x, y), z, cons(y, del(x, z)))}
  StartTerms: basic terms
  Strategy: innermost

Certificate: MAYBE

Proof:
  The input cannot be shown compatible

Arrrr..

POP*

Execution Time (secs)
0.097
Answer
MAYBE
InputMixed TRS minsort
MAYBE

We consider the following Problem:

  Strict Trs:
    {  le(0(), y) -> true()
     , le(s(x), 0()) -> false()
     , le(s(x), s(y)) -> le(x, y)
     , eq(0(), 0()) -> true()
     , eq(0(), s(y)) -> false()
     , eq(s(x), 0()) -> false()
     , eq(s(x), s(y)) -> eq(x, y)
     , if(true(), x, y) -> x
     , if(false(), x, y) -> y
     , minsort(nil()) -> nil()
     , minsort(cons(x, y)) ->
       cons(min(x, y), minsort(del(min(x, y), cons(x, y))))
     , min(x, nil()) -> x
     , min(x, cons(y, z)) -> if(le(x, y), min(x, z), min(y, z))
     , del(x, nil()) -> nil()
     , del(x, cons(y, z)) -> if(eq(x, y), z, cons(y, del(x, z)))}
  StartTerms: basic terms
  Strategy: innermost

Certificate: MAYBE

Proof:
  The input cannot be shown compatible

Arrrr..

POP* (PS)

Execution Time (secs)
0.086
Answer
MAYBE
InputMixed TRS minsort
MAYBE

We consider the following Problem:

  Strict Trs:
    {  le(0(), y) -> true()
     , le(s(x), 0()) -> false()
     , le(s(x), s(y)) -> le(x, y)
     , eq(0(), 0()) -> true()
     , eq(0(), s(y)) -> false()
     , eq(s(x), 0()) -> false()
     , eq(s(x), s(y)) -> eq(x, y)
     , if(true(), x, y) -> x
     , if(false(), x, y) -> y
     , minsort(nil()) -> nil()
     , minsort(cons(x, y)) ->
       cons(min(x, y), minsort(del(min(x, y), cons(x, y))))
     , min(x, nil()) -> x
     , min(x, cons(y, z)) -> if(le(x, y), min(x, z), min(y, z))
     , del(x, nil()) -> nil()
     , del(x, cons(y, z)) -> if(eq(x, y), z, cons(y, del(x, z)))}
  StartTerms: basic terms
  Strategy: innermost

Certificate: MAYBE

Proof:
  The input cannot be shown compatible

Arrrr..

Small POP*

Execution Time (secs)
0.074
Answer
MAYBE
InputMixed TRS minsort
MAYBE

We consider the following Problem:

  Strict Trs:
    {  le(0(), y) -> true()
     , le(s(x), 0()) -> false()
     , le(s(x), s(y)) -> le(x, y)
     , eq(0(), 0()) -> true()
     , eq(0(), s(y)) -> false()
     , eq(s(x), 0()) -> false()
     , eq(s(x), s(y)) -> eq(x, y)
     , if(true(), x, y) -> x
     , if(false(), x, y) -> y
     , minsort(nil()) -> nil()
     , minsort(cons(x, y)) ->
       cons(min(x, y), minsort(del(min(x, y), cons(x, y))))
     , min(x, nil()) -> x
     , min(x, cons(y, z)) -> if(le(x, y), min(x, z), min(y, z))
     , del(x, nil()) -> nil()
     , del(x, cons(y, z)) -> if(eq(x, y), z, cons(y, del(x, z)))}
  StartTerms: basic terms
  Strategy: innermost

Certificate: MAYBE

Proof:
  The input cannot be shown compatible

Arrrr..

Small POP* (PS)

Execution Time (secs)
0.103
Answer
MAYBE
InputMixed TRS minsort
MAYBE

We consider the following Problem:

  Strict Trs:
    {  le(0(), y) -> true()
     , le(s(x), 0()) -> false()
     , le(s(x), s(y)) -> le(x, y)
     , eq(0(), 0()) -> true()
     , eq(0(), s(y)) -> false()
     , eq(s(x), 0()) -> false()
     , eq(s(x), s(y)) -> eq(x, y)
     , if(true(), x, y) -> x
     , if(false(), x, y) -> y
     , minsort(nil()) -> nil()
     , minsort(cons(x, y)) ->
       cons(min(x, y), minsort(del(min(x, y), cons(x, y))))
     , min(x, nil()) -> x
     , min(x, cons(y, z)) -> if(le(x, y), min(x, z), min(y, z))
     , del(x, nil()) -> nil()
     , del(x, cons(y, z)) -> if(eq(x, y), z, cons(y, del(x, z)))}
  StartTerms: basic terms
  Strategy: innermost

Certificate: MAYBE

Proof:
  The input cannot be shown compatible

Arrrr..