We consider universal computability of the LCSTRS with only rule scheme Calc: Signature: l1 :: Int -> Int -> A (private) l2 :: Int -> Int -> A (private) start :: Int -> A Rules: start(x) -> l1(x, 0) | x = x l1(x, y) -> l2(x, y) | x > y l2(x, y) -> l1(x, y + 1) | x = x /\ y = y 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_?, i, c), where: P1. (1) start#(x) => l1#(x, 0) | x = x (2) l1#(x, y) => l2#(x, y) | x > y (private) (3) l2#(x, y) => l1#(x, y + 1) | x = x /\ y = y (private) ***** We apply the Graph Processor on D1 = (P1, R UNION R_?, i, c). We compute a graph approximation with the following edges: 1: 2 2: 3 3: 2 There is only one SCC, so all DPs not inside the SCC can be removed. Processor output: { D2 = (P2, R UNION R_?, i, c) }, where: P2. (1) l1#(x, y) => l2#(x, y) | x > y (2) l2#(x, y) => l1#(x, y + 1) | x = x /\ y = y ***** We apply the Usable Rules Processor on D2 = (P2, R UNION R_?, i, c). We obtain 0 usable rules (out of 3 rules in the input problem). Processor output: { D3 = (P2, {}, i, c) }. ***** No progress could be made on DP problem D3 = (P2, {}, i, c).