Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
(defn matrix-diagonals-odd-p
  ([matrix] (matrix-diagonals-odd-p matrix 0))
  ([matrix offset]
     (let [len (alength matrix)]
       (if (> (+ (bit-shift-right len 1) (bit-and len 1)) offset)
         (if (= (+ (bit-and (get (get matrix offset) offset) 1)
                   (bit-and (get (get matrix (- len 1 offset)) (- len 1 offset)) 1)
                   (bit-and (get (get matrix offset) (- len 1 offset)) 1)
                   (bit-and (get (get matrix (- len 1 offset)) offset) 1)) 4)
         (recur matrix (inc offset))
         false) true))))

And I'm getting java.lang.UnsupportedOperationException: Can only recur from tail position But this is tail position. Why / what gives?

share|improve this question
This looks ok to me. Could you double check this is actually what you're testing? Could the error actually be in alength? – Adrian Mouat May 9 '12 at 20:34
That's a very small file, and that's the only place where I'm calling recur. But! I've moved this function on top (i.e. few lines above) the other function which was calling it, and the error vanished - mystery :S – wvxvw May 9 '12 at 23:06
Ok, the best way to develop Clojure is interactively, with a REPL, rather than compiling and running Java. I suspect you were just accidentally running an old version. – Adrian Mouat May 10 '12 at 10:03

1 Answer

This is works for me with Clojure 1.3 and 1.4. Maybe there is other functions in the same namespace that causing trouble?

share|improve this answer
Yes, looks like that what it was. I'm totally new to Clojure, so I'm not going to investigate it any further for now. Probably a decompile would show - but I'm also using v 1.1 (what was in the PPA). Probably some old bug, not worth paying attention to. – wvxvw May 9 '12 at 23:09

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.