:A variable x is defined as an int sort by (declare-const x Int)
Is there any method to convert the x into a bitvector sort? Because sometimes x involves bit operations such as &, |, ^ that int theory cannot handle.
I do not want to define the variable x as a bitvector in the beginning because I suppose the operations (e.g., +, -, *, /) supported by int theory except bit operations run much faster than those operations supported in bitvectors.
So actually, I want to covert int sort into bitvector sort or vice versa on demand.