Skip to content

Commit

Permalink
v+ and v- are now mere aliases for core.logic's nonlvaro and lvaro
Browse files Browse the repository at this point in the history
  • Loading branch information
cderoove committed Feb 4, 2013
1 parent f82fb40 commit 5364fff
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Binary file removed EkekoPlugin/libs/core.logic-0.8.0-beta5.jar
Binary file not shown.
6 changes: 3 additions & 3 deletions EkekoPlugin/src/damp/ekeko/logic.clj
Expand Up @@ -3,7 +3,7 @@
:author "Coen De Roover"}
damp.ekeko.logic
(:refer-clojure :exclude [==])
(:use [clojure.core.logic]))
(:use [clojure.core.logic]))

(defn-
ekeko-lvar-sym?
Expand Down Expand Up @@ -89,13 +89,13 @@
v+
"Non-relational. Verifies that logic variable v is ground."
[v]
`(project [~v] (succeeds (not (lvar? ~v)))))
`(nonlvaro ~v))

(defmacro
v-
"Non-relational. Verifies that logic variable v is not ground."
[v]
`(project [~v] (succeeds (lvar? ~v))))
`(lvaro ~v))


(defmacro
Expand Down

0 comments on commit 5364fff

Please sign in to comment.