MAYBE

Problem:
 *(i(x),x) -> 1()
 *(1(),y) -> y
 *(x,0()) -> 0()
 *(*(x,y),z) -> *(x,*(y,z))

Proof:
 DP Processor:
  DPs:
   *#(*(x,y),z) -> *#(y,z)
   *#(*(x,y),z) -> *#(x,*(y,z))
  TRS:
   *(i(x),x) -> 1()
   *(1(),y) -> y
   *(x,0()) -> 0()
   *(*(x,y),z) -> *(x,*(y,z))
  Restore Modifier:
   DPs:
    *#(*(x,y),z) -> *#(y,z)
    *#(*(x,y),z) -> *#(x,*(y,z))
   TRS:
    *(i(x),x) -> 1()
    *(1(),y) -> y
    *(x,0()) -> 0()
    *(*(x,y),z) -> *(x,*(y,z))
   SCC Processor:
    #sccs: 1
    #rules: 2
    #arcs: 4/4
    DPs:
     *#(*(x,y),z) -> *#(y,z)
     *#(*(x,y),z) -> *#(x,*(y,z))
    TRS:
     *(i(x),x) -> 1()
     *(1(),y) -> y
     *(x,0()) -> 0()
     *(*(x,y),z) -> *(x,*(y,z))
    Open