The current version of Z3Context has no mkEnumType method, or EnumSort class.
The Java API has a corresponding method,
and so does the underlying Native class used by ScalaZ3 (at least when I compiled it):
protected static native long INTERNALmkEnumerationSort(long var0, long var2, int var4, long[] var5, long[] var6, long[] var7);
Is there another preferred way to create an enum type?
The current version of
Z3Context
has nomkEnumType
method, orEnumSort
class. The Java API has a corresponding method, and so does the underlyingNative
class used byScalaZ3
(at least when I compiled it):Is there another preferred way to create an enum type?