Skip to content

Commit

Permalink
gsa rm from HS
Browse files Browse the repository at this point in the history
  • Loading branch information
ivborissov committed Sep 11, 2024
1 parent ff1d77e commit a444823
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 98 deletions.
2 changes: 0 additions & 2 deletions src/HetaSimulator.jl
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,6 @@ module HetaSimulator
include("monte_carlo.jl")
include("ensemble_stats.jl")
include("import_platform.jl")
include("gsa.jl")
include("save_as_heta.jl")
include("heta_funcs.jl")

Expand All @@ -92,7 +91,6 @@ module HetaSimulator
export update
export times, vals, status, status_summary
export save_results, read_mcvecs
export gsa, pearson, partial, standard
export save_as_heta
export scale_params, unscale_params
export piecewise
Expand Down
92 changes: 0 additions & 92 deletions src/gsa.jl

This file was deleted.

4 changes: 0 additions & 4 deletions test/single_comp_test.jl
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,6 @@ end
mc1 = mc(Scenario(model, (0., 200.), observables=[:r1], saveat=0:10:200), [:k1=>Normal(0.02,1e-3)], mciter)
mc2 = mc([:one=>scn1,:two=>scn2], [:k1=>Normal(0.02,1e-3)], mciter)
mc1_reduced = mc(Scenario(model, (0., 200.), observables=[:r1]), [:k1=>Normal(0.02,1e-3)], mciter; output_func=output_func)
gsar = gsa(mc1, 200)
ens = EnsembleSummary(mc1)
@test typeof(ens) <: HetaSimulator.LabelledEnsembleSummary
@test typeof(mc1) <: HetaSimulator.MCResult
Expand All @@ -77,9 +76,6 @@ ens = EnsembleSummary(mc1)
@test typeof(parameters(mc1)) <: Vector
@test times(mc1[1])[end] == 200.
@test keys((parameters(mc1[1]))) == (:k1,)
@test size(pearson(gsar)) == (1,1)
@test size(partial(gsar)) == (1,1)
@test size(standard(gsar)) == (1,1)
@test length(mc1_reduced) == mciter


Expand Down

0 comments on commit a444823

Please sign in to comment.