Skip to content

Commit a0fe01c

Browse files
committed
Remove text on Julia <v.16 limitations from docs
Makes docs more readable and use of Julia v1.0 is very rare.
1 parent f09a1df commit a0fe01c

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

docs/src/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ ChangesOfVariables
66

77
This package defines the function [`with_logabsdet_jacobian`](@ref). `(y, ladj) = with_logabsdet_jacobian(f, x)` computes both the transformed value of `x` under the transformation `f` and the logarithm of the [volume element](https://en.wikipedia.org/wiki/Volume_element).
88

9-
`with_logabsdet_jacobian` supports mapped/broadcasted functions (via `Base.Broadcast.BroadcastFunction` or `Base.Fix1`) and (on Julia >=v1.6) function composition.
9+
`with_logabsdet_jacobian` supports mapped/broadcasted functions (via `Base.Broadcast.BroadcastFunction` or `Base.Fix1`) and function composition.
1010

1111
Implementations of `with_logabsdet_jacobian(f)` for `identity`, `inv`, `adjoint` and `transpose` as well as for `exp`, `log`, `exp2`, `log2`, `exp10`, `log10`, `expm1` and `log1p` are included.

src/with_ladj.jl

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,7 @@ For `(y, ladj) = with_logabsdet_jacobian(f, x)`, the following must hold true:
1212
* `ladj` is the `log(abs(det(jacobian(f, x))))`
1313
1414
`with_logabsdet_jacobian` comes with support for broadcasted/mapped functions
15-
(via `Base.Broadcast.BroadcastFunction` or `Base.Fix1`) and (Julia >=v1.6 only)
16-
`ComposedFunction`.
15+
(via `Base.Broadcast.BroadcastFunction` or `Base.Fix1`) and `ComposedFunction`.
1716
1817
If no volume element is defined/applicable, `with_logabsdet_jacobian(f::F, x::T)`
1918
returns [`NoLogAbsDetJacobian{F,T}()`](@ref).

0 commit comments

Comments
 (0)