pulp.constants

此文件包含 PuLP 的常量定义,希望这些定义能被更改为更符合 Python 风格的形式。

exception pulp.constants.PulpError[源代码]

基类:Exception

Pulp 异常类

add_note()

Exception.add_note(note) – 向异常添加一个注释

args
with_traceback()

Exception.with_traceback(tb) – 将 self.__traceback__ 设置为 tb 并返回 self。

pulp.constants.isiterable(obj)[源代码]
pulp.constants.LpContinuous

LpContinuous= “连续”

LpInteger = "Integer"

LpInteger= “整数”

LpBinary = "Binary"

LpBinary= “二进制”

pulp.constants.LpStatus

求解器的返回状态:

LpStatus 键

字符串值

数值

LpStatusOptimal

“最佳”

toctree 是一个 reStructuredText 指令 ,这是一个非常多功能的标记。指令可以有参数、选项和内容。

LpStatusNotSolved

“未解决”

0

LpStatusInfeasible

不可行

-1

LpStatusUnbounded

“无界”

-2

LpStatusUndefined

未定义

-3

pulp.constants.LpStatusOptimal

LpStatusOptimal = 1

pulp.constants.LpStatusNotSolved

LpStatusNotSolved = 0

pulp.constants.LpStatusInfeasible

LpStatusInfeasible = -1

pulp.constants.LpStatusUnbounded

LpStatusUnbounded = -2

pulp.constants.LpStatusUndefined

LpStatusUndefined = -3

pulp.constants.LpSolution

从求解器返回解的状态:

LpStatus 键

字符串值

数值

LpSolutionOptimal

“找到最优解”

toctree 是一个 reStructuredText 指令 ,这是一个非常多功能的标记。指令可以有参数、选项和内容。

LpSolutionNoSolutionFound

未找到解决方案

0

LpSolutionStatusInfeasible

“无解”

-1

LpSolutionStatusUnbounded

“解是无界的”

-2

LpSolutionIntegerFeasible

“解决方案已找到”

2

pulp.constants.LpSenses

用于 sense 的值字典:

LpSenses = {LpMaximize:”最大化”, LpMinimize:”最小化”}

pulp.constants.LpMinimize

LpMinimize = 1

pulp.constants.LpMaximize

LpMaximize = -1

pulp.constants.LpConstraintEQ

LpConstraintEQ = 0

pulp.constants.LpConstraintLE

LpConstraintLE = -1

pulp.constants.LpConstraintGE

LpConstraintGE = 1

pulp.constants.LpConstraintSenses

LpConstraint 键

符号值

数值

LpConstraintEQ

==

0

LpConstraintLE

<=

-1

LpConstraintGE

>=

toctree 是一个 reStructuredText 指令 ,这是一个非常多功能的标记。指令可以有参数、选项和内容。