Bug fix: `case class Node(children: List[Node])`
Compare changes
GitLab upgrade to version 17.6.2 on Monday (https://go.epfl.ch/CHG0045788) may have caused issues for users using password authentication for git push and similar. If that is your case, and especially if you are in a pinch w.r.t. assignment deadlines, please reach out directly to gitlab-admins@groupes.epfl.ch, Cc 1234@epfl.ch . Meanwhile, you can work around the issue by using an SSH key pair: https://gitlab.epfl.ch/help/user/ssh.md . Watch this space for updates and further instructions.
Created by: MikaelMayer
The previous hasInstance function was buggy and cannot cover the following case:
case class Node(children: List[Node])
because it originally unwrapped List[Node]
to Set(List[Node], Node)
and thus was blocked because Node was re-used.