-3

I would like to ask , How to Integrate Java with SMT Z3 solver ? It would be great if there will be described not only theoretical questions, but also some implementation experience.

Shira'H
  • 33
  • 1
  • Basically you ask people to do the research and work for you. – fonZ Jan 25 '13 at 18:22
  • There is plenty of information about those subjects on the internet. You can do research, try out some things and if you encounter specific problems you can ask a question. Like this question for example: http://stackoverflow.com/questions/12883107/equality-for-constants-in-z3-smt-solver – fonZ Jan 25 '13 at 18:31
  • you mean ,, it's doable ? thank you very much indeed for a help – Shira'H Jan 25 '13 at 18:33
  • probably but what im saying is that you should do some research and try some things out. – fonZ Jan 25 '13 at 18:35
  • 1
    okay, if there are any problems , I will drop it here – Shira'H Jan 25 '13 at 18:37

1 Answers1

3

Not sure what kind of integration you are looking for, but I thought I should mention that we are currently working on a Java API for Z3. This can be previewed in the unstable branch of Z3, obtained at Z3 Latest Source Code. This is not distributed in any binary packages yet, so you would have to build the source code yourself. It basically comes as a jar package (+DLL) and the source code comes with an example of how to use it in examples/java.

Christoph Wintersteiger
  • 8,234
  • 1
  • 16
  • 30
  • I have a set of array-lists < >. I want to write a constraint using Z3 to retrieve a data from these array-lists – Shira'H Jan 25 '13 at 19:32