Skip to content

Commit

Permalink
allow different types for upper and lower bound in Logit (#305)
Browse files Browse the repository at this point in the history
  • Loading branch information
torfjelde authored Apr 19, 2024
1 parent 0839209 commit 1389c6d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/bijectors/logit.jl
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
######################
# Logit and Logistic #
######################
struct Logit{T} <: Bijector
a::T
b::T
struct Logit{T1,T2} <: Bijector
a::T1
b::T2
end

Functors.@functor Logit
Expand Down

0 comments on commit 1389c6d

Please sign in to comment.