public void arrayExecute(DTState state) throws RulesException {
IRObject o2 = state.datapop();
IRObject o1 = state.datapop();
boolean r = false;
try{
r = o1.booleanValue() == o2.booleanValue();
}catch(RulesException e){} // Ignore any failures, and simply fail.
state.datapush(RBoolean.getRBoolean(r) );
}
}