Skip to content

Commit

Permalink
Corrected typo in generated-sublattice
Browse files Browse the repository at this point in the history
  • Loading branch information
tomhanika committed Jun 6, 2024
1 parent 3492d4b commit 47af04c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/clojure/conexp/fca/lattices.clj
Original file line number Diff line number Diff line change
Expand Up @@ -468,7 +468,7 @@
(loop [X generators]
(let [X-new (clojure.set/union (into #{} (for [a X b X] (lat-join a b)))
(into #{} (for [a X b X] (lat-meet a b))))]
(if (= X X-new) (make-lattice X lat-meet lat-join
(if (= X X-new) (make-lattice X lat-meet lat-join)
(recur X-new)))))
)

Expand Down

0 comments on commit 47af04c

Please sign in to comment.