I read about SAT and SMT. I always wonder how it can be applied in real programming scenario.
Here is an example:
Given that var a = 20; var b = a;
are true, we want to know if b = 20
is true or false.
How should I turn it into boolean algebra expressions and apply SAT?