com.netsensia.rivalchess.engine.search.DataClasses.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rivalchess-engine Show documentation
Show all versions of rivalchess-engine Show documentation
The engine used by Rival Chess
package com.netsensia.rivalchess.engine.search
class HashProbeResult constructor (@JvmField val move: Int, @JvmField val window: Window, @JvmField val bestPath: SearchPath?)
class Window(@JvmField var low: Int, @JvmField var high: Int) {}
class AspirationSearchResult constructor (@JvmField val path: SearchPath?, @JvmField val low: Int, val high: Int)
class RecaptureExtensionResponse constructor (@JvmField val extend: Int, @JvmField val captureSquare: Int)