Skip to content
This repository has been archived by the owner on Feb 7, 2024. It is now read-only.

Deprecate Fenrir.jl #30

Merged
merged 4 commits into from
Feb 7, 2024
Merged
Show file tree
Hide file tree
Changes from all 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
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ LinearAlgebra = "1"
ProbNumDiffEq = "0.11,0.12,0.13"
SimpleUnPack = "1"
Statistics = "1"
julia = "1.7"
julia = "1.7 - 1.10"

[extras]
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
Expand Down
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
**This package is deprecated and will not be maintained anymore, as the functionality of Fenrir.jl is now implemented in [ProbNumDiffEq.jl](https://github.com/nathanaelbosch/ProbNumDiffEq.jl). Just use [ProbNumDiffEq.jl](https://github.com/nathanaelbosch/ProbNumDiffEq.jl) directy.**


# Fenrir: Physics-Enhanced Regression for IVPs

[![Stable](https://img.shields.io/badge/docs-stable-blue.svg)](https://nathanaelbosch.github.io/Fenrir.jl/stable)
Expand Down
10 changes: 10 additions & 0 deletions src/Fenrir.jl
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,14 @@
include("likelihood.jl")
export fenrir_nll

function __init__()
# Deprecation warning: This package will not be maintained in the future.
@warn("""\n

Check warning on line 15 in src/Fenrir.jl

View workflow job for this annotation

GitHub Actions / Documentation

# Deprecation warning: This package will not be maintained in the future. The `fenrir_nll` function implemented in this package is now implemented in ProbNumDiffEq.jl, together with other data likelihood functions. So, instead of using Fenrir.jl, use ProbNumDiffEq.jl.
# Deprecation warning: This package will not be maintained in the future.
The `fenrir_nll` function implemented in this package is now implemented in
ProbNumDiffEq.jl, together with other data likelihood functions. So, instead of
using Fenrir.jl, use ProbNumDiffEq.jl.
""")
end

end
Loading