addSmtlibFile method
Implementation
void addSmtlibFile(File file) {
final pathPtr = file.path.toNativeUtf8();
try {
_c._z3.solver_from_file(_solver, pathPtr.cast());
} finally {
malloc.free(pathPtr);
}
}
void addSmtlibFile(File file) {
final pathPtr = file.path.toNativeUtf8();
try {
_c._z3.solver_from_file(_solver, pathPtr.cast());
} finally {
malloc.free(pathPtr);
}
}