Skip to content
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,8 @@ jobs:
version:
# Don't use 'min' version, which will ignore hotfixes, i.e. 1.10.0 will be used instead of e.g. 1.10.8.
- '1.10'
- '1.11' # the latest stable 1.x release
- '1.11'
- '1.12' # the latest stable 1.x release
os:
- ubuntu-latest
- windows-latest
Expand Down
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "PointNeighbors"
uuid = "1c4d5385-0a27-49de-8e2c-43b175c8985c"
authors = ["Erik Faulhaber <erik.faulhaber@uni-koeln.de>"]
version = "0.6.5"
version = "0.6.6"
Comment thread
svchb marked this conversation as resolved.
Outdated

[deps]
Adapt = "79e6a3ab-5dfb-504d-930d-738a2a938a0e"
Expand Down
12 changes: 12 additions & 0 deletions benchmarks/smoothed_particle_hydrodynamics.jl
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,18 @@ end
return semi.neighborhood_search
end

# Newer TrixiParticles versions define TLSPH-specific neighborhood-search lookups.
@inline function TrixiParticles.get_neighborhood_search(::TotalLagrangianSPHSystem,
semi::DummySemidiscretization)
return semi.neighborhood_search
end

@inline function TrixiParticles.get_neighborhood_search(::TotalLagrangianSPHSystem,
::TotalLagrangianSPHSystem,
semi::DummySemidiscretization)
return semi.neighborhood_search
end

"""
benchmark_wcsph(neighborhood_search, coordinates;
parallelization_backend = default_backend(coordinates))
Expand Down
Loading