Module miplearn.components.steps.relax_integrality

Expand source code
#  MIPLearn: Extensible Framework for Learning-Enhanced Mixed-Integer Optimization
#  Copyright (C) 2020, UChicago Argonne, LLC. All rights reserved.
#  Released under the modified BSD license. See COPYING.md for more details.

import logging

from miplearn.components.component import Component

logger = logging.getLogger(__name__)


class RelaxIntegralityStep(Component):
    """
    Component that relaxes all integrality constraints before the problem is solved.
    """

    def before_solve(self, solver, instance, _):
        logger.info("Relaxing integrality...")
        solver.internal_solver.relax()

    def after_solve(
        self,
        solver,
        instance,
        model,
        stats,
        training_data,
    ):
        return

Classes

class RelaxIntegralityStep (*args, **kwargs)

Component that relaxes all integrality constraints before the problem is solved.

Expand source code
class RelaxIntegralityStep(Component):
    """
    Component that relaxes all integrality constraints before the problem is solved.
    """

    def before_solve(self, solver, instance, _):
        logger.info("Relaxing integrality...")
        solver.internal_solver.relax()

    def after_solve(
        self,
        solver,
        instance,
        model,
        stats,
        training_data,
    ):
        return

Ancestors

Inherited members