Skip to content

Commit

Permalink
Merge branch 'fix-cuttingplane-typos' of https://github.com/emma58/pyomo
Browse files Browse the repository at this point in the history
 into fix-cuttingplane-typos
  • Loading branch information
emma58 committed Jan 15, 2021
2 parents 0905ffb + 108fd94 commit 2a4a61a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pyomo/gdp/plugins/cuttingplane.py
Original file line number Diff line number Diff line change
Expand Up @@ -461,7 +461,7 @@ class CuttingPlane_Transformation(Transformation):
))
CONFIG.declare('minimum_improvement_threshold', ConfigValue(
default=0.01,
domain=PositiveFloat,
domain=NonNegativeFloat,
description="Threshold value for difference in relaxed bigM problem "
"objectives used to decide when to stop adding cuts",
doc="""
Expand All @@ -472,7 +472,7 @@ class CuttingPlane_Transformation(Transformation):
))
CONFIG.declare('separation_objective_threshold', ConfigValue(
default=0.01,
domain=PositiveFloat,
domain=NonNegativeFloat,
description="Threshold value used to decide when to stop adding cuts: "
"If separation problem objective is not at least this quantity, cut "
"generation will terminate.",
Expand Down

0 comments on commit 2a4a61a

Please sign in to comment.