Skip to content

Commit

Permalink
fixes for doc action
Browse files Browse the repository at this point in the history
  • Loading branch information
0815Creeper committed Sep 13, 2024
1 parent 24d3395 commit bcf86ef
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 28 deletions.
7 changes: 6 additions & 1 deletion docs/make.jl
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,16 @@ makedocs(
sidebar_sitename = false,
edit_link = nothing,
size_threshold = 512000,
size_threshold_ignore = ["deprecated.md"],
size_threshold_ignore = [
"deprecated.md",
"fmi2_lowlevel_library_functions.md",
"fmi3_lowlevel_library_functions.md",
],
),
modules = [FMI, FMIImport, FMICore, FMIBase],
checkdocs = :exports,
linkcheck = true,
warnonly = :linkcheck,
pages = Any[
"Introduction" => "index.md"
"Features" => "features.md"
Expand Down
17 changes: 0 additions & 17 deletions docs/src/fmi2_lowlevel_library_functions.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,23 +87,6 @@ fmi2GetRealOutputDerivatives!
fmi2SampleJacobian
fmi2SampleJacobian!

## Conversion functions

```@docs
fmi2StringToValueReference
fmi2ValueReferenceToString
fmi2StringToCausality
fmi2CausalityToString
fmi2StringToVariability
fmi2VariabilityToString
fmi2StatusToString
fmi2StringToDependencyKind
fmi2DependencyKindToString
fmi2StringToInitial
fmi2InitialToString
```

## External/Additional functions

```@docs
Expand Down
12 changes: 2 additions & 10 deletions docs/src/fmi3_lowlevel_library_functions.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,6 @@
In both cases, FMI defines an input/output block of a dynamic model where the distribution of the block, the
platform dependent header file, several access functions, as well as the schema files are identical.

## Opening and closing FMUs

```@docs
```
fmi3Unzip
fmi3Load
fmi3Reload
fmi3Unload

## Creation, Destruction and Logging of FMU Instances

```@docs
Expand Down Expand Up @@ -106,6 +97,7 @@ fmi3DeSerializeFMUState
fmi3DeSerializeFMUState!
fmi3UpdateDiscreteStates
fmi3EvaluateDiscreteStates
fmi3GetNominalsOfContinuousStates
```

## Getting Partial Dervatives
Expand Down Expand Up @@ -144,8 +136,8 @@ fmi3GetClock
fmi3GetClock!
fmi3SetClock
fmi3ActivateModelPartition
fmi3CallbackClockUpdate
```
fmi3CallbackClockUpdate

## Conversion functions

Expand Down

0 comments on commit bcf86ef

Please sign in to comment.