0

I have downloaded the latest stable release of Z3 from GitHub, which is 4.8.7. With the CLI tool, when I write $ ./z3 -version I get Z3 version 4.8.7 - 64 bit, however when I do System.out.println(Version.getFullVersion()) in my Java code after (which has import com.microsoft.z3.*), I get Z3 4.8.6.0.

Is there a way to upgrade the Z3 Java bindings to 4.8.7, ie, the latest version?

Sam Chats
  • 2,271
  • 1
  • 12
  • 34

1 Answers1

1

I followed my own instructions :-) here, and with the resulting jar get:

System.out.println(Version.getFullVersion()) // Z3 4.8.7.0
David Soroko
  • 8,521
  • 2
  • 39
  • 51