You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The transform example in README throws an error. First problem seems to be that it was not passed data. But even after adding that I get this exception:
java.lang.ClassCastException: com.tbaldridge.odin.unification.LVar cannot be cast to java.lang.Number
at clojure.lang.Numbers.equiv(Numbers.java:208)
at com.tbaldridge.odin$update.invokeStatic(odin.clj:120)
at com.tbaldridge.odin$update.invoke(odin.clj:118)
The text was updated successfully, but these errors were encountered:
Do you mean to use == in the 1-arity version of com.tbaldridge.odin/update? Changing to = does fix this particular issue, though don't know if that breaks something else.
joinr
pushed a commit
to joinr/odin
that referenced
this issue
Oct 30, 2018
Bumped version to account for clojure
1.9 and spec.alpha ns. Posted repo
pulled in clojure.spec, which is
currently clojure.spec.alpha.
Bumped cljs to latest 1.9 series
release.
Applied fix to odin/update per
per halgari#10
to change from == to = . This makes the
transform example work.
Also patched the readme example so it
works.
The
transform
example in README throws an error. First problem seems to be that it was not passeddata
. But even after adding that I get this exception:java.lang.ClassCastException: com.tbaldridge.odin.unification.LVar cannot be cast to java.lang.Number
at clojure.lang.Numbers.equiv(Numbers.java:208)
at com.tbaldridge.odin$update.invokeStatic(odin.clj:120)
at com.tbaldridge.odin$update.invoke(odin.clj:118)
The text was updated successfully, but these errors were encountered: