Skip to content

Commit

Permalink
Merge pull request #13 from njoy/bugfix/printTolerance
Browse files Browse the repository at this point in the history
  • Loading branch information
jlconlin committed Feb 12, 2021
2 parents fdc00f1 + 13f2ef5 commit 24efb1d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
6 changes: 2 additions & 4 deletions cmake/release_dependencies.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ FetchContent_Declare( eigen
GIT_REPOSITORY https://gitlab.com/libeigen/eigen.git
GIT_TAG dc252fbf00079ccab57948a164b1421703fe4361 # tag: 3.3.8
)
set(BUILD_TESTING OFF CACHE BOOL OFF )

FetchContent_Declare( elementary
GIT_REPOSITORY https://github.com/njoy/elementary
Expand All @@ -38,7 +37,7 @@ FetchContent_Declare( elementary

FetchContent_Declare( ENDFtk
GIT_REPOSITORY https://github.com/njoy/ENDFtk
GIT_TAG 65f70e1b771a167b912b2a091f80b891b1b64d27
GIT_TAG 48aa8bcbc1f326b3d48bfa084047d05762eaea09
)

FetchContent_Declare( hana-adapter
Expand All @@ -65,7 +64,6 @@ FetchContent_Declare( nlohmann_json
GIT_REPOSITORY https://github.com/nlohmann/json
GIT_TAG e7b3b40b5a95bc74b9a7f662830a27c49ffc01b4 # tag: v3.7.3
)
set(JSON_BuildTests OFF CACHE INTERNAL "" )

FetchContent_Declare( pybind11
GIT_REPOSITORY https://github.com/pybind/pybind11
Expand All @@ -79,7 +77,7 @@ FetchContent_Declare( range-v3-adapter

FetchContent_Declare( resonanceReconstruction
GIT_REPOSITORY https://github.com/njoy/resonanceReconstruction
GIT_TAG 47742369948a0cd262397700a41db19d1ca240d9
GIT_TAG d54062b991c73e675f5afd2ba0db6c76eb2c2d9c
)

FetchContent_Declare( spdlog
Expand Down
5 changes: 3 additions & 2 deletions src/RECONR/RECONR/ProcessedEvaluation/src/mf1.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -36,14 +36,15 @@ auto mf1( const Logger& logger,
// MF, MT, | <------- NC -------> |
directory.emplace( directory.begin(), 1, 451, directory.size() + 1 + 4, 0 );

// mt.TEMP(), /*sequence[ "err" ],*/ mt.LDRV(),
double err = sequence[ "err" ];
ENDFtk::section::Type< 1, 451 > mt451(
mt.ZA(), mt.AWR(), mt.LRP(), mt.LFI(), mt.NLIB(), mt.NMOD(),
mt.ELIS(), mt.STA(), mt.LIS(), mt.LISO(), mt.NFOR(),
mt.AWI(), mt.EMAX(), mt.LREL(), mt.NSUB(), mt.NVER(),
mt.TEMP(), mt.LDRV(),
std::move( description ),
std::move( directory )
std::move( directory ),
err // rtol
);

return mt451;
Expand Down

0 comments on commit 24efb1d

Please sign in to comment.