Skip to content

Commit

Permalink
Consistently use using Trixi
Browse files Browse the repository at this point in the history
  • Loading branch information
sloede committed Nov 3, 2023
1 parent f167155 commit a385293
Show file tree
Hide file tree
Showing 11 changed files with 11 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ model1d = load(network, @__MODULE__)[:model1d]

using OrdinaryDiffEq
using TrixiSmartShockFinder
using TrixiSmartShockFinder.Trixi
using Trixi

# This elixir was one of the setups used in the following master thesis:
# - Julia Odenthal (2021)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ model1d = load(network, @__MODULE__)[:model1d]

using OrdinaryDiffEq
using TrixiSmartShockFinder
using TrixiSmartShockFinder.Trixi
using Trixi

# This elixir was one of the setups used in the following master thesis:
# - Julia Odenthal (2021)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ model2dcnn = load(network, @__MODULE__)[:model2dcnn]

using OrdinaryDiffEq
using TrixiSmartShockFinder
using TrixiSmartShockFinder.Trixi
using Trixi

# This elixir was one of the setups used in the following master thesis:
# - Julia Odenthal (2021)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ model2d = load(network, @__MODULE__)[:model2d]

using OrdinaryDiffEq
using TrixiSmartShockFinder
using TrixiSmartShockFinder.Trixi
using Trixi

# This elixir was one of the setups used in the following master thesis:
# - Julia Odenthal (2021)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ model2d = load(network, @__MODULE__)[:model2d]

using OrdinaryDiffEq
using TrixiSmartShockFinder
using TrixiSmartShockFinder.Trixi
using Trixi

# This elixir was one of the setups used in the following master thesis:
# - Julia Odenthal (2021)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ seed!(0)

using OrdinaryDiffEq
using TrixiSmartShockFinder
using TrixiSmartShockFinder.Trixi
using Trixi

# This elixir was one of the setups used in the following master thesis:
# - Julia Odenthal (2021)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ model2d = load(network, @__MODULE__)[:model2d]

using OrdinaryDiffEq
using TrixiSmartShockFinder
using TrixiSmartShockFinder.Trixi
using Trixi

# This elixir was one of the setups used in the following master thesis:
# - Julia Odenthal (2021)
Expand Down
1 change: 1 addition & 0 deletions test/Project.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
[deps]
BSON = "fbb218c0-5317-5bc6-957e-2ee96dd4b1f0"
Downloads = "f43a241f-c20a-4ad4-852c-f6b1247861c6"
Flux = "587475ba-b771-5e3f-ad9e-33799f191a9c"
OrdinaryDiffEq = "1dea7af3-3e70-54e6-95c3-0bf5283fa5ed"
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
Expand Down
2 changes: 1 addition & 1 deletion test/test_tree_1d_euler.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module TestExamples1DEuler

using Test
using TrixiSmartShockFinder
using TrixiSmartShockFinder.Trixi
using Trixi

# Load testing functions from Trixi.jl
include(joinpath(pkgdir(TrixiSmartShockFinder.Trixi), "test", "test_trixi.jl"))
Expand Down
2 changes: 1 addition & 1 deletion test/test_tree_2d_euler.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module TestExamples2DEuler

using Test
using TrixiSmartShockFinder
using TrixiSmartShockFinder.Trixi
using Trixi

# Load testing functions from Trixi.jl
include(joinpath(pkgdir(TrixiSmartShockFinder.Trixi), "test", "test_trixi.jl"))
Expand Down
2 changes: 1 addition & 1 deletion test/test_unit.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module TestUnit

using Test
using TrixiSmartShockFinder
using TrixiSmartShockFinder.Trixi
using Trixi

# Load testing functions from Trixi.jl
include(joinpath(pkgdir(TrixiSmartShockFinder.Trixi), "test", "test_trixi.jl"))
Expand Down

0 comments on commit a385293

Please sign in to comment.