gecode icon indicating copy to clipboard operation
gecode copied to clipboard

BoolExpr should be initializable with C++ boolean values

Open yurivict opened this issue 3 years ago • 0 comments

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.

yurivict avatar Feb 12 '22 09:02 yurivict