YES

NOTE: input TRS is reduced

original is
   6: c1() -> c2()
   7: c0() -> c0()

reduced to
   6: c1() -> c2()

NOTE: input TRS is reduced

original is
   1: c0() -> c1()
   2: c0() -> c3()
   3: c1() -> c0()
   4: c2() -> c0()
   5: c2() -> c1()

reduced to
   1: c0() -> c1()
   2: c0() -> c3()
   3: c1() -> c0()
   5: c2() -> c1()

0.01