Skip to content
Open
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
4 changes: 2 additions & 2 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Parameters = "d96e819e-fc66-5662-9728-84c9c7592b0a"
QuasiMonteCarlo = "8a4e6c94-4038-4cdc-81c3-7e6ffdb2a71b"
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
RecursiveArrayTools = "731186ca-8d62-57ce-b412-fbd966d074cd"
Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2"
BasicStats = "6e4b0b68-1f2b-4a7e-8f0e-d3e9f3d5c8a1"
StatsBase = "2913bbd2-ae8a-5f71-8c99-4fb6c76f3a91"
ThreadsX = "ac1d9e8a-700a-412c-b207-f0111f4b6c0d"
Trapz = "592b5752-818d-11e9-1e9a-2b8ca4a44cd1"
Expand All @@ -38,7 +38,7 @@ Random = "<0.0.1, 1"
RecursiveArrayTools = "3.2"
SafeTestsets = "0.1"
StableRNGs = "1"
Statistics = "<0.0.1, 1"
BasicStats = "0.1"
StatsBase = "0.33.7, 0.34"
Test = "<0.0.1, 1"
ThreadsX = "0.1.11"
Expand Down
2 changes: 1 addition & 1 deletion src/GlobalSensitivity.jl
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module GlobalSensitivity

using Statistics, RecursiveArrayTools, LinearAlgebra, Random
using BasicStats, RecursiveArrayTools, LinearAlgebra, Random
using QuasiMonteCarlo, ForwardDiff, KernelDensity, Trapz
using Parameters: @unpack
using FFTW, Distributions, StatsBase
Expand Down
2 changes: 1 addition & 1 deletion src/rbd-fast_sensitivity.jl
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ and
Reliability Engineering and System Safety, 91:6, 717-727
"""

using FFTW, Random, Statistics, StatsBase, Distributions
using FFTW, Random, BasicStats, StatsBase, Distributions

function gsa(f, method::RBDFAST; num_params, samples,
rng::AbstractRNG = Random.default_rng(), batch = false, kwargs...)
Expand Down
Loading