We consider universal computability of the LCTRS with only rule scheme Calc: Signature: f :: Int -> A g :: Int -> A h :: Int -> A Rules: f(x) -> f(x - 1) | x >= 0 g(y) -> h(y) h(y) -> g(y + 1) | y <= 0 The system is accessible function passing by a sort ordering that equates all sorts. We start by computing the initial DP problem D1 = (P1, R UNION R_?, f, c), where: P1. (1) f#(x) => f#(x - 1) | x >= 0 (2) g#(y) => h#(y) (3) h#(y) => g#(y + 1) | y <= 0 ***** We apply the Graph Processor on D1 = (P1, R UNION R_?, f, c). We compute a graph approximation with the following edges: 1: 1 2: 3 3: 2 There are 2 SCCs. Processor output: { D2 = (P2, R UNION R_?, f, c) ; D3 = (P3, R UNION R_?, f, c) }, where: P2. (1) f#(x) => f#(x - 1) | x >= 0 P3. (1) g#(y) => h#(y) (2) h#(y) => g#(y + 1) | y <= 0 ***** We apply the Integer Function Processor on D2 = (P2, R UNION R_?, f, c). We use the following integer mapping: J(f#) = arg_1 + 1 We thus have: (1) x >= 0 |= x + 1 > x - 1 + 1 (and x + 1 >= 0) All DPs are strictly oriented, and may be removed. Hence, this DP problem is finite. Processor output: { }. ***** We apply the Theory Arguments Processor on D3 = (P3, R UNION R_?, f, c). We use the following theory arguments function: g# : [1] h# : [1] Processor output: { D4 = (P4, R UNION R_?, f, c) ; D5 = (P5, R UNION R_?, f, c) }, where: P4. (1) g#(y) => h#(y) { y } (2) h#(y) => g#(y + 1) | y <= 0 P5. (1) g#(y) => h#(y) ***** No progress could be made on DP problem D4 = (P4, R UNION R_?, f, c).