From 016ac221852b6fa6671fe693d77f975d1ad092c2 Mon Sep 17 00:00:00 2001 From: rodrigomha Date: Mon, 6 Jan 2025 10:17:35 -0800 Subject: [PATCH] update docstring --- src/core/variables.jl | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/core/variables.jl b/src/core/variables.jl index f089f1177..0d4319ee6 100644 --- a/src/core/variables.jl +++ b/src/core/variables.jl @@ -299,15 +299,15 @@ Docs abbreviation: ``p^\\text{ff,lbsl}`` struct LowerBoundFeedForwardSlack <: VariableType end """ -Struct to dispatch the creation of Slack variables for UB limits +Struct to dispatch the creation of Slack variables for rate of change constraints up limits -Docs abbreviation: ``p^\\text{x,ubsl}`` +Docs abbreviation: ``p^\\text{sl,up}`` """ struct RateofChangeConstraintSlackUp <: VariableType end """ -Struct to dispatch the creation of Slack variables for LB limits +Struct to dispatch the creation of Slack variables for rate of change constraints down limits -Docs abbreviation: ``p^\\text{x,lbsl}`` +Docs abbreviation: ``p^\\text{sl,dn}`` """ struct RateofChangeConstraintSlackDown <: VariableType end