Is there a way to do a modulo operation with z3 c++ api with integers?
I'm trying to do something like this:
var = context->int_const("foo");
var = var + 1;
expr = var % 5;
It seems there is only a modulo operation for bitvectors?
Am I missing something?
Best Tobias