Brian Ward

Results 165 issues of Brian Ward

## This issue is a - [ ] Bug Report - [x] Feature Request

If I use a splitter from this library with e.g. a tab component, it will sometimes live in a div which is `hidden`. This seems to result in the children...

#### Summary: Implemented in https://github.com/stan-dev/stanc3/pull/1443, these should be documented before the next release. A lot of material may be adapted from the existing documentation [here](https://mc-stan.org/docs/stan-users-guide/regression.html#parameterizing-centered-vectors)

#### Summary: Implemented by @SteveBronder [here](https://github.com/stan-dev/stanc3/pull/1442), these should be documented before the next release

This came up at StanCon as a common pain point when trying to organize groups of functions. Suppose you have functions foo, bar, and baz living in files of the...

good first issue
feature
typechecker
parsing

This was discussed by @SteveBronder and @wds15 and I at StanCon. It would be nice to have, but requires some serialization to move between MPI ranks. The compiler could potentially...

feature

The integrate_1d function already supports variadic arguments in it's C++ implementation, but not in the function exposed in the language. Similar to #1268 We will likely want to give it...

good first issue
feature

Hi! I think it is fairly common for a user to have a log density/its gradient _outside_ of a PyMC or Stan model. I was helping one such [user on...

I was interested in trying this with a large code-base (https://github.com/stan-dev/stanc3) but ran into a few compile-time errors. This seems to be independent of #9, as editing the line in...

This means `unsafe_op_in_unsafe_fn` in edition 2024 complains about the `from_library` function. Example: ```c // file src/foo.h extern int SOME_CONSTANT; ``` ```rust // file src/main.rs #![allow(non_camel_case_types)] #![allow(non_snake_case)] #![allow(non_upper_case_globals)] #![allow(dead_code)] #![allow(clippy::all)] #![allow(rustdoc::broken_intra_doc_links)]...