Make triso test work for both glibc 2.27 and 2.28

This commit is contained in:
Paul Romano 2019-04-05 13:46:23 -05:00
parent cf85aa0761
commit 54d491efb0
3 changed files with 4 additions and 4 deletions

View file

@ -432,7 +432,7 @@
<settings>
<run_mode>eigenvalue</run_mode>
<particles>100</particles>
<batches>5</batches>
<batches>4</batches>
<inactive>0</inactive>
<source strength="1.0">
<space type="point">

View file

@ -1,2 +1,2 @@
k-combined:
1.683226E+00 7.383559E-02
1.707485E+00 9.795497E-02

View file

@ -82,7 +82,7 @@ class TRISOTestHarness(PyAPITestHarness):
geom.export_to_xml()
settings = openmc.Settings()
settings.batches = 5
settings.batches = 4
settings.inactive = 0
settings.particles = 100
settings.source = openmc.Source(space=openmc.stats.Point())
@ -93,5 +93,5 @@ class TRISOTestHarness(PyAPITestHarness):
def test_triso():
harness = TRISOTestHarness('statepoint.5.h5')
harness = TRISOTestHarness('statepoint.4.h5')
harness.main()