Skip to content

Commit

Permalink
Merge branch 'master' of github.com:gridap/Gridap.jl into benchmarks
Browse files Browse the repository at this point in the history
  • Loading branch information
JordiManyer committed Nov 5, 2024
2 parents fa0e471 + e4645af commit 62418b8
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
4 changes: 4 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- A convergence test for Poisson problem of `QTensorValue` unknown field validates the implementation.
- Added support for benchmarking, through PkgBenchmark.jl. Since PR[#1039](https://github.com/gridap/Gridap.jl/pull/1039).

### Fixed

- Fixed constructor of RungeKutta with only one solver. Since PR[#999](https://github.com/gridap/Gridap.jl/pull/999).

## [0.18.6] - 2024-08-29

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion src/ODEs/ODESolvers.jl
Original file line number Diff line number Diff line change
Expand Up @@ -202,5 +202,5 @@ function RungeKutta(
end

function RungeKutta(sysslvr_nl::NonlinearSolver, dt::Real, tableau)
RungeKutta(sysslvr_nl, sysslvr_nl, dt, name)
RungeKutta(sysslvr_nl, sysslvr_nl, dt, tableau)
end
1 change: 0 additions & 1 deletion src/ODEs/ODESolvers/TableausEX.jl
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ end

"""
EXRK_Euler_1_1
FE
"""
struct EXRK_Euler_1_1 <: TableauName end

Expand Down

0 comments on commit 62418b8

Please sign in to comment.