Skip to content
Merged
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
6 changes: 3 additions & 3 deletions docs/src/submodules/Utilities/overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ DocTestFilters = [r"MathOptInterface|MOI"]
The Utilities submodule provides a variety of functions and datastructures for
managing `MOI.ModelLike` objects.

## Utilities.Model
## [Utilities.Model](@id overview_utilities_model)

[`Utilities.Model`](@ref) provides an implementation of a [`ModelLike`](@ref)
that efficiently supports all functions and sets defined within MOI. However,
Expand All @@ -27,7 +27,7 @@ MOIU.Model{Float64}
└ NumberOfConstraints: 0
```

## Utilities.UniversalFallback
## [Utilities.UniversalFallback](@id overview_utilities_universal_fallback)

[`Utilities.UniversalFallback`](@ref) is a layer that sits on top of any
[`ModelLike`](@ref) and provides non-specialized (slower) fallbacks for
Expand All @@ -51,7 +51,7 @@ MOIU.UniversalFallback{MOIU.Model{Float64}}
constraints, even if the inner-model does not. This can lead to unexpected
behavior.

## Utilities.@model
## [Utilities.@model](@id overview_model_macro)

For advanced use cases that need efficient support for functions and sets
defined outside of MOI (but still known at compile time), we provide the
Expand Down
6 changes: 3 additions & 3 deletions docs/src/submodules/Utilities/reference.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,19 +6,19 @@ end
DocTestFilters = [r"MathOptInterface|MOI"]
```

## Utilities.Model
## [Utilities.Model](@id reference_utilities_model)

```@docs
Utilities.Model
```

## Utilities.UniversalFallback
## [Utilities.UniversalFallback](@id reference_utilities_universal_fallback)

```@docs
Utilities.UniversalFallback
```

## Utilities.@model
## [Utilities.@model](@id reference_model_macro)

```@docs
Utilities.@model
Expand Down
Loading