Hello, I’ve been using the RQ library, but I believe I saved my patch with incorrect parameters because now I’m unable to open it. This error appears every time i try. Is there any way to recover my patch?
polifonia final.omp.tar.gz (92.8 KB)
Hello, I’ve been using the RQ library, but I believe I saved my patch with incorrect parameters because now I’m unable to open it. This error appears every time i try. Is there any way to recover my patch?
polifonia final.omp.tar.gz (92.8 KB)
dear zerocosaitam1
In order to open your patch do the following:
(defun k-list-add (x w ll rr list) )
(defun k-list-add (x w ll rr list)
(if (null list)
(list (list x w ll rr))
(progn
(assert (<= (weight-compare (second (first list)) w) 0))
(append (list (list x w ll rr)) list))))
Now for some reason in the library (or your parameters?) renders an error. I am not an expert to this library. The best is to ask the author what this function do. You can find it in the RQ library path:
src/algorithm/structure
Best
K
Thank you again, Karim!