Sciss
Sciss
I'm running the minimalist example from [here](https://de.wikipedia.org/wiki/Ungarische_Methode#Beispiel_1): ```python import numpy import LAPJV a = numpy.array([[1, 1, 1, 2], [3, 2, 4, 1], [4, 4, 2, 4], [2, 3, 3, 3]])...
Looking at https://github.com/daoliker/viterbi/blob/master/viterbi_decoder.cc#L35 shouldn't that be hid_seq[t] = psi[t + 1][hid_seq[t + 1]]; it seems off-by-one for my glance; especially note that this way `hid_seq[0]` will always be zero which...
I'm getting this error when launching the jar coming out of `sbt assembly`: ``` Exception in thread "JavaFX Application Thread" netscape.javascript.JSException: TypeError: undefined is not a function at com.sun.webkit.dom.JSObject.fwkMakeException(JSObject.java:146) at...
Hi there, interesting project, I'm trying to explore following https://maximekjaer.github.io/tf-dotty/docs/getting-started.html , but there are some issues. First of all, when you check out the published versions on Sonatype, these are...
For example, in Mellite: ``` git clone https://github.com/Sciss/Mellite.git cd Mellite git checkout v2.40.0 sbt mellite-app/dumpLicenseReport ``` gives ``` cat app/target/license-reports/mellite-app-licenses.md | grep AGPL GPL | [AGPL v3+](http://www.gnu.org/licenses/agpl-3.0.txt) | de.sciss #...
Issue #121 - which is closed - suggested that sbt-pgp 1.1.1 would fix this problem: > java.io.IOException: destination file exists and overwrite == false Unfortunately that doesn't seem to be...
Thank you for this project, it works nicely! Do you happen to know if there is a trick to export methods so that they can be passed to `emcc`'s `-s...
Hi there. I notice this project is used within https://maximekjaer.github.io/tf-dotty/docs/architecture - but it seems odd, since scalapy-tensorflow is built for Scala 2.13 but not 3. Are you still maintaining this...
Hi Dave. Nice project! I had to move the main class away to be able to use macros, sbt wouldn't compile otherwise. I also updated the library versions. I have...
https://github.com/RodolfoPichardo/LinKernighanTSP/blob/55b6056a16ef892eb54eaaa7c39948ea09a8c8ca/src/LinKernighan.java#L320 I think this is a bug, because `getDistance` returns `double` precision and somehow the java compiler doesn't complain about `gain += getDistance(t2, t3) - getDistance(t1,t2);` even though here is...