<div dir="ltr"><div>I have a function that I believe terminates but Agda disagrees.</div><div><br></div><div><span style="font-family:monospace">hasDoubleLetter : List Char → Bool<br>hasDoubleLetter [] = false<br>hasDoubleLetter (c₠∷ cs@(câ‚‚ ∷ _)) with câ‚ == câ‚‚<br>... | yes _ = true<br>... | no  _ = hasDoubleLetter cs   -- This is problematic.<br>hasDoubleLetter (_ ∷ []) = false</span></div><div><br></div><div>Because `hasDoubleLetter` is recursively applied to a "smaller" structure (cs), I think it should be considered terminating. Am I missing something?<br></div><div><br></div><div>FWIW the error message is like below.</div><div><br></div><div><span style="font-family:monospace">Termination checking failed for the following functions:<br> hasDoubleLetter<br>Problematic calls:<br> hasDoubleLetter (c₠∷ câ‚‚ ∷ xs) | (EqChar Eq.== câ‚) câ‚‚<br> hasDoubleLetter (câ‚‚ ∷ xs)<br></span><br></div></div>