I can not find .net api for (elim-quantifiers (exists ((x Int)) (and (< t1 x) (< x t2)))) is it a Tactic? Could someone help me using .net API of Z3 to implement the following scripts?
(declare-const t1 Int)
(declare-const t2 Int)
(elim-quantifiers (exists ((x Int)) (and (< t1 x) (< x t2))))
Yes, you can use a tactic. Here is an example using the .NET API (I didn’t run this particular example so it may need some minor modification, but I use roughly the same in a program of mine).