Replace float_endf with a fast C/Cython version

This commit is contained in:
Paul Romano 2019-04-03 08:06:01 -05:00
parent 49c49110b7
commit d79524b9ce
5 changed files with 59 additions and 3 deletions

View file

@ -68,10 +68,10 @@ kwargs = {
},
}
# If Cython is present, add resonance reconstruction capability
# If Cython is present, add resonance reconstruction and fast float_endf
if have_cython:
kwargs.update({
'ext_modules': cythonize('openmc/data/reconstruct.pyx'),
'ext_modules': cythonize('openmc/data/*.pyx'),
'include_dirs': [np.get_include()]
})