Oscar Smith

Results 100 issues of Oscar Smith

If we define the simplest possible tree ``` using AbstractTrees struct Tree child :: Union{Tree, Int} end AbstractTrees.children(tree::Tree) = (tree.child, ) function nest(n) tree = Tree(1) for i in 1:n...

regression

Version 1.26.0 works, but on 1.26.1, I get the following error on a recent build of Julia master. ``` julia> using LinearSolve [ Info: Precompiling LinearSolve [7ed4a6bd-45f5-4d41-b270-4a48e9bafcae] ERROR: LoadError: MethodError:...

Adding a trill with a grace note at the end will by default place the trill such that it collides with the grace note ![image](https://user-images.githubusercontent.com/11729272/208227459-4857dcca-71ab-44ca-a449-1546d0ab7456.png) Ideally, it would move the...

Adding a key signature to a solo piece for an instrument that isn't in concert pitch adds a key signature in concert pitch. I'm not sure what the right behavior...

https://github.com/timholy/Revise.jl/pull/800 broke codecov (see https://discourse.julialang.org/t/psa-new-version-of-codecov-action-requires-additional-setup/109857). To fix it @timholy you need to add a token named CODECOV_TOKEN to the repo.

This makes `A[:, end]` error for ragged `AbstractVectorOfArray` when the lengths are not equal. Before it could either index out of bounds or get non-last indices.

When I try to format https://github.com/SciML/Sundials.jl/pull/416 I get an error from https://github.com/domluna/JuliaFormatter.jl/blob/fd4fae31aa67bcfedf6a2a22753ff8034e27de67/src/JuliaFormatter.jl#L684 which tells me the line and offset number, but not the file that failed parsing. Ideally, this would...

bug

## Checklist - [ ] Appropriate tests were added - [x] Any code changes were done in a way that does not break public API - [x] All documentation related...

**Describe the bug 🐞** After hitting a callback, `dae`s are re-initialized with their initializealg (https://github.com/SciML/OrdinaryDiffEq.jl/blob/31d91572c490b6eb685d6793d8bfd80389160dae/src/integrators/integrator_interface.jl#L39) rather than `BrownFullBasicInit`. This means that if the user is using a custom initializealg (or...

bug