* Presumably, not all variables are instantiated.
*/
public ESat isSatisfied() {
int OK = 0;
for (int c = 0; c < cIdx; c++) {
ESat satC = cstrs[c].isSatisfied();
if (ESat.FALSE == satC) {
if (LoggerFactory.getLogger("solver").isErrorEnabled()) {
LoggerFactory.getLogger("solver").error("FAILURE >> {} ({})", cstrs[c].toString(), satC);
}
return ESat.FALSE;