mirror of
https://github.com/Veridise/Picus.git
synced 2026-04-19 03:00:11 -04:00
In basis2 lemma, set-remove (which removes a single element) is used instead of set-subtract (which removes a set of elements). Previously, Picus gets away with this incorrect result because linear lemma will "clean up" afterward by syncing known set and unknown set. However, in the PR #18, we no longer do this syncing, thus uncovering this issue. This commit fixes the problem.