io.ksmt.solver.cvc5.KCvc5NativeLibraryLoaderLinuxX64.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ksmt-cvc5-native-linux-x64 Show documentation
Show all versions of ksmt-cvc5-native-linux-x64 Show documentation
Kotlin API for various SMT solvers
package io.ksmt.solver.cvc5
import io.ksmt.utils.library.NativeLibraryLoaderLinux
import io.ksmt.utils.library.NativeLibraryLoaderUtils
import io.ksmt.utils.library.NativeLibraryLoaderX64
@Suppress("unused")
class KCvc5NativeLibraryLoaderLinuxX64 :
KCvc5NativeLibraryLoader,
NativeLibraryLoaderLinux,
NativeLibraryLoaderX64 {
override fun load() {
NativeLibraryLoaderUtils.loadLibrariesFromResources(this, libraries)
}
companion object {
private val libraries = listOf("libcvc5", "libcvc5jni")
}
}