judovana
judovana
> https://github.com/ezylang/EvalEx-big-math > > How about delegating `BigDecimal` operations to other extension libraries? (e.g. `EvalEx EvalEx-big-math`) Well there is plenty of math libraries, each with its pros and cons. Some...
Thanx for fixing me to BigDecimal. My typo. Had BigDecimal in mind.
Can you provide examples of PolynomialExpression please? The BigMathExpression is interesting idea. Maybe MathExpression can have as parameter factory method, which will be responsible for sting->number convertions? like `T toNumber(String)`...
I have bigger concerns about `double` x `Double`. Which is killing the idea of `generic` MathExpression. Still worthy to investigate in future. I personally would like to see whole ParserNG...
Yup. Sure. Crossing fingers for you, and agreeing on double x Double.
It seems that on windows, the asm-tools are not on classpath. The windows QA is now missing :( You can see the full classpath in the star.bat Canyou verify it...
It seems it is no longer happening in 8.0. May you check?
Hello 63 is java 19. So the class you are attempting to compile back to running jvm, is compield by jdk19( - or have some jdk19 depndence?). Your jrd seesmto...
Hello! Have it helped? Maybe worthy to highlight, taht wwe are speakig about three JVMs here. JVM where application runs, JVM which runs j-r-d, and the JVM which created application....
``` a=`mktemp -d` cd $a wget https://github.com/pmikova/java-runtime-decompiler/releases/download/7.0-snapshot.9/runtime-decompiler-7.0-SNAPSHOT.9-with-decompilers.tar.xz tar -xf runtime-decompiler-7.0-SNAPSHOT.9-with-decompilers.tar.xz vim SwingTester.java /usr/lib/jvm/java-17-openjdk/bin/javac -cp . SwingTester.java /usr/lib/jvm/java-17-openjdk/bin/java -cp . SwingTester & JAVA_HOME=/usr/lib/jvm/java-19-openjdk runtime-decompiler-7.0-SNAPSHOT.9-with-decompilers/start.sh ``` Now, note, that this is clean...