Skip to content

Commit 65540ee

Browse files
committed
Add missing (container, real, real) overloads for contraint family functions
1 parent 0121e19 commit 65540ee

8 files changed

Lines changed: 624 additions & 11 deletions

File tree

src/stan_math_signatures/Generate.ml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -558,7 +558,8 @@ let add_first_arg_vector_ternary name supports_soa =
558558
let ty = bare_array_type (j, i) in
559559
add_unqualified (name, ReturnType ty, [ty; ty; ty], supports_soa);
560560
add_unqualified (name, ReturnType ty, [ty; ty; UReal], supports_soa);
561-
add_unqualified (name, ReturnType ty, [ty; UReal; ty], supports_soa))
561+
add_unqualified (name, ReturnType ty, [ty; UReal; ty], supports_soa);
562+
add_unqualified (name, ReturnType ty, [ty; UReal; UReal], supports_soa))
562563
vectors)
563564
(List.range 0 8)
564565

test/integration/good/function-signatures/math/transforms/lower_upper_bound_constrain.stan

Lines changed: 77 additions & 2 deletions
Large diffs are not rendered by default.

test/integration/good/function-signatures/math/transforms/lower_upper_bound_jacobian.stan

Lines changed: 62 additions & 2 deletions
Large diffs are not rendered by default.

test/integration/good/function-signatures/math/transforms/lower_upper_bound_unconstrain.stan

Lines changed: 77 additions & 2 deletions
Large diffs are not rendered by default.

test/integration/good/function-signatures/math/transforms/offset_multiplier_constrain.stan

Lines changed: 77 additions & 2 deletions
Large diffs are not rendered by default.

test/integration/good/function-signatures/math/transforms/offset_multiplier_jacobian.stan

Lines changed: 60 additions & 0 deletions
Large diffs are not rendered by default.

test/integration/good/function-signatures/math/transforms/offset_multiplier_unconstrain.stan

Lines changed: 77 additions & 2 deletions
Large diffs are not rendered by default.

test/integration/signatures/stan_math_signatures.t

Lines changed: 192 additions & 0 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)