Skip to content

Commit 006947e

Browse files
Project.toml
1 parent 5d21dbc commit 006947e

File tree

6 files changed

+23
-18
lines changed

6 files changed

+23
-18
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
*.jl.cov
22
*.jl.*.cov
33
*.jl.mem
4+
Manifest.toml

Project.toml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name = "ParameterizedFunctions"
2+
uuid = "65888b18-ceab-5e60-b2b9-181511a3b968"
3+
authors = ["Chris Rackauckas <[email protected]>"]
4+
version = "4.2.0"
5+
6+
[deps]
7+
DataStructures = "864edb3b-99cc-5e75-8d2d-829cb0a9cfe8"
8+
DiffEqBase = "2b5f629d-d688-5b77-993f-72d75c75574e"
9+
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
10+
SymEngine = "123dc426-2d89-5057-bbad-38513e3affd8"
11+
12+
[compat]
13+
julia = "1"
14+
15+
[extras]
16+
DiffEqProblemLibrary = "a077e3f3-b75c-5d7f-a0c6-6bc4c8ec64a9"
17+
SpecialFunctions = "276daf66-3868-5448-9aa4-cd146d93841b"
18+
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
19+
20+
[targets]
21+
test = ["SpecialFunctions", "Test"]

REQUIRE

Lines changed: 0 additions & 5 deletions
This file was deleted.

src/ParameterizedFunctions.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ module ParameterizedFunctions
1616
delete!(ENV,"symengine_jl_safe_failure")
1717
end
1818

19-
using DataStructures, DiffEqBase, SimpleTraits
19+
using DataStructures, DiffEqBase
2020

2121
import LinearAlgebra
2222

test/REQUIRE

Lines changed: 0 additions & 2 deletions
This file was deleted.

test/runtests.jl

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -126,13 +126,3 @@ sir_ode = @ode_def SIRModel begin
126126
dI = b*S*I - g*I
127127
dR = g*I
128128
end b g
129-
130-
131-
println("Make the problems in the problem library build")
132-
133-
using DiffEqProblemLibrary
134-
using DiffEqProblemLibrary.ODEProblemLibrary: importodeproblems
135-
using DiffEqProblemLibrary.SDEProblemLibrary: importsdeproblems
136-
137-
importodeproblems()
138-
importsdeproblems()

0 commit comments

Comments
 (0)