; @origtpdbfilename ./TRS/SchneiderKamp/trs/thiemann40.trs ; @xtcfilename "./TRS_Standard/AProVE_07/thiemann40.xml" (format TRS) (fun nonZero 1) (fun |0| 0) (fun false 0) (fun s 1) (fun true 0) (fun p 1) (fun id_inc 1) (fun random 1) (fun rand 2) (fun if 3) (rule (nonZero |0|) false) (rule (nonZero (s x)) true) (rule (p |0|) |0|) (rule (p (s x)) x) (rule (id_inc x) x) (rule (id_inc x) (s x)) (rule (random x) (rand x |0|)) (rule (rand x y) (if (nonZero x) x y)) (rule (if false x y) y) (rule (if true x y) (rand (p x) (id_inc y)))