Skip to content

Commit

Permalink
Merge branch 'main' into conservative-amr
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewwinters5000 authored Aug 16, 2024
2 parents c58e567 + 345f53a commit 06829fd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "Trixi"
uuid = "a7f1ee26-1774-49b1-8366-f1abc58fbfcb"
authors = ["Michael Schlottke-Lakemper <[email protected]>", "Gregor Gassner <[email protected]>", "Hendrik Ranocha <[email protected]>", "Andrew R. Winters <[email protected]>", "Jesse Chan <[email protected]>"]
version = "0.8.6-DEV"
version = "0.8.7-DEV"

[deps]
CodeTracking = "da1fd8a2-8d9e-5ec2-8556-3022fb5608a2"
Expand Down
4 changes: 2 additions & 2 deletions src/semidiscretization/semidiscretization_hyperbolic.jl
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,6 @@ struct SemidiscretizationHyperbolic{Mesh, Equations, InitialCondition,
SourceTerms,
Solver,
Cache}
@assert ndims(mesh) == ndims(equations)

performance_counter = PerformanceCounter()

new(mesh, equations, initial_condition, boundary_conditions, source_terms,
Expand All @@ -67,6 +65,8 @@ function SemidiscretizationHyperbolic(mesh, equations, initial_condition, solver
# while `uEltype` is used as element type of solutions etc.
RealT = real(solver), uEltype = RealT,
initial_cache = NamedTuple())
@assert ndims(mesh) == ndims(equations)

cache = (; create_cache(mesh, equations, solver, RealT, uEltype)...,
initial_cache...)
_boundary_conditions = digest_boundary_conditions(boundary_conditions, mesh, solver,
Expand Down

0 comments on commit 06829fd

Please sign in to comment.