This code works: ``` LinIntExpr e = 0; ``` but this code fails: ``` BoolExpr e = false; ``` It seems that it should be possible to initialize BoolExpr with a C++ boolean value.
This code works:
but this code fails:
It seems that it should be possible to initialize BoolExpr with a C++ boolean value.