MAYBE * Step 1: Failure MAYBE + Considered Problem: - Strict TRS: del(x,.(y,z)) -> if(=(x,y),z,.(y,del(x,z))) del(x,nil()) -> nil() min(x,.(y,z)) -> if(<=(x,y),min(x,z),min(y,z)) min(x,nil()) -> x msort(.(x,y)) -> .(min(x,y),msort(del(min(x,y),.(x,y)))) msort(nil()) -> nil() - Signature: {del/2,min/2,msort/1} / {./2,<=/2,=/2,if/3,nil/0} - Obligation: innermost runtime complexity wrt. defined symbols {del,min,msort} and constructors {.,<=,=,if,nil} + Applied Processor: MI {miKind = Automaton Nothing, miDimension = 3, miUArgs = NoUArgs, miURules = NoURules, miSelector = Nothing} + Details: Incompatible MAYBE