; @author Jonas Schöpf
; @author Aart Middeldorp
; @doi 10.1007/978-3-031-38499-8_27
; Example 7
(format LCTRS :smtlib 2.6)
(theory Ints)

(fun f (-> Int Int Int))
(fun g (-> Int Int Int))
(fun h (-> Int Int))

(rule (f x y) (g x (+ 1 1)))
(rule (f x y) (h (g y (+ 1 1))))
