Skip to content

Commit

Permalink
Fix missing ref issues in docs.
Browse files Browse the repository at this point in the history
  • Loading branch information
michakraus committed Aug 31, 2023
1 parent b5790b5 commit 00ebe9e
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 12 deletions.
3 changes: 1 addition & 2 deletions docs/src/tutorial.md
Original file line number Diff line number Diff line change
Expand Up @@ -513,7 +513,7 @@ methods or Continuous Galerkin Variational Integrators ([`CGVI`](@ref)).
### Integrators for Degenerate Lagrangian ODEs

Degenerate Lagragian ODEs can be integrated with [Degenerate Variational Integrators](integrators/dvi.md) (see also [`DVRK`](@ref))
or Projected Variational Partitioned Runge-Kutta ([`ProjectedVPRK`](@ref)) methods.
or projected [Variational Partitioned Runge-Kutta](@ref vprk) methods.

| Function | Method |
|:--------------------------------|:--------------------------------------------------------------------------|
Expand All @@ -522,7 +522,6 @@ or Projected Variational Partitioned Runge-Kutta ([`ProjectedVPRK`](@ref)) metho
| [`CMDVI`](@ref) | Midpoint Degenerate Variational Integrator |
| [`CTDVI`](@ref) | Trapezoidal Degenerate Variational Integrator |
| [`DVRK`](@ref) | Degenerate Variational Runge-Kutta integrator |
| [`ProjectedVPRK`](@ref) | Projected Variational Partitioned Runge-Kutta integrator |
| | |
| [`VPRKpInternal`](@ref) | VPRK integrator with projection on internal stages |
| [`VPRKpLegendre`](@ref) | VPRK integrator with Legendre projection |
Expand Down
20 changes: 10 additions & 10 deletions src/integrators/method_list.jl
Original file line number Diff line number Diff line change
Expand Up @@ -190,16 +190,16 @@ export VariationalProjectionOnP
export VariationalProjectionOnQ

# projected VPRK methods
# export VPRKpInternal
# export VPRKpLegendre
# export VPRKpMidpoint
# export VPRKpSecondary
# export VPRKpStandard
# export VPRKpSymmetric
# export VPRKpSymplectic
# export VPRKpVariational
# export VPRKpVariationalP
# export VPRKpVariationalQ
export VPRKpInternal
export VPRKpLegendre
export VPRKpMidpoint
export VPRKpSecondary
export VPRKpStandard
export VPRKpSymmetric
export VPRKpSymplectic
export VPRKpVariational
export VPRKpVariationalP
export VPRKpVariationalQ


_display_property(p::Bool) = p ? "" : ""
Expand Down

0 comments on commit 00ebe9e

Please sign in to comment.