Skip to content

Commit 71daf2e

Browse files
committed
core.logic: unquote the lists
1 parent e571105 commit 71daf2e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

clojure/src/icfpc2025/main.clj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
(fn [other-room-index other-room]
5050
(if (= other-room-index room-index)
5151
; For room looping back to itself, all the doors should be short-circuited.
52-
'[
52+
[
5353
[(== (:room door) other-room-index)
5454
(== (:door door) door-index)]
5555
]
@@ -61,7 +61,7 @@
6161
(fn [other-door-index other-door]
6262
; If the current door connects to the other room, corresponding door of the other room should
6363
; connect to here.
64-
'[(== (:room door) other-room-index)
64+
[(== (:room door) other-room-index)
6565
(== (:door door) other-door-index)
6666
(== (:room other-door) room-index)
6767
(== (:door other-door) door-index)]

0 commit comments

Comments
 (0)