Fredrik Ekre

Results 126 issues of Fredrik Ekre

``` using Base: @propagate_inbounds ■ Missing reference: @propagate_inbounds @propagate_inbounds ■ Missing reference: @propagate_inbounds ``` I am not sure why this macro is special. Autocompletion suggested it (and automatically added the...

In e.g. ``` """ foo() Do some foo. """ function foo() end const bar = foo foo #

enhancement

``` $ cat src/TestPackage.jl module TestPackage include("Inner.jl") using .Inner function bar(::Foo) foo() end end # module $ cat src/Inner.jl module Inner const Foo = Int foo() = println("hi") export Foo,...

bug

`vtk_cell_data(vtk, data::Vector{

enhancement
good first issue

This patch changes `find_field` to return `nothing` instead of throwing if the field is not found. This patch also changes `dof_range` to always throw if there are more than one...

![image](https://user-images.githubusercontent.com/11698744/237038880-fa9f55b9-f612-45de-9158-5484ab3008e0.png) I think something like the above would be pretty useful to have in the docs to see how things are connected. This is done using https://mermaid.js.org/ which can now...

docs

This changes `FieldHandler.cellset` to be a sorted `OrderedSet` instead of a `Set`. This ensures that loops over sub-domains are done in ascending cell order. Since e.g. cells, node coordinates, and...

To generalize `CellValues` I think interpolations should be able to store stuff in an additional struct field, e.g. ```julia struct CellValues{..., IPD} # ... interpolation_data::IPD end ``` Two usecases: 1....

feature