Skip to content

Commit

Permalink
Cleaned code.
Browse files Browse the repository at this point in the history
  • Loading branch information
julosaure committed Sep 26, 2012
1 parent ed7e8fe commit 66864c2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/decloder/translator.clj
Expand Up @@ -148,10 +148,10 @@
) )


(if (< (count cur-stack) MAX_HYPO_PER_STACK) (if (< (count cur-stack) MAX_HYPO_PER_STACK)
(let [toto (println "recur cur-stack > 0, count2 " (count cur-stack)) (let [_ (println "recur cur-stack > 0, count2 " (count cur-stack))
top-hypo (if (nil? prev-stack) nil (key (first prev-stack))) top-hypo (if (nil? prev-stack) nil (key (first prev-stack)))
cur-stack_ (extend-hypo model cur-stack top-hypo src-token) cur-stack_ (extend-hypo model cur-stack top-hypo src-token)
tata (println "count3 " (count cur-stack_))] _ (println "count3 " (count cur-stack_))]
(recur (assoc stacks_ pos cur-stack_) (recur (assoc stacks_ pos cur-stack_)
cur-stack_ cur-stack_
prev-stack-pos prev-stack-pos
Expand Down

0 comments on commit 66864c2

Please sign in to comment.