Skip to content

Commit

Permalink
Merge pull request #63 from txn2022/master
Browse files Browse the repository at this point in the history
Modifications to adapt the name change of Quadrature.jl to Integrals.jl
  • Loading branch information
ChrisRackauckas authored Jul 28, 2022
2 parents ab3de92 + 7c8f738 commit bf56ccd
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,30 +7,30 @@ version = "1.8.0"
DiffEqBase = "2b5f629d-d688-5b77-993f-72d75c75574e"
Distributions = "31c24e10-a181-5473-b8eb-7969acd0382f"
KernelDensity = "5ab0869b-81aa-558d-bb23-cbf5423bbe9b"
Quadrature = "67601950-bd08-11e9-3c89-fd23fb4432d2"
Integrals = "de52edbc-65ea-441a-8357-d3a637375a31"
Reexport = "189a3867-3050-52da-a836-e630ba90ab69"
Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2"

[compat]
DiffEqBase = "6"
Distributions = "0.18, 0.19, 0.20, 0.21, 0.22, 0.23, 0.24, 0.25"
KernelDensity = "0.6"
Quadrature = "0.1, 1.0"
Integrals = "3.1"
Reexport = "0.2, 1.0"
julia = "1.6"

[extras]
Cuba = "8a292aeb-7a57-582c-b821-06e4c11590b1"
Cubature = "667455a9-e2ce-5579-9412-b964f529a492"
DiffEqGPU = "071ae1c0-96b5-11e9-1965-c90190d839ea"
DiffEqProblemLibrary = "a077e3f3-b75c-5d7f-a0c6-6bc4c8ec64a9"
DiffEqSensitivity = "41bf760c-e81c-5289-8e54-58b1f1f8abe2"
FiniteDiff = "6a86dc24-6348-571c-b903-95158fe2bd41"
ForwardDiff = "f6369f11-7733-5829-9624-2563aa707210"
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
IntegralsCuba = "e00cd5f1-6337-4131-8b37-28b2fe4cd6cb"
IntegralsCubature = "c31f79ba-6e32-46d4-a52f-182a8ac42a54"
OrdinaryDiffEq = "1dea7af3-3e70-54e6-95c3-0bf5283fa5ed"
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
Zygote = "e88e6eb3-aa80-5325-afca-941959d7151f"

[targets]
test = ["DiffEqProblemLibrary", "Test", "OrdinaryDiffEq", "Cubature", "Cuba", "FiniteDiff", "ForwardDiff", "Zygote", "DiffEqGPU", "DiffEqSensitivity", "LinearAlgebra"]
test = ["DiffEqProblemLibrary", "Test", "OrdinaryDiffEq", "IntegralsCuba", "IntegralsCubature", "FiniteDiff", "ForwardDiff", "Zygote", "DiffEqGPU", "DiffEqSensitivity", "LinearAlgebra"]
2 changes: 1 addition & 1 deletion src/DiffEqUncertainty.jl
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
module DiffEqUncertainty

using DiffEqBase, Statistics, Distributions, Reexport
@reexport using Quadrature
@reexport using Integrals
using KernelDensity

include("probints.jl")
Expand Down
2 changes: 1 addition & 1 deletion test/koopman.jl
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
using OrdinaryDiffEq, Distributions,
DiffEqUncertainty, Test, Quadrature, Cubature, Cuba,
DiffEqUncertainty, Test, Integrals, IntegralsCubature, IntegralsCuba,
FiniteDiff, Zygote, ForwardDiff, DiffEqGPU, DiffEqSensitivity, LinearAlgebra

quadalgs = [HCubatureJL(), CubatureJLh(), CubatureJLp(), CubaSUAVE(), CubaDivonne(), CubaCuhre()]
Expand Down

0 comments on commit bf56ccd

Please sign in to comment.