classmethod AMPL.getConstraints()
用法
names = getConstraints
说明
names = getConstraints
获取当前定义的约束的
。一旦获得对列表的引用,就会自动与 AMPL 解释器保持同步。EntityList
示例
获取模型中定义的约束列表:
ampl.eval('var x{1..3}; c{i in 1..2}: x[i] <= i; c2: x[3] <= 10;');
names = ampl.getConstraints()
这将给出:
names =
List of defined constraints:
c2
c
为了证明保持同步,执行:
ampl.eval('c3: x[1]<=0;')
names
然后会给出:
names =
List of defined constraints:
c2
c
c3
相关用法
- Matlab AMPL AMPL.getSets用法及代码示例
- Matlab AMPL AMPL.getObjectives用法及代码示例
- Matlab AMPL AMPL.getValue用法及代码示例
- Matlab AMPL AMPL.getVariables用法及代码示例
- Matlab AMPL AMPL.getParameters用法及代码示例
- Matlab AMPL AMPL.getData用法及代码示例
- Matlab AMPL AMPL.getOption用法及代码示例
- Matlab AMPL AMPL.getEntity用法及代码示例
- Matlab AMPL AMPL.eval用法及代码示例
- Matlab AMPL AMPL.close用法及代码示例
- Matlab AMPL AMPL.solve用法及代码示例
- Matlab AMPL AMPL.initializeEvents用法及代码示例
- Matlab AMPL AMPL.expand用法及代码示例
- Matlab AMPL AMPL.setOption用法及代码示例
- Matlab AMPL AMPL.reset用法及代码示例
- Matlab AMPL AMPL.display用法及代码示例
- Matlab AMPL AMPL.isRunning用法及代码示例
- Matlab AMPL AMPL.setData用法及代码示例
- Matlab AMPL AMPL.show用法及代码示例
- Matlab AMPL AMPL.read用法及代码示例
注:本文由纯净天空筛选整理自ampl.com大神的英文原创作品 getConstraints。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。