Consider the following grammar:
- S → A
- A → S | a
This grammar would have an accept/reduce conflict in the SLR(1) parsing table in the state with the following kernel when reading the end symbol($):
- S' → S.
- A → S.
Is this conflict considered a shift/reduce or a reduce/reduce conflict?
Additionally, since the parsing table contains this conflict, is it correct to say that the grammar is not SLR(1) and therefore no SRL(1) grammar can have accept/reduce conflicts?