Default

Index

Documentation

CTModels.__constraint_labelMethod
__constraint_label() -> Symbol

Used to set the default value of the label of a constraint. A unique value is given to each constraint using the gensym function and prefixing by :unamed.

CTModels.__control_componentsMethod
__control_components(
    m::Int64,
    name::String
) -> Vector{String}

Used to set the default value of the names of the controls. The default value is ["u"] for a one dimensional control, and ["u₁", "u₂", ...] for a multi dimensional control.

CTModels.__control_nameMethod
__control_name() -> String

Used to set the default value of the names of the control. The default value is "u".

CTModels.__criterion_typeMethod
__criterion_type() -> Symbol

Used to set the default value of the type of criterion. Either :min or :max. The default value is :min. The other possible criterion type is :max.

CTModels.__formatMethod
__format() -> Symbol

Used to set the default value of the format of the file to be used for export and import.

CTModels.__matrix_dimension_storageMethod
__matrix_dimension_storage() -> Int64

Used to set the default value of the storage of elements in a matrix. The default value is 1.

CTModels.__state_componentsMethod
__state_components(n::Int64, name::String) -> Vector{String}

Used to set the default value of the names of the states. The default value is ["x"] for a one dimensional state, and ["x₁", "x₂", ...] for a multi dimensional state.

CTModels.__state_nameMethod
__state_name() -> String

Used to set the default value of the name of the state. The default value is "x".

CTModels.__time_nameMethod
__time_name() -> String

Used to set the default value of the name of the time. The default value is t.

CTModels.__variable_componentsMethod
__variable_components(
    q::Int64,
    name::String
) -> Vector{String}

Used to set the default value of the names of the variables. The default value is ["v"] for a one dimensional variable, and ["v₁", "v₂", ...] for a multi dimensional variable.

CTModels.__variable_nameMethod
__variable_name(q::Int64) -> String

Used to set the default value of the names of the variables. The default value is "v".