Bagaev Dmitry

Results 62 issues of Bagaev Dmitry

Hey, thanks for this great library! We recently encountered that `PositiveFactorizations.jl` loses type information in case if input is a StaticArray. ```julia julia> L = @SArray rand(3, 3) 3×3 SMatrix{3,...

[ReTestItems](https://github.com/JuliaTesting/ReTestItems.jl) package is compatible with VSCode UI, but additionally exposes the `setup` keyword argument, which is currently ignored by VSCode test running infrastructure. It would be nice to synchronise here...

This pull request introduces the `Format.yml` action, which automatically generates PRs for formatting suggestions. It also removes the explicit requirement for the code to be perfectly formatted. I believe that...

We knew about this with @albertpod. I'm noting it here so we don't forget. The problem is that in RxInfer v3.0.0, there was a change in how predictions are constrained...

enhancement

We found a very weird issue with the `@testset` macro. Not even sure how to title it correctly. MWE: ```julia module Bug using Test @testset "huh?" begin @testset for p...

testsystem

I have the following script to compile my paper: ```bash → cat compile.sh docker run --rm \ --volume $PWD:/data \ --user $(id -u):$(id -g) \ --env JOURNAL=joss \ openjournals/inara ```...

Consider the following: ```julia julia> @report_opt rand(Beta(1, 1), 10) ═════ 1 possible error found ═════ ┌ rand(s::Beta{Float64}, dims::Int64) @ Distributions /Users/bvdmitri/.julia/packages/Distributions/fgrZq/src/genericrand.jl:22 │┌ rand(::Random.TaskLocalRNG, ::Beta{Float64}, ::Int64) @ Distributions /Users/bvdmitri/.julia/packages/Distributions/fgrZq/src/genericrand.jl:24 ││┌ rand(rng::Random.TaskLocalRNG,...

For example we have a `SoftDot` node defined. Another example is `Autoregressive`. The functional form of this node is not defined in the documentation nor in its docstrings. It might...

**Describe the bug 🐞** In some situations ArrayPartition violates the documentation of `eltype`: ``` eltype(type) Determine the type of the elements generated by iterating a collection... ``` But this is...

bug

`ArrayPartition` is a useful structure to concatenate arrays of different types. The type is defined in [SciML/RecursiveArrayTools.jl](https://github.com/SciML/RecursiveArrayTools.jl?tab=readme-ov-file) `ArrayPartition`s are also used in many places in `SciML` ecosystem, but also in...