Skip to content

Commit 127178c

Browse files
committed
added OrdinaryDiffEqRosenbrock to project and manifest (not sure if this is what needed to be done to fix the failure of packge not loading)
1 parent 7d94fe6 commit 127178c

File tree

3 files changed

+5
-1
lines changed

3 files changed

+5
-1
lines changed

benchmark/Project.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
[deps]
22
BenchmarkTools = "6e4b80f9-dd63-53aa-95a3-0cdb28fa8baf"
3+
OrdinaryDiffEqRosenbrock = "43230ef6-c299-4910-a778-202eb28ce4ce"
34
OrdinaryDiffEqLowStorageRK = "b0944070-b475-4768-8dec-fb6eb410534d"
45
OrdinaryDiffEqTsit5 = "b1df2697-797e-41e3-8120-5422d3b24e4a"
56
SummationByPartsOperators = "9f78cca6-572e-554e-b819-917d2f1cf240"
67

78
[compat]
89
BenchmarkTools = "1"
10+
OrdinaryDiffEqRosenbrock = "1"
911
OrdinaryDiffEqLowStorageRK = "1"
1012
OrdinaryDiffEqTsit5 = "1"
1113
SummationByPartsOperators = "0.5.63"

src/equations/equations.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -561,7 +561,7 @@ include("hyperbolic_serre_green_naghdi_1d.jl")
561561

562562
# KdV equation
563563
abstract type AbstractKdVEquation{NDIMS, NVARS} <:
564-
AbstractEquations{NDIMS, NVARS} end
564+
AbstractEquations{NDIMS, NVARS} end
565565
include("kdv_1d.jl")
566566

567567
function solve_system_matrix!(dv, system_matrix, rhs,

test/Project.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ Aqua = "4c88cf16-eb10-579e-8560-4a9242c79595"
33
ExplicitImports = "7d51a73a-1435-4ff3-83d9-f097790105c7"
44
ForwardDiff = "f6369f11-7733-5829-9624-2563aa707210"
55
JET = "c3a54625-cd67-489e-a8e7-0a5a0ff4e31b"
6+
OrdinaryDiffEqRosenbrock = "43230ef6-c299-4910-a778-202eb28ce4ce"
67
OrdinaryDiffEqLowStorageRK = "b0944070-b475-4768-8dec-fb6eb410534d"
78
OrdinaryDiffEqTsit5 = "b1df2697-797e-41e3-8120-5422d3b24e4a"
89
Plots = "91a5bcdd-55d7-5caf-9e0b-520d859cae80"
@@ -18,6 +19,7 @@ Aqua = "0.7, 0.8"
1819
ExplicitImports = "1.0.1"
1920
ForwardDiff = "0.10.36"
2021
JET = "0.9.9"
22+
OrdinaryDiffEqRosenbrock = "1.1"
2123
OrdinaryDiffEqLowStorageRK = "1.1"
2224
OrdinaryDiffEqTsit5 = "1.1"
2325
Plots = "1.25"

0 commit comments

Comments
 (0)