Categories – SRS
This category is concerned with confluence of string rewrite systems.
Format
The input is a string rewrite system, specified in the specified in the ARI TRS format. The question to be answered is whether the string rewrite system is confluent.
Examples
-
(format TRS) (fun f 1) (fun g 1) (rule (f (f x)) (g x))
The correct answer isNO
. -
(format TRS) (fun f 1) (rule (f (f x)) x) (rule (f x) (f (f x)))
The correct answer isYES
.
Problem Selection
Problems are selected from those in the ARI database with the 'srs' tag.