Skip to content

Commit 24daeef

Browse files
committed
added missing docstrings
1 parent fc48b7c commit 24daeef

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

docs/src/reference/dynamic_variables.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ CurrentModule = DynOptInterface
55
# Dynamic Variables
66

77
```@docs
8+
AbstractDynamicFunction
9+
AbstractAlgebraicFunction
810
DomainIndex
911
AlgebraicVariableIndex
1012
DifferentialVariableIndex

src/dynamic_variables.jl

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
1+
"""
2+
AbstractDynamicFunction <: MOI.AbstractScalarFunction
3+
4+
Abstract supertype for dynamic functions.
5+
"""
16
abstract type AbstractDynamicFunction <: MOI.AbstractScalarFunction end
27

8+
"""
9+
AbstractAlgebraicFunction <: AbstractDynamicFunction
10+
11+
Abstract supertype for algebraic functions.
12+
"""
313
abstract type AbstractAlgebraicFunction <: AbstractDynamicFunction end
414

515
"""

0 commit comments

Comments
 (0)