ratosh / pirarucu

A Kotlin Chess Engine
GNU General Public License v3.0
36 stars 3 forks source link

Hash #130

Closed scs-ben closed 5 years ago

scs-ben commented 5 years ago

This is for TCEC setoption name Hash value 16384 Exception in thread "main" java.lang.OutOfMemoryError: Java heap space at pirarucu.hash.TranspositionTable.resize(TranspositionTable.kt:47) at pirarucu.uci.InputHandler.setOption(InputHandler.kt:47) at pirarucu.uci.UciInput.process(UciInput.kt:24) at pirarucu.MainKt.main(Main.kt:56)

ratosh commented 5 years ago

It is a limitation from the JVM, can you start it with the argument -Xms16384m?

scs-ben commented 5 years ago

-Xms16400m works

ratosh commented 5 years ago

Nice! Thanks!