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