func operatorNumGt(ctx *context.Context, constraint api.Constraint) (bool, error) {
    return operatorNum(ctx, constraint, func(context *big.Float, constraint *big.Float) bool {
        return context.Cmp(constraint) > 0
    })
}