From 8a551b807450b60aa8b48363028b3eede4ef3dda Mon Sep 17 00:00:00 2001 From: Shikhar Kumar Date: Thu, 20 Sep 2018 14:33:13 -0400 Subject: [PATCH] Expose run_CE througb C API --- openmc/capi/settings.py | 1 + 1 file changed, 1 insertion(+) diff --git a/openmc/capi/settings.py b/openmc/capi/settings.py index af6dd7d7a..115962395 100644 --- a/openmc/capi/settings.py +++ b/openmc/capi/settings.py @@ -22,6 +22,7 @@ class _Settings(object): generations_per_batch = _DLLGlobal(c_int32, 'gen_per_batch') inactive = _DLLGlobal(c_int32, 'n_inactive') particles = _DLLGlobal(c_int64, 'n_particles') + run_CE = _DLLGlobal(c_bool, 'run_CE') verbosity = _DLLGlobal(c_int, 'verbosity') @property