I am working on the hand evaluation for poker simulation software and found e poker-eval-java branch of
http://gna.org/projects/pokersource/, described here:
http://www.codingthewheel.com/archiv...kersource_saie
The library uses JNI to communicate with DLL's. For calculcating range vs range equities I use the method SAIE.FlopGameSAIE and get the following response times:
AA vs KK : 3 sec
AKs AK JJ+ vs QQ+ : 45 sec
What performance can I expect? Is the overhead using Java too high for range comparisons like I did here?
Are there ways to configure JVM or DLLs, or maybe use another JVM?
I run Win 7, JDK 1.7.17 on a 2,93GHz machine with 16GB RAM.
All tips are greatly appreciated!