Skip to content

Commit 7a1051c

Browse files
authored
Merge branch 'master' into release-0.35
2 parents 1366440 + a73dcf2 commit 7a1051c

File tree

5 files changed

+2
-489
lines changed

5 files changed

+2
-489
lines changed

.github/workflows/Docs.yml

-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,6 @@ on:
66
- master
77
tags: '*'
88
pull_request:
9-
branches:
10-
- master
119
merge_group:
1210
types: [checks_requested]
1311

.github/workflows/Format.yml

-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@ on:
55
branches:
66
- master
77
pull_request:
8-
branches:
9-
- master
108
merge_group:
119
types: [checks_requested]
1210

docs/make.jl

+1-3
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,7 @@ makedocs(;
2020
format=Documenter.HTML(; size_threshold=2^10 * 400),
2121
modules=[DynamicPPL],
2222
pages=[
23-
"Home" => "index.md",
24-
"API" => "api.md",
25-
"Internals" => ["internals/varinfo.md", "internals/transformations.md"],
23+
"Home" => "index.md", "API" => "api.md", "Internals" => ["internals/varinfo.md"]
2624
],
2725
checkdocs=:exports,
2826
doctest=false,

docs/src/api.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,7 @@ VarInfo
279279
TypedVarInfo
280280
```
281281

282-
One main characteristic of [`VarInfo`](@ref) is that samples are transformed to unconstrained Euclidean space and stored in a linearized form, as described in the [transformation page](internals/transformations.md).
282+
One main characteristic of [`VarInfo`](@ref) is that samples are transformed to unconstrained Euclidean space and stored in a linearized form, as described in the [main Turing documentation](https://turinglang.org/docs/developers/transforms/dynamicppl/).
283283
The [Transformations section below](#Transformations) describes the methods used for this.
284284
In the specific case of `VarInfo`, it keeps track of whether samples have been transformed by setting flags on them, using the following functions.
285285

0 commit comments

Comments
 (0)