mirror of
https://github.com/openmc-dev/openmc.git
synced 2026-07-24 12:05:32 -04:00
10 lines
193 B
Python
Executable file
10 lines
193 B
Python
Executable file
#!/usr/bin/env python
|
|
|
|
import sys
|
|
sys.path.insert(0, '..')
|
|
from testing_harness import TestHarness
|
|
|
|
|
|
if __name__ == '__main__':
|
|
harness = TestHarness('statepoint.10.h5')
|
|
harness.main()
|