Parameters

Summary

pyomo.core.kernel.parameter.parameter([value])

A object for storing a mutable, numeric value that can be used to build a symbolic expression.

pyomo.core.kernel.parameter.functional_value([fn])

An object for storing a numeric function that can be used in a symbolic expression.

pyomo.core.kernel.parameter.parameter_tuple(...)

A tuple-style container for objects with category type IParameter

pyomo.core.kernel.parameter.parameter_list(...)

A list-style container for objects with category type IParameter

pyomo.core.kernel.parameter.parameter_dict(...)

A dict-style container for objects with category type IParameter

Member Documentation

class pyomo.core.kernel.parameter.parameter(value=None)[source]

Bases: IParameter

A object for storing a mutable, numeric value that can be used to build a symbolic expression.

property value

The value of the parameter

class pyomo.core.kernel.parameter.functional_value(fn=None)[source]

Bases: IParameter

An object for storing a numeric function that can be used in a symbolic expression.

Note that models making use of this object may require the dill module for serialization.

property fn

The function stored with this object

class pyomo.core.kernel.parameter.parameter_tuple(*args, **kwds)

Bases: TupleContainer

A tuple-style container for objects with category type IParameter

class pyomo.core.kernel.parameter.parameter_list(*args, **kwds)

Bases: ListContainer

A list-style container for objects with category type IParameter

class pyomo.core.kernel.parameter.parameter_dict(*args, **kwds)

Bases: DictContainer

A dict-style container for objects with category type IParameter