Default
Index
CTModels.__constraint_labelCTModels.__constraintsCTModels.__control_componentsCTModels.__control_nameCTModels.__criterion_typeCTModels.__filename_export_importCTModels.__formatCTModels.__matrix_dimension_storageCTModels.__state_componentsCTModels.__state_nameCTModels.__time_nameCTModels.__variable_componentsCTModels.__variable_name
Documentation
CTModels.__constraint_label — Method__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 :unnamed.
CTModels.__constraints — Method__constraints()
Used to set the default value for the constraints.
CTModels.__control_components — Method__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_name — Method__control_name() -> String
Used to set the default value of the names of the control. The default value is "u".
CTModels.__criterion_type — Method__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.__filename_export_import — Method__filename_export_import() -> String
CTModels.__format — Method__format() -> Symbol
Used to set the default value of the format of the file to be used for export and import.
CTModels.__matrix_dimension_storage — Method__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_components — Method__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_name — Method__state_name() -> String
Used to set the default value of the name of the state. The default value is "x".
CTModels.__time_name — Method__time_name() -> String
Used to set the default value of the name of the time. The default value is t.
CTModels.__variable_components — Method__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_name — Method__variable_name(q::Int64) -> String
Used to set the default value of the names of the variables. The default value is "v".