Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Mpp
MLUQ
Commits
1bc169a3
Commit
1bc169a3
authored
Feb 02, 2021
by
niklas.baumgarten
Browse files
moved verbose entries to test env
parent
0de57930
Changes
2
Hide whitespace changes
Inline
Side-by-side
mlmc/tests/montecarlo/TestMonteCarlo.hpp
View file @
1bc169a3
...
...
@@ -30,11 +30,11 @@ protected:
TestMonteCarlo
(
const
std
::
string
&
meshName
,
int
commSplit
=
0
)
:
meshesCreator
(
MeshesCreator
(
"Interval"
).
WithCommSplit
(
commSplit
).
WithDistribute
(
"RCB"
,
0
).
WithoutOverlap
(
0
).
WithDistribute
(
"RCB"
).
WithoutOverlap
().
WithPLevel
(
pLevel
).
WithLevel
(
level
)),
pdeSolverCreator
(
PDESolverCreator
(
0
,
0
).
pdeSolverCreator
(
PDESolverCreator
().
WithProblem
(
GetParam
()).
WithQuantity
(
"GeneratorValue"
).
WithModel
(
"DummyPDESolver"
)),
...
...
mlmc/tests/pdesolver/TestPDESolver.cpp
View file @
1bc169a3
...
...
@@ -22,11 +22,12 @@ protected:
SampleID
id
;
TestPDESolver
(
const
std
::
string
&
meshName
,
int
commSplit
=
0
)
:
id
(
3
,
0
,
false
)
{
TestPDESolver
(
const
std
::
string
&
meshName
,
int
commSplit
=
0
)
:
id
(
SampleID
(
3
,
0
,
false
))
{
meshes
=
MeshesCreator
(
meshName
).
WithOverlap
(
GetOverlap
()).
WithCommSplit
(
commSplit
).
WithDistribute
(
"RCB"
,
0
).
WithOverlap
(
GetOverlap
(),
0
).
WithDistribute
(
"RCB"
).
WithPLevel
(
id
.
level
.
pLevel
).
WithLevel
(
id
.
level
.
fine
).
Create
();
...
...
@@ -145,7 +146,9 @@ TEST_P(TestGaussHat, TestRun) {
int
main
(
int
argc
,
char
**
argv
)
{
return
MppTest
(
MppTestBuilder
(
argc
,
argv
).
WithPPM
().
WithScreenLogging
()).
WithConfigEntry
(
"PDESolverPlotting"
,
1
).
WithConfigEntry
(
"PDESolverVerbose"
,
1
).
WithScreenLogging
().
WithPPM
()).
RUN_ALL_MPP_TESTS
();
}
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment