* f
* This method implements the function logic of the CAL function Cal.Core.Prelude.greaterThanEqualsInt
*/
public final RTValue f(final RTResultFunction $rootNode, final RTExecutionContext $ec) throws CALExecutorException {
// Arguments
RTValue $x1$L = $rootNode.getArgValue();
RTValue $x0$L = $rootNode.prevArg().getArgValue();
// Release the fields in the root node to open them to garbage collection
$rootNode.clearMembers();
return
f2S(
$x0$L.evaluate($ec).getOrdinalValue(),
$x1$L.evaluate($ec).getOrdinalValue(),
$ec);
}