The system is accessible function passing by a sort ordering that equates all sorts. We start by computing the following initial DP problem: P1. (1) init#(F, X{8}) => fsum#(F, X{9}) (2) init#(F, X{8}) => map#(fsum(F), X{8}) (3) map#(F, cons(H, T)) => map#(F, T) (4) fsum#(F, N) => fsum#(F, N - 1) | N != 0 ***** We apply the Constraint Modification Processor on P1. We replace fsum#(F, N) => fsum#(F, N - 1) | N != 0 by: fsum#(F, N) => fsum#(F, N - 1) | N > 0 fsum#(F, N) => fsum#(F, N - 1) | N < 0 This yields: P2. (1) init#(F, X{8}) => fsum#(F, X{9}) (2) init#(F, X{8}) => map#(fsum(F), X{8}) (3) map#(F, cons(H, T)) => map#(F, T) (4) fsum#(F, N) => fsum#(F, N - 1) | N > 0 (5) fsum#(F, N) => fsum#(F, N - 1) | N < 0 ***** We apply the Graph Processor on P2. Considering the 3 SCCs, this DP problem is split into the following new problems. P3. (1) fsum#(F, N) => fsum#(F, N - 1) | N > 0 P4. (1) fsum#(F, N) => fsum#(F, N - 1) | N < 0 P5. (1) map#(F, cons(H, T)) => map#(F, T) ***** We apply the Integer Function Processor on P3. We use the following integer mapping: J(fsum#) = arg_2 We thus have: (1) N > 0 |= N > N - 1 (and N >= 0) All DPs are strictly oriented, and may be removed. Hence, this DP problem is finite. ***** No progress could be made on DP problem P4.