forked from SALib/SALib
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request SALib#636 from Zapiano/bug_635
Fix pawn analysis for problems with groups
- Loading branch information
Showing
2 changed files
with
12 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
from SALib.util import read_param_file | ||
from SALib import ProblemSpec | ||
from SALib.test_functions import Ishigami | ||
|
||
|
||
def test_analyze_pawn(): | ||
param_file = "src/SALib/test_functions/params/Ishigami_groups.txt" | ||
problem = read_param_file(param_file) | ||
sp = ProblemSpec(problem) | ||
sp.sample_sobol(512).evaluate(Ishigami.evaluate).analyze_pawn() |