io.ksmt.solver.yices.KYicesNativeLibraryLoaderMacArm.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ksmt-yices-native-mac-arm Show documentation
Show all versions of ksmt-yices-native-mac-arm Show documentation
Kotlin API for various SMT solvers
package io.ksmt.solver.yices
import io.ksmt.utils.library.NativeLibraryLoaderArm
import io.ksmt.utils.library.NativeLibraryLoaderMac
import io.ksmt.utils.library.NativeLibraryLoaderUtils
@Suppress("unused")
class KYicesNativeLibraryLoaderMacArm :
KYicesNativeLibraryLoader,
NativeLibraryLoaderMac,
NativeLibraryLoaderArm {
override fun load() {
NativeLibraryLoaderUtils.loadLibrariesFromResources(this, libraries)
}
companion object {
private val libraries = listOf("libyices.2", "libyices2java")
}
}