Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions src/LinearMPC.jl
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,11 @@ include("observer.jl");
export predict_state!,correct_state!
export set_state!,get_state,update_state!

include("macros.jl");
export ControlRef, StateRef, OutputRef, DisturbanceRef, SignalExpr, DynamicsExpr
export ControlVec, StateVec, DisturbanceVec
export @control, @state, @output, @disturbance, @constraint, @objective, @dynamics

using PrecompileTools
@setup_workload begin

Expand Down
Loading