【问题标题】:SCIP: setting absolute toleranceSCIP:设置绝对容差
【发布时间】:2015-12-18 03:23:32
【问题描述】:

我想要求 SCIP 在指定的绝对容差范围内解决问题,即,只要上限和下限之间的差异足够小,它就应该退出。控制这种公差的参数是什么?

奇怪的是,我一直无法通过查看all SCIP parameters 的列表找到它。

【问题讨论】:

    标签: scip


    【解决方案1】:

    他们在这里:

    # solving stops, if the relative gap = |(primalbound - dualbound)/dualbound| is below the given value
    # [type: real, range: [0,1.79769313486232e+308], default: 0]
    limits/gap = 0
    
    # solving stops, if the absolute gap = |primalbound - dualbound| is below the given value
    # [type: real, range: [0,1.79769313486232e+308], default: 0]
    limits/absgap = 0
    

    “容差”通常是指允许违反计算的解决方案,即允许的不可行量。显然,您正在寻找“间隙限制”。

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 1970-01-01
      • 2014-12-08
      • 1970-01-01
      • 1970-01-01
      • 2022-08-11
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多