-2

I want to know how to use SMT Solver in CBMC. Generally we use minisat solver (SAT Solver) for constraint Solving in cbmc. But I want to use SMT Solvers for constraint solving in CBMC. I have gone through some references regarding the same, but didn't get a clear picture on the same. Is there any command to use SMT solver in CBMC ? Please help me with this.

Julie
  • 1
  • 5

1 Answers1

0

Let’s say you want to use z3. Should simply be a matter of:

$ cbmc --z3 prog.c

assuming you already installed z3 beforehand. What have you tried?

alias
  • 28,120
  • 2
  • 23
  • 40