0

I'm currently working on a model counting approach with the SMT solver Z3. Does anyone know how Z3 does generate the models for e.g. the sort of linear arithmetics (LIA)? Which algorithm is used and where can I find the source code for that algorithm?

Thanks, Yannic

Yannic
  • 15
  • 3

1 Answers1

0

The source code for Z3 is on https://github.com/z3prover/z3.git. There are a couple of arithmetic solvers. Z3 commonly uses dual Simplex.

Nikolaj Bjorner
  • 8,229
  • 14
  • 15