medpython 1.2.0__tar.gz → 1.2.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (493) hide show
  1. {medpython-1.2.0 → medpython-1.2.1}/CMakeLists.txt +18 -5
  2. {medpython-1.2.0/src/medpython.egg-info → medpython-1.2.1}/PKG-INFO +1 -1
  3. {medpython-1.2.0 → medpython-1.2.1}/pyproject.toml +1 -1
  4. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/AlgoMarker/CMakeLists.txt +20 -5
  5. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/InfraMed/InfraMed/InMemData.cpp +181 -181
  6. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/InfraMed/InfraMed/MedIndex.cpp +1200 -1200
  7. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/InfraMed/InfraMed/MedPidRepository.cpp +1 -1
  8. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedAlgo/MedAlgo/BART.cpp +8 -8
  9. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedAlgo/MedAlgo/BinSplitOptimizer.cpp +5 -5
  10. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedAlgo/MedAlgo/MedAlgo.cpp +4 -5
  11. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedAlgo/MedAlgo/MedBooster.cpp +1 -1
  12. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedAlgo/MedAlgo/MedCluster.cpp +1 -1
  13. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedAlgo/MedAlgo/MedGDLM.cpp +3 -3
  14. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedAlgo/MedAlgo/MedKNN.cpp +4 -4
  15. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedAlgo/MedAlgo/MedLasso.cpp +2 -2
  16. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedAlgo/MedAlgo/MedLightGBM.cpp +1 -1
  17. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedAlgo/MedAlgo/MedLinearModel.cpp +3 -3
  18. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedAlgo/MedAlgo/MedSvm.cpp +148 -148
  19. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedAlgo/MedAlgo/MedXGB.cpp +5 -5
  20. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedAlgo/MedAlgo/MedXGB.h +1 -2
  21. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedAlgo/MedAlgo/SimpleEnsemble.cpp +1 -1
  22. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedAlgo/MedAlgo/tree_shap.cpp +10 -10
  23. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedDescribe/MedDescribe/MedDescribe.cpp +275 -275
  24. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedMat/MedMat/MedMat_imp.h +2 -2
  25. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/AggregatePredsPostProcessor.cpp +5 -5
  26. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/Calibration.cpp +1 -1
  27. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/ExplainWrapper.cpp +1 -1
  28. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/FairnessPostProcessor.cpp +2 -2
  29. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/FeatureGenerator.cpp +2 -2
  30. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/FeatureProcess.cpp +2 -2
  31. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/PanelCompleter.cpp +1182 -1182
  32. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/RepProcess.cpp +9 -9
  33. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/ResampleWithMissingProcessor.cpp +1 -1
  34. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPyExport/MedPyExport/MPBootstrap.cpp +2 -2
  35. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPyExport/README.md +5 -0
  36. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPyExport/generate_binding/CMakeLists.txt +18 -5
  37. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPyExport/generate_binding/MedPython/medial-numpy.i +2 -2
  38. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPyExport/generate_binding/pyproject.toml +1 -1
  39. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedStat/MedStat/GibbsSampler.cpp +7 -7
  40. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedStat/MedStat/MedStat.cpp +19 -19
  41. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedStat/MedStat/bootstrap.cpp +9 -9
  42. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedUtils/MedUtils/MedPlot.cpp +622 -622
  43. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/QRF/QRF/QRF.cpp +10 -10
  44. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/TQRF/TQRF/TQRF.cpp +2521 -2521
  45. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/medial_utilities/medial_utilities/clustering.cpp +1 -1
  46. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/micNet/micNet/micNet.cpp +1 -1
  47. {medpython-1.2.0 → medpython-1.2.1/src/medpython.egg-info}/PKG-INFO +1 -1
  48. {medpython-1.2.0 → medpython-1.2.1}/LICENCE +0 -0
  49. {medpython-1.2.0 → medpython-1.2.1}/MANIFEST.in +0 -0
  50. {medpython-1.2.0 → medpython-1.2.1}/README.md +0 -0
  51. {medpython-1.2.0 → medpython-1.2.1}/setup.cfg +0 -0
  52. {medpython-1.2.0 → medpython-1.2.1}/setup.py +0 -0
  53. {medpython-1.2.0 → medpython-1.2.1}/src/AlgoMarker/AlgoMarker.py +0 -0
  54. {medpython-1.2.0 → medpython-1.2.1}/src/AlgoMarker/__init__.py +0 -0
  55. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/External/README +0 -0
  56. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/AlgoMarker/AMApiTester/AMApiTester.cpp +0 -0
  57. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/AlgoMarker/AMApiTester/CMakeCustomize.txt +0 -0
  58. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/AlgoMarker/AMApiTester/CMakeLists.txt +0 -0
  59. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/AlgoMarker/AlgoMarker/AlgoMarker-export.version +0 -0
  60. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/AlgoMarker/AlgoMarker/AlgoMarker.cpp +0 -0
  61. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/AlgoMarker/AlgoMarker/AlgoMarker.h +0 -0
  62. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/AlgoMarker/AlgoMarker/AlgoMarkerConfig.txt +0 -0
  63. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/AlgoMarker/AlgoMarker/AlgoMarkerErr.h +0 -0
  64. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/AlgoMarker/AlgoMarker/AlgoMarkerInternal.cpp +0 -0
  65. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/AlgoMarker/AlgoMarker/AlgoMarkerInternal.h +0 -0
  66. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/AlgoMarker/AlgoMarker/CMakeLists.txt +0 -0
  67. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/AlgoMarker/AlgoMarker/InputTesters.h +0 -0
  68. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/AlgoMarker/AlgoMarker/MedialInfra_AM.cpp +0 -0
  69. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/AlgoMarker/AlgoMarker/SimpleExampleEGFR_AM.cpp +0 -0
  70. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/AlgoMarker/AlpineCompitible/CMakeLists.txt +0 -0
  71. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/AlgoMarker/AlpineCompitible/glibc_extension.h +0 -0
  72. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/AlgoMarker/AlpineCompitible/lib_ext.cpp +0 -0
  73. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/AlgoMarker/ApplyTool/ApplyTool.cpp +0 -0
  74. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/AlgoMarker/ApplyTool/CMakeCustomize.txt +0 -0
  75. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/AlgoMarker/ApplyTool/CMakeLists.txt +0 -0
  76. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/AlgoMarker/CommonTestingTools/CMakeLists.txt +0 -0
  77. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/AlgoMarker/CommonTestingTools/CommonTestingTools.cpp +0 -0
  78. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/AlgoMarker/CommonTestingTools/CommonTestingTools.h +0 -0
  79. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/AlgoMarker/CommonTestingTools/DataLoader.cpp +0 -0
  80. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/AlgoMarker/CommonTestingTools/DataLoader.h +0 -0
  81. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/AlgoMarker/CommonTestingTools/internal_am.cpp +0 -0
  82. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/AlgoMarker/CommonTestingTools/internal_am.h +0 -0
  83. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/AlgoMarker/DllAPITester/CMakeLists.txt +0 -0
  84. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/AlgoMarker/DllAPITester/DllAPITester.cpp +0 -0
  85. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/AlgoMarker/DynAMWrapper/CMakeLists.txt +0 -0
  86. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/AlgoMarker/DynAMWrapper/DynAMWrapper.cpp +0 -0
  87. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/AlgoMarker/DynAMWrapper/DynAMWrapper.h +0 -0
  88. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/AlgoMarker/InternalAPITester/CMakeLists.txt +0 -0
  89. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/AlgoMarker/InternalAPITester/InternalAPITester.cpp +0 -0
  90. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/AlgoMarker/LinuxSharedLib/Resources/AlgoMarker/AlgoMarker_CMakeLists +0 -0
  91. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/AlgoMarker/LinuxSharedLib/Resources/AlgoMarker/AlgoMarker_TopLeveL_CMakeLists +0 -0
  92. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/AlgoMarker/LinuxSharedLib/Resources/AlgoMarker.ubuntu/AlgoMarker_CMakeLists +0 -0
  93. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/AlgoMarker/LinuxSharedLib/Resources/AlgoMarker.ubuntu/AlgoMarker_TopLeveL_CMakeLists +0 -0
  94. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/AlgoMarker/LinuxSharedLib/Resources/LightGBM/LightGBM_CMakeLists_file +0 -0
  95. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/AlgoMarker/LinuxSharedLib/Resources/LightGBM.ubuntu/LightGBM_CMakeLists_file +0 -0
  96. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/AlgoMarker/LinuxSharedLib/Resources/boost.project-config.jam +0 -0
  97. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/AlgoMarker/LinuxSharedLib/docker_so_compilation +0 -0
  98. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/AlgoMarker/LinuxSharedLib/so_compilation +0 -0
  99. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/AlgoMarker/LinuxSharedLib/so_compilation_ubuntu +0 -0
  100. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/AlgoMarker/MemroyLeak_Test/CMakeLists.txt +0 -0
  101. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/AlgoMarker/MemroyLeak_Test/CmdArgs.h +0 -0
  102. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/AlgoMarker/MemroyLeak_Test/main.cpp +0 -0
  103. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/AlgoMarker/SignalsSumAM/CMakeLists.txt +0 -0
  104. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/AlgoMarker/SignalsSumAM/SigSum_AlgoMarker.cpp +0 -0
  105. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/AlgoMarker/SignalsSumAM/SigSum_AlgoMarker.h +0 -0
  106. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/AlgoMarker/SignalsSumAM/SigSum_AlgoMarkerErr.h +0 -0
  107. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/AlgoMarker/StressTest/CMakeLists.txt +0 -0
  108. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/AlgoMarker/StressTest/CmdArgs.h +0 -0
  109. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/AlgoMarker/StressTest/main.cpp +0 -0
  110. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/AlgoMarker/TestLibSimple/CMakeLists.txt +0 -0
  111. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/AlgoMarker/TestLibSimple/test_lib.cpp +0 -0
  112. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/AlgoMarker/full_build.sh +0 -0
  113. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/CommonLib/CommonLib/CMakeLists.txt +0 -0
  114. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/CommonLib/CommonLib/commonFunctions.cpp +0 -0
  115. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/CommonLib/CommonLib/commonHeader.h +0 -0
  116. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/InfraMed/.gitignore +0 -0
  117. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/InfraMed/InfraMed/CMakeLists.txt +0 -0
  118. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/InfraMed/InfraMed/Doc.txt +0 -0
  119. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/InfraMed/InfraMed/InfraMed.h +0 -0
  120. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/InfraMed/InfraMed/MedConvert.cpp +0 -0
  121. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/InfraMed/InfraMed/MedConvert.h +0 -0
  122. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/InfraMed/InfraMed/MedDictionary.cpp +0 -0
  123. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/InfraMed/InfraMed/MedDictionary.h +0 -0
  124. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/InfraMed/InfraMed/MedPidRepository.h +0 -0
  125. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/InfraMed/InfraMed/MedRepository.cpp +0 -0
  126. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/InfraMed/InfraMed/MedSignals.cpp +0 -0
  127. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/InfraMed/InfraMed/MedSignals.h +0 -0
  128. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/InfraMed/InfraMed/MedSparseVec.h +0 -0
  129. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/InfraMed/InfraMed/Utils.cpp +0 -0
  130. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/InfraMed/InfraMed/Utils.h +0 -0
  131. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/InfraMed/InfraMed/legacy_code.cpp +0 -0
  132. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/Logger/.gitignore +0 -0
  133. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/Logger/Logger/CMakeLists.txt +0 -0
  134. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/Logger/Logger/Logger.cpp +0 -0
  135. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/Logger/Logger/Logger.h +0 -0
  136. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedAlgo/.gitignore +0 -0
  137. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedAlgo/MedAlgo/BART.h +0 -0
  138. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedAlgo/MedAlgo/BinSplitOptimizer.h +0 -0
  139. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedAlgo/MedAlgo/CMakeLists.txt +0 -0
  140. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedAlgo/MedAlgo/ExternalNN.h +0 -0
  141. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedAlgo/MedAlgo/MedAlgo.h +0 -0
  142. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedAlgo/MedAlgo/MedBART.cpp +0 -0
  143. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedAlgo/MedAlgo/MedBART.h +0 -0
  144. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedAlgo/MedAlgo/MedBP.cpp +0 -0
  145. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedAlgo/MedAlgo/MedBP.h +0 -0
  146. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedAlgo/MedAlgo/MedBooster.h +0 -0
  147. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedAlgo/MedAlgo/MedDeepBit.cpp +0 -0
  148. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedAlgo/MedAlgo/MedDeepBit.h +0 -0
  149. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedAlgo/MedAlgo/MedGDLM.h +0 -0
  150. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedAlgo/MedAlgo/MedKNN.h +0 -0
  151. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedAlgo/MedAlgo/MedLM.cpp +0 -0
  152. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedAlgo/MedAlgo/MedLM.h +0 -0
  153. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedAlgo/MedAlgo/MedLightGBM.h +0 -0
  154. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedAlgo/MedAlgo/MedLinearModel.h +0 -0
  155. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedAlgo/MedAlgo/MedMicNet.h +0 -0
  156. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedAlgo/MedAlgo/MedMultiClass.cpp +0 -0
  157. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedAlgo/MedAlgo/MedMultiClass.h +0 -0
  158. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedAlgo/MedAlgo/MedPredictorsByMissingValues.cpp +0 -0
  159. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedAlgo/MedAlgo/MedPredictorsByMissingValues.h +0 -0
  160. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedAlgo/MedAlgo/MedQRF.cpp +0 -0
  161. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedAlgo/MedAlgo/MedQRF.h +0 -0
  162. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedAlgo/MedAlgo/MedSVM.h +0 -0
  163. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedAlgo/MedAlgo/MedSpecificGroupModels.cpp +0 -0
  164. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedAlgo/MedAlgo/MedSpecificGroupModels.h +0 -0
  165. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedAlgo/MedAlgo/MedTQRF.h +0 -0
  166. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedAlgo/MedAlgo/PredictiveModel.cpp +0 -0
  167. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedAlgo/MedAlgo/PredictiveModel.h +0 -0
  168. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedAlgo/MedAlgo/SGD.cpp +0 -0
  169. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedAlgo/MedAlgo/SGD.h +0 -0
  170. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedAlgo/MedAlgo/SamplesGenerator.cpp +0 -0
  171. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedAlgo/MedAlgo/SamplesGenerator.h +0 -0
  172. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedAlgo/MedAlgo/SimpleEnsemble.h +0 -0
  173. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedAlgo/MedAlgo/svm.cpp +0 -0
  174. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedAlgo/MedAlgo/svm.h +0 -0
  175. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedAlgo/MedAlgo/tree_shap.h +0 -0
  176. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedDescribe/MedDescribe/CMakeLists.txt +0 -0
  177. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedDescribe/MedDescribe/MedDescribe.h +0 -0
  178. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedEmbed/MedEmbed/ApplyKeras.cpp +0 -0
  179. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedEmbed/MedEmbed/ApplyKeras.h +0 -0
  180. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedEmbed/MedEmbed/CMakeLists.txt +0 -0
  181. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedEmbed/MedEmbed/MedEmbed.cpp +0 -0
  182. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedEmbed/MedEmbed/MedEmbed.h +0 -0
  183. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedFeat/.gitignore +0 -0
  184. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedFeat/MedFeat/CMakeLists.txt +0 -0
  185. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedFeat/MedFeat/MedFeat.cpp +0 -0
  186. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedFeat/MedFeat/MedFeat.h +0 -0
  187. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedFeat/MedFeat/MedOutcome.cpp +0 -0
  188. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedFeat/MedFeat/MedOutcome.h +0 -0
  189. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedIO/MedIO/CMakeLists.txt +0 -0
  190. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedIO/MedIO/MedIO.cpp +0 -0
  191. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedIO/MedIO/MedIO.h +0 -0
  192. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedIO/MedIO/MedIO_imp.h +0 -0
  193. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedMat/MedMat/CMakeLists.txt +0 -0
  194. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedMat/MedMat/MedMat.cpp +0 -0
  195. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedMat/MedMat/MedMat.h +0 -0
  196. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedMat/MedMat/MedMatConstants.h +0 -0
  197. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPlotly/JavaScript/bootstrap/bootstrap.min.css +0 -0
  198. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPlotly/JavaScript/bootstrap/bootstrap.min.js +0 -0
  199. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPlotly/JavaScript/form.html +0 -0
  200. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPlotly/JavaScript/formKPNW.html +0 -0
  201. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPlotly/JavaScript/formKPNW_D.html +0 -0
  202. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPlotly/JavaScript/formMHS.html +0 -0
  203. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPlotly/JavaScript/formMimic.html +0 -0
  204. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPlotly/JavaScript/formRambam.html +0 -0
  205. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPlotly/JavaScript/formSLU.html +0 -0
  206. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPlotly/JavaScript/jquery/jquery.min.js +0 -0
  207. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPlotly/JavaScript/jsonform/css/bootstrap.css +0 -0
  208. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPlotly/JavaScript/jsonform/css/bootstrap3.css +0 -0
  209. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPlotly/JavaScript/jsonform/js/jquery.min.js +0 -0
  210. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPlotly/JavaScript/jsonform/js/jsonform.js +0 -0
  211. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPlotly/JavaScript/jsonform/js/jsv.js +0 -0
  212. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPlotly/JavaScript/jsonform/js/underscore.js +0 -0
  213. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPlotly/JavaScript/plotly/plotly-latest.min.js +0 -0
  214. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPlotly/JavaScript/w3/w3.css +0 -0
  215. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPlotly/MedPlotly/BasicConfig.no_eGFR.txt +0 -0
  216. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPlotly/MedPlotly/BasicConfig.txt +0 -0
  217. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPlotly/MedPlotly/CMakeLists.txt +0 -0
  218. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPlotly/MedPlotly/KPConfig.txt +0 -0
  219. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPlotly/MedPlotly/KPNWConfig.WithRepProcessors.txt +0 -0
  220. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPlotly/MedPlotly/KPNWConfig.txt +0 -0
  221. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPlotly/MedPlotly/KPNWConfig_DM.txt +0 -0
  222. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPlotly/MedPlotly/MHSConfig.txt +0 -0
  223. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPlotly/MedPlotly/MedPlotly.cpp +0 -0
  224. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPlotly/MedPlotly/MedPlotly.h +0 -0
  225. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPlotly/MedPlotly/MimicConfig.txt +0 -0
  226. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPlotly/MedPlotly/RambamConfig.txt +0 -0
  227. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPlotly/MedPlotly/SLUConfig.txt +0 -0
  228. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/.gitignore +0 -0
  229. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/Config_Examples/all.signals +0 -0
  230. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/Config_Examples/chads2_config.json +0 -0
  231. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/Config_Examples/cleanDictionary.csv +0 -0
  232. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/Config_Examples/do_calc_example.json +0 -0
  233. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/Config_Examples/fragile_config.json +0 -0
  234. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/Config_Examples/full_cleaners.json +0 -0
  235. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/Config_Examples/full_rep_processors.json +0 -0
  236. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/Config_Examples/full_rep_processors_for_mhs.json +0 -0
  237. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/Config_Examples/model_json_version2_example.json +0 -0
  238. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/Config_Examples/samples_attributes.json +0 -0
  239. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/Config_Examples/signal_json_ranges.json +0 -0
  240. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/Example/Example.cpp +0 -0
  241. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/Example/Example.h +0 -0
  242. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/Example/MedModelInitExample.json +0 -0
  243. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/AggregatePredsPostProcessor.h +0 -0
  244. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/AlcoholGenerator.cpp +0 -0
  245. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/AlcoholGenerator.h +0 -0
  246. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/BinnedLmEstimates.cpp +0 -0
  247. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/BinningFeatProcessor.cpp +0 -0
  248. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/CMakeLists.txt +0 -0
  249. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/Calibration.h +0 -0
  250. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/CategoryDependencyGenerator.cpp +0 -0
  251. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/CrossValidation.cpp +0 -0
  252. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/CrossValidator.h +0 -0
  253. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/DiabetesFinderGenerator.cpp +0 -0
  254. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/DiabetesFinderGenerator.h +0 -0
  255. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/DoCalcFeatProcessor.cpp +0 -0
  256. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/DoCalcFeatProcessor.h +0 -0
  257. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/DrugIntakeGenerator.cpp +0 -0
  258. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/DrugIntakeGenerator.h +0 -0
  259. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/DuplicateProcessor.cpp +0 -0
  260. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/DuplicateProcessor.h +0 -0
  261. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/Effected_Field.h +0 -0
  262. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/Elixhauser.cpp +0 -0
  263. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/ElixhauserGenerator.h +0 -0
  264. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/EmbeddingGenerator.cpp +0 -0
  265. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/EmbeddingGenerator.h +0 -0
  266. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/ExplainWrapper.h +0 -0
  267. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/FairnessPostProcessor.h +0 -0
  268. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/FeatureEncoder.cpp +0 -0
  269. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/FeatureGenExtractTable.cpp +0 -0
  270. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/FeatureGenExtractTable.h +0 -0
  271. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/FeatureGenerator.h +0 -0
  272. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/FeatureProcess.h +0 -0
  273. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/FeatureSelector.cpp +0 -0
  274. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/IterativeImputer.cpp +0 -0
  275. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/IterativeImputer.h +0 -0
  276. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/IterativeSelector.cpp +0 -0
  277. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/KpSmokingGenerator.cpp +0 -0
  278. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/KpSmokingGenerator.h +0 -0
  279. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/MedFeatures.cpp +0 -0
  280. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/MedFeatures.h +0 -0
  281. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/MedModel.cpp +0 -0
  282. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/MedModel.h +0 -0
  283. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/MedModelExceptions.h +0 -0
  284. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/MedModelInitFromJson.cpp +0 -0
  285. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/MedProcessUtils.cpp +0 -0
  286. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/MedProcessUtils.h +0 -0
  287. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/MedProcessWrappers.cpp +0 -0
  288. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/MedProcessWrappers.h +0 -0
  289. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/MedSamples.cpp +0 -0
  290. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/MedSamples.h +0 -0
  291. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/MedValueCleaner.cpp +0 -0
  292. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/MedValueCleaner.h +0 -0
  293. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/MultiplierProcessor.cpp +0 -0
  294. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/PidClnRec.h +0 -0
  295. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/PostProcessor.cpp +0 -0
  296. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/PostProcessor.h +0 -0
  297. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/PredictorImputer.cpp +0 -0
  298. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/PredictorImputer.h +0 -0
  299. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/ProbAdjustPostProcessor.cpp +0 -0
  300. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/ProbAdjustPostProcessor.h +0 -0
  301. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/RepCalculators.cpp +0 -0
  302. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/RepCategoryDescenders.cpp +0 -0
  303. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/RepCategoryDescenders.h +0 -0
  304. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/RepClearSignalByDiag.cpp +0 -0
  305. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/RepClearSignalByDiag.h +0 -0
  306. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/RepCreateRegistry.cpp +0 -0
  307. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/RepCreateRegistry.h +0 -0
  308. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/RepFilterByChannels.cpp +0 -0
  309. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/RepFilterByChannels.h +0 -0
  310. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/RepProcess.h +0 -0
  311. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/RepReoderChannels.cpp +0 -0
  312. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/ResampleWithMissingProcessor.h +0 -0
  313. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/SampleFilter.cpp +0 -0
  314. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/SampleFilter.h +0 -0
  315. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/SmokingGenerator.cpp +0 -0
  316. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/SmokingGenerator.h +0 -0
  317. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/StripComments.cpp +0 -0
  318. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/StripComments.h +0 -0
  319. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/UnifiedSmokingGenerator.cpp +0 -0
  320. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/UnifiedSmokingGenerator.h +0 -0
  321. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/framingham_score.json +0 -0
  322. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/Resources/thin_completion_metadata +0 -0
  323. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPyExport/.gitignore +0 -0
  324. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPyExport/CMakeLists.txt +0 -0
  325. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPyExport/MedPyExport/CMakeLists.txt +0 -0
  326. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPyExport/MedPyExport/MPBootstrap.h +0 -0
  327. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPyExport/MedPyExport/MPDictionary.cpp +0 -0
  328. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPyExport/MedPyExport/MPDictionary.h +0 -0
  329. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPyExport/MedPyExport/MPFeatures.cpp +0 -0
  330. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPyExport/MedPyExport/MPFeatures.h +0 -0
  331. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPyExport/MedPyExport/MPGlobal.cpp +0 -0
  332. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPyExport/MedPyExport/MPGlobal.h +0 -0
  333. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPyExport/MedPyExport/MPLogger.cpp +0 -0
  334. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPyExport/MedPyExport/MPLogger.h +0 -0
  335. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPyExport/MedPyExport/MPMat.cpp +0 -0
  336. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPyExport/MedPyExport/MPMat.h +0 -0
  337. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPyExport/MedPyExport/MPModel.cpp +0 -0
  338. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPyExport/MedPyExport/MPModel.h +0 -0
  339. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPyExport/MedPyExport/MPPandasAdaptor.cpp +0 -0
  340. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPyExport/MedPyExport/MPPandasAdaptor.h +0 -0
  341. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPyExport/MedPyExport/MPPidRepository.cpp +0 -0
  342. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPyExport/MedPyExport/MPPidRepository.h +0 -0
  343. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPyExport/MedPyExport/MPPredictor.cpp +0 -0
  344. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPyExport/MedPyExport/MPPredictor.h +0 -0
  345. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPyExport/MedPyExport/MPSampleFilter.cpp +0 -0
  346. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPyExport/MedPyExport/MPSampleFilter.h +0 -0
  347. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPyExport/MedPyExport/MPSamples.cpp +0 -0
  348. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPyExport/MedPyExport/MPSamples.h +0 -0
  349. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPyExport/MedPyExport/MPSerializableObject.cpp +0 -0
  350. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPyExport/MedPyExport/MPSerializableObject.h +0 -0
  351. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPyExport/MedPyExport/MPSigExporter.cpp +0 -0
  352. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPyExport/MedPyExport/MPSigExporter.h +0 -0
  353. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPyExport/MedPyExport/MPSplit.cpp +0 -0
  354. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPyExport/MedPyExport/MPSplit.h +0 -0
  355. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPyExport/MedPyExport/MPTime.cpp +0 -0
  356. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPyExport/MedPyExport/MPTime.h +0 -0
  357. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPyExport/MedPyExport/MedPyCommon.cpp +0 -0
  358. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPyExport/MedPyExport/MedPyCommon.h +0 -0
  359. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPyExport/MedPyExport/MedPyExport.cpp +0 -0
  360. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPyExport/MedPyExport/MedPyExport.h +0 -0
  361. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPyExport/examples/MedProcUtils/cv.py +0 -0
  362. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPyExport/examples/MedProcUtils/cv_on_matrix.py +0 -0
  363. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPyExport/examples/MedProcUtils/learn.py +0 -0
  364. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPyExport/examples/MedProcUtils/learn_from_matrix.py +0 -0
  365. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPyExport/examples/MedProcUtils/predict.py +0 -0
  366. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPyExport/examples/MedProcUtils/predict_on_matrix.py +0 -0
  367. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPyExport/examples/MedProcUtils/shuffleMatrix.py +0 -0
  368. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPyExport/examples/get_sig.py +0 -0
  369. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPyExport/examples/learn.py +0 -0
  370. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPyExport/examples/model.py +0 -0
  371. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPyExport/examples/usig_iterate.py +0 -0
  372. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPyExport/generate_binding/LICENCE +0 -0
  373. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPyExport/generate_binding/MANIFEST.in +0 -0
  374. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPyExport/generate_binding/MedPython/CMakeLists.txt +0 -0
  375. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPyExport/generate_binding/MedPython/MedPython.cpp +0 -0
  376. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPyExport/generate_binding/MedPython/MedPython.h +0 -0
  377. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPyExport/generate_binding/MedPython/apply_directives.i +103 -103
  378. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPyExport/generate_binding/MedPython/medpython.i +0 -0
  379. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPyExport/generate_binding/MedPython/mpdocstring.i +0 -0
  380. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPyExport/generate_binding/MedPython/pythoncode.i +0 -0
  381. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPyExport/generate_binding/MedPython/scripts/fix_docstr.py +0 -0
  382. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPyExport/generate_binding/MedPython/scripts/gen_readable_doc.sh +0 -0
  383. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPyExport/generate_binding/MedPython/scripts/make_apply.py +0 -0
  384. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPyExport/generate_binding/README.md +0 -0
  385. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPyExport/generate_binding/get_wheel.sh +0 -0
  386. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPyExport/generate_binding/make-all.sh +0 -0
  387. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPyExport/generate_binding/make-simple.sh +0 -0
  388. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPyExport/generate_binding/make.sh +0 -0
  389. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPyExport/generate_binding/setup.py +0 -0
  390. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedSparseMat/MedSparseMat/CMakeLists.txt +0 -0
  391. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedSparseMat/MedSparseMat/MedSparseMat.cpp +0 -0
  392. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedSparseMat/MedSparseMat/MedSparseMat.h +0 -0
  393. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedSplit/MedSplit/CMakeLists.txt +0 -0
  394. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedSplit/MedSplit/MedSplit.cpp +0 -0
  395. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedSplit/MedSplit/MedSplit.h +0 -0
  396. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedStat/.gitignore +0 -0
  397. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedStat/MedStat/CMakeLists.txt +0 -0
  398. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedStat/MedStat/GibbsSampler.h +0 -0
  399. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedStat/MedStat/MedBootstrap.cpp +0 -0
  400. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedStat/MedStat/MedBootstrap.h +0 -0
  401. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedStat/MedStat/MedCleaner.cpp +0 -0
  402. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedStat/MedStat/MedCleaner.h +0 -0
  403. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedStat/MedStat/MedHist.cpp +0 -0
  404. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedStat/MedStat/MedHist.h +0 -0
  405. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedStat/MedStat/MedPerformance.cpp +0 -0
  406. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedStat/MedStat/MedPerformance.h +0 -0
  407. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedStat/MedStat/MedPerformance_imp.h +0 -0
  408. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedStat/MedStat/MedStat.h +0 -0
  409. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedStat/MedStat/ReadMe.txt +0 -0
  410. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedStat/MedStat/bootstrap.h +0 -0
  411. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedTime/MedTime/CMakeLists.txt +0 -0
  412. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedTime/MedTime/MedTime.cpp +0 -0
  413. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedTime/MedTime/MedTime.h +0 -0
  414. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedUtils/.gitignore +0 -0
  415. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedUtils/MedUtils/CMakeLists.txt +0 -0
  416. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedUtils/MedUtils/FilterParams.cpp +0 -0
  417. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedUtils/MedUtils/FilterParams.h +0 -0
  418. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedUtils/MedUtils/LabelParams.cpp +0 -0
  419. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedUtils/MedUtils/LabelParams.h +0 -0
  420. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedUtils/MedUtils/MedCohort.cpp +0 -0
  421. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedUtils/MedUtils/MedCohort.h +0 -0
  422. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedUtils/MedUtils/MedCompare.h +0 -0
  423. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedUtils/MedUtils/MedCrypt.cpp +0 -0
  424. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedUtils/MedUtils/MedCrypt.h +0 -0
  425. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedUtils/MedUtils/MedEnums.cpp +0 -0
  426. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedUtils/MedUtils/MedEnums.h +0 -0
  427. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedUtils/MedUtils/MedGenUtils.cpp +0 -0
  428. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedUtils/MedUtils/MedGenUtils.h +0 -0
  429. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedUtils/MedUtils/MedGenUtils_imp.h +0 -0
  430. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedUtils/MedUtils/MedGitVersion.h +0 -0
  431. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedUtils/MedUtils/MedGlobalRNG.h +0 -0
  432. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedUtils/MedUtils/MedLabels.cpp +0 -0
  433. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedUtils/MedUtils/MedLabels.h +0 -0
  434. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedUtils/MedUtils/MedMedical.cpp +0 -0
  435. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedUtils/MedUtils/MedMedical.h +0 -0
  436. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedUtils/MedUtils/MedNumeric.cpp +0 -0
  437. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedUtils/MedUtils/MedNumeric.h +0 -0
  438. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedUtils/MedUtils/MedPlot.h +0 -0
  439. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedUtils/MedUtils/MedRegistry.cpp +0 -0
  440. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedUtils/MedUtils/MedRegistry.h +0 -0
  441. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedUtils/MedUtils/MedRegistryRecord.h +0 -0
  442. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedUtils/MedUtils/MedRunPath.h +0 -0
  443. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedUtils/MedUtils/MedSamplingHelper.cpp +0 -0
  444. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedUtils/MedUtils/MedSamplingHelper.h +0 -0
  445. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedUtils/MedUtils/MedSamplingStrategy.cpp +0 -0
  446. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedUtils/MedUtils/MedSamplingStrategy.h +0 -0
  447. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedUtils/MedUtils/MedUtils.cpp +0 -0
  448. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedUtils/MedUtils/MedUtils.h +0 -0
  449. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedUtils/MedUtils/MedUtils_imp.h +0 -0
  450. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/QRF/.gitignore +0 -0
  451. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/QRF/QRF/CMakeLists.txt +0 -0
  452. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/QRF/QRF/QRF.h +0 -0
  453. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/QRF/QRF/Utils.cpp +0 -0
  454. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/QRF/QRF/Utils.h +0 -0
  455. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/Retired/Retired/CMakeLists.txt +0 -0
  456. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/Retired/Retired/MedArchiver.cpp +0 -0
  457. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/Retired/Retired/MedArchiver.h +0 -0
  458. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/Retired/Retired/MedArchiver_imp.h +0 -0
  459. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/Retired/Retired/MedDataStructures.cpp +0 -0
  460. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/Retired/Retired/MedDataStructures.h +0 -0
  461. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/SerializableObject/SerializableObject/CMakeLists.txt +0 -0
  462. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/SerializableObject/SerializableObject/SerializableObject.cpp +0 -0
  463. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/SerializableObject/SerializableObject/SerializableObject.h +0 -0
  464. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/SerializableObject/SerializableObject/SerializableObject_imp.h +0 -0
  465. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/TQRF/TQRF/CMakeLists.txt +0 -0
  466. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/TQRF/TQRF/TQRF.h +0 -0
  467. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/TQRF/TQRF_Tester/CMakeLists.txt +0 -0
  468. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/TQRF/TQRF_Tester/TQRF_Tester.cpp +0 -0
  469. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/medial_utilities/.gitignore +0 -0
  470. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/medial_utilities/medial_utilities/CMakeLists.txt +0 -0
  471. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/medial_utilities/medial_utilities/ReadMe.txt +0 -0
  472. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/medial_utilities/medial_utilities/globalRNG.h +0 -0
  473. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/medial_utilities/medial_utilities/io.cpp +0 -0
  474. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/medial_utilities/medial_utilities/mainpage.md +0 -0
  475. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/medial_utilities/medial_utilities/medial_utilities.h +0 -0
  476. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/medial_utilities/medial_utilities/medial_utilities.vcproj +0 -0
  477. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/medial_utilities/medial_utilities/numerical.cpp +0 -0
  478. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/medial_utilities/medial_utilities/utilities.cpp +0 -0
  479. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/medial_utilities/medial_utilities/vector_utils.cpp +0 -0
  480. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/medial_utilities/medial_utilities/vector_utils_dbl.cpp +0 -0
  481. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/micNet/.gitignore +0 -0
  482. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/micNet/micNet/CMakeLists.txt +0 -0
  483. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/micNet/micNet/micNet.h +0 -0
  484. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/python_condor_pragma_omp/condor_it.sh +0 -0
  485. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/python_condor_pragma_omp/condor_pragma_omp.py +0 -0
  486. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/python_condor_pragma_omp/condor_runner_template.txt +0 -0
  487. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/python_condor_pragma_omp/my_condor_submit_and_wait.py +0 -0
  488. {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/python_condor_pragma_omp/my_condor_wait.py +0 -0
  489. {medpython-1.2.0 → medpython-1.2.1}/src/medpython.egg-info/SOURCES.txt +0 -0
  490. {medpython-1.2.0 → medpython-1.2.1}/src/medpython.egg-info/dependency_links.txt +0 -0
  491. {medpython-1.2.0 → medpython-1.2.1}/src/medpython.egg-info/not-zip-safe +0 -0
  492. {medpython-1.2.0 → medpython-1.2.1}/src/medpython.egg-info/requires.txt +0 -0
  493. {medpython-1.2.0 → medpython-1.2.1}/src/medpython.egg-info/top_level.txt +0 -0
@@ -128,6 +128,20 @@ else ()
128
128
  endif()
129
129
  # XGboost
130
130
 
131
+ set(XGBOOST_VERSION "3.4.1")
132
+
133
+ if(XGBOOST_VERSION VERSION_GREATER "2.0.3")
134
+ set(XGBOOST_TARGET_DIR "")
135
+ else()
136
+ set(XGBOOST_TARGET_DIR "cpp_src")
137
+ endif()
138
+
139
+ if(XGBOOST_VERSION VERSION_GREATER_EQUAL "3.0.0")
140
+ set(XGBOOST_DOWNLOAD "-src")
141
+ else()
142
+ set(XGBOOST_DOWNLOAD "")
143
+ endif()
144
+
131
145
  set(XGBOOST_STATIC_FALLBACK OFF)
132
146
  find_package(xgboost QUIET)
133
147
 
@@ -154,9 +168,9 @@ else()
154
168
  set(XGBOOST_STATIC_FALLBACK ON)
155
169
  FetchContent_Declare(
156
170
  xgboost
157
- URL https://github.com/dmlc/xgboost/releases/download/v2.0.3/xgboost-2.0.3.tar.gz
171
+ URL https://github.com/dmlc/xgboost/releases/download/v${XGBOOST_VERSION}/xgboost${XGBOOST_DOWNLOAD}-${XGBOOST_VERSION}.tar.gz
158
172
  DOWNLOAD_EXTRACT_TIMESTAMP ON
159
- SOURCE_SUBDIR cpp_src
173
+ SOURCE_SUBDIR ${XGBOOST_TARGET_DIR}
160
174
  )
161
175
 
162
176
  set(BUILD_STATIC_LIB ON CACHE BOOL "Build XGBoost as a static library" FORCE)
@@ -168,9 +182,8 @@ else()
168
182
  endif()
169
183
  FetchContent_MakeAvailable(xgboost)
170
184
 
171
- include_directories(SYSTEM ${xgboost_SOURCE_DIR}/cpp_src/include)
172
- include_directories(SYSTEM ${xgboost_SOURCE_DIR}/cpp_src/rabit/include)
173
- include_directories(SYSTEM ${xgboost_SOURCE_DIR}/cpp_src/dmlc-core/include)
185
+ include_directories(SYSTEM ${xgboost_SOURCE_DIR}/${XGBOOST_TARGET_DIR}/include)
186
+ include_directories(SYSTEM ${xgboost_SOURCE_DIR}/${XGBOOST_TARGET_DIR}/dmlc-core/include)
174
187
 
175
188
  set(XGBOOST_TARGET xgboost)
176
189
  endif()
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: medpython
3
- Version: 1.2.0
3
+ Version: 1.2.1
4
4
  Summary: Medial EarlySign Python
5
5
  Author: Alon Lanyado
6
6
  License-Expression: MIT
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "medpython"
7
- version = "1.2.0"
7
+ version = "1.2.1"
8
8
  description = "Medial EarlySign Python"
9
9
  readme = "README.md"
10
10
  license = "MIT"
@@ -104,11 +104,25 @@ else ()
104
104
  endif()
105
105
 
106
106
  # XGboost
107
+ set(XGBOOST_VERSION "3.0.5")
108
+
109
+ if(XGBOOST_VERSION VERSION_GREATER "2.0.3")
110
+ set(XGBOOST_TARGET_DIR "")
111
+ else()
112
+ set(XGBOOST_TARGET_DIR "cpp_src")
113
+ endif()
114
+
115
+ if(XGBOOST_VERSION VERSION_GREATER_EQUAL "3.0.0")
116
+ set(XGBOOST_DOWNLOAD "-src")
117
+ else()
118
+ set(XGBOOST_DOWNLOAD "")
119
+ endif()
120
+
107
121
  FetchContent_Declare(
108
122
  xgboost
109
- URL https://github.com/dmlc/xgboost/releases/download/v2.0.3/xgboost-2.0.3.tar.gz
123
+ URL https://github.com/dmlc/xgboost/releases/download/v${XGBOOST_VERSION}/xgboost${XGBOOST_DOWNLOAD}-${XGBOOST_VERSION}.tar.gz
110
124
  DOWNLOAD_EXTRACT_TIMESTAMP ON
111
- SOURCE_SUBDIR cpp_src
125
+ SOURCE_SUBDIR ${XGBOOST_TARGET_DIR}
112
126
  )
113
127
 
114
128
  set(BUILD_STATIC_LIB ON CACHE BOOL "Build XGBoost as a static library" FORCE)
@@ -117,9 +131,10 @@ set(XGBOOST_BUILD_TESTS OFF CACHE BOOL "" FORCE)
117
131
 
118
132
  FetchContent_MakeAvailable(xgboost)
119
133
 
120
- include_directories(SYSTEM ${xgboost_SOURCE_DIR}/cpp_src/include)
121
- include_directories(SYSTEM ${xgboost_SOURCE_DIR}/cpp_src/rabit/include)
122
- include_directories(SYSTEM ${xgboost_SOURCE_DIR}/cpp_src/dmlc-core/include)
134
+
135
+
136
+ include_directories(SYSTEM ${xgboost_SOURCE_DIR}/${XGBOOST_TARGET_DIR}/include)
137
+ include_directories(SYSTEM ${xgboost_SOURCE_DIR}/${XGBOOST_TARGET_DIR}/dmlc-core/include)
123
138
 
124
139
  # LightGBM
125
140
  FetchContent_Declare(
@@ -1,182 +1,182 @@
1
- #include "InfraMed.h"
2
-
3
- #undef LOCAL_SECTION
4
- #define LOCAL_SECTION LOG_REP
5
- #define LOCAL_LEVEL LOG_DEF_LEVEL
6
- extern MedLogger global_logger;
7
-
8
- int InMemRepData::insertData_to_buffer(int pid, int sid, int *time_data, float *val_data, int n_time, int n_val,
9
- const MedSignals &sigs, map<pair<int, int>, pair<int, vector<char>>> &data) {
10
- int n_time_ch = sigs.Sid2Info[sid].n_time_channels;
11
- int n_val_ch = sigs.Sid2Info[sid].n_val_channels;
12
-
13
- int n_elem_by_time = 0;
14
- int n_elem_by_val = 0;
15
- if (n_time_ch > 0) n_elem_by_time = n_time/n_time_ch;
16
- if (n_val_ch > 0) n_elem_by_val = n_val/n_val_ch;
17
-
18
-
19
- //MLOG(">>>> sid %d ch(%d,%d) elem(%d,%d) n(%d,%d)\n", sid, n_time_ch, n_val_ch, n_elem_by_time, n_elem_by_val, n_time, n_val);
20
- // a few sanity tests
21
- if ((n_time != n_elem_by_time*n_time_ch) || (n_val != n_elem_by_val*n_val_ch) ||
22
- (n_time_ch == 0 && n_time > 0) || (n_val_ch == 0 && n_val > 0) ||
23
- (n_time_ch > 0 && n_time == 0) || (n_val_ch > 0 && n_val == 0) ||
24
- (n_time_ch > 0 && n_val_ch > 0 && n_elem_by_time != n_elem_by_val))
25
- {
26
- MERR("ERROR: InMemRepData: non matching time/value numbers for pid %d, sid %d : needed (%d,%d) per element , got (%d,%d) ...\n",
27
- pid, sid, n_time_ch, n_val_ch, n_time, n_val);
28
- return -1;
29
- }
30
- int n_elem = max(n_elem_by_time, n_elem_by_val);
31
-
32
- int len_bytes = sigs.Sid2Info[sid].bytes_len;
33
-
34
- vector<char> elem(len_bytes*n_elem);
35
-
36
- int type = sigs.Sid2Info[sid].type;
37
-
38
- //MLOG("pid %d sid %d type %d len_bytes %d nelem %d\n", pid, sid, type, len_bytes, n_elem);
39
- int *tdata = time_data;
40
- float *vdata = val_data;
41
-
42
- if (n_time_ch == 0) tdata = NULL;
43
- if (n_val_ch == 0) vdata = NULL;
44
-
45
- //MLOG("pid %d sid %d type %d len_bytes %d nelem %d\n", pid, sid, type, len_bytes, n_elem);
46
- if (type == T_Generic) {
47
- GenericSigVec gsv;
48
- gsv.init(sigs.Sid2Info[sid]);
49
- gsv.set_data(&elem[0], n_elem);
50
- for (int i = 0; i < n_elem; i++) {
51
- gsv.Set(i, tdata, vdata);
52
- if (tdata) tdata += n_time_ch;
53
- if (vdata) vdata += n_val_ch;
54
- }
55
- }
56
- else {
57
- for (int i = 0; i < n_elem; i++) {
58
- if (MedSignalsSingleElemFill(type, &elem[len_bytes*i], tdata, vdata) < 0) {
59
- MERR("ERROR: InMemRepData::insertData failed fill element %d/%d.", i, n_elem);
60
- return -1;
61
- }
62
-
63
- if (tdata) tdata += n_time_ch;
64
- if (vdata) vdata += n_val_ch;
65
- }
66
- }
67
- // all is ready -> we push it to the map
68
- pair<int, int> pid_sid(pid, sid);
69
- pair<int, vector<char>> n_data;
70
- if (data.find(pid_sid) == data.end()) {
71
- data[pid_sid] = n_data;
72
- data[pid_sid].second = elem;
73
- data[pid_sid].first = n_elem;
74
- //MLOG("inserted pid %d sid %d nelem %d bytes %d size %d\n", pid, sid, n_elem, len_bytes, elem.size());
75
- }
76
- else {
77
- data[pid_sid].second.insert(data[pid_sid].second.end(), elem.begin(), elem.end());
78
- data[pid_sid].first += n_elem;
79
- }
80
-
81
- return 0;
82
- }
83
-
84
- //-------------------------------------------------------------------------------------------------------------------
85
- int InMemRepData::insertData(int pid, const char *sig, int *time_data, float *val_data, int n_time, int n_val)
86
- {
87
- int sid = my_rep->sigs.sid(string(sig));
88
- if (sid < 0) {
89
- MERR("ERROR: InMemRepData: sig %s in not is signals file (did you read the file\?\?)\n", sig);
90
- return -1;
91
- }
92
- return insertData(pid, sid, time_data, val_data, n_time, n_val);
93
-
94
- }
95
-
96
- //-------------------------------------------------------------------------------------------------------------------
97
- int InMemRepData::insertData(int pid, int sid, int *time_data, float *val_data, int n_time, int n_val)
98
- {
99
- return InMemRepData::insertData_to_buffer(pid, sid, time_data, val_data, n_time, n_val, my_rep->sigs, data);
100
- }
101
-
102
- //-------------------------------------------------------------------------------------------------------------------
103
- int InMemRepData::sort_pid_sid(int pid, int sid)
104
- {
105
- pair<int, int> pid_sid(pid, sid);
106
-
107
- if (data.find(pid_sid) == data.end()) return 0; // nothing to do.
108
-
109
- if (data[pid_sid].first <= 1) return 0; // no need to sort a single variable
110
-
111
- int (*compare_func)(const void *, const void *);
112
- GenericSigVec gsv;
113
- switch (my_rep->sigs.Sid2Info[sid].type) {
114
- case T_Value: compare_func = &MedSignalsCompareSig<SVal>; break;
115
- case T_DateVal: compare_func = &MedSignalsCompareSig<SDateVal>; break;
116
- case T_TimeVal: compare_func = &MedSignalsCompareSig<STimeVal>; break;
117
- case T_DateRangeVal: compare_func = &MedSignalsCompareSig<SDateRangeVal>; break;
118
- case T_TimeStamp: compare_func = &MedSignalsCompareSig<STimeStamp>; break;
119
- case T_TimeRangeVal: compare_func = &MedSignalsCompareSig<STimeRangeVal>; break;
120
- case T_DateVal2: compare_func = &MedSignalsCompareSig<SDateVal2>; break;
121
- case T_TimeLongVal: compare_func = &MedSignalsCompareSig<STimeLongVal>; break;
122
- case T_DateShort2: compare_func = &MedSignalsCompareSig<SDateShort2>; break;
123
- case T_ValShort2: compare_func = &MedSignalsCompareSig<SValShort2>; break;
124
- case T_ValShort4: compare_func = &MedSignalsCompareSig<SValShort4>; break;
125
- case T_DateRangeVal2: compare_func = &MedSignalsCompareSig<SDateRangeVal2>; break;
126
- case T_DateFloat2: compare_func = &MedSignalsCompareSig<SDateFloat2>; break;
127
- case T_TimeShort4: compare_func = &MedSignalsCompareSig<STimeShort4>; break;
128
- case T_Generic:
129
- gsv.init(my_rep->sigs.Sid2Info[sid]);
130
- gsv.inplace_sort_data(&data[pid_sid].second[0], data[pid_sid].first);
131
- return 0;
132
- //case T_CompactDateVal: break; // not fully supported yet
133
- default: MERR("ERROR:sort_pid_sid Unknown sig_type %d\n", my_rep->sigs.Sid2Info[sid].type);
134
- return -1;
135
- }
136
-
137
- //MLOG("pid %d sid %d len %d bytes %d first_val %f\n", pid, sid, data[pid_sid].first, my_rep->sigs.Sid2Info[sid].bytes_len, data[pid_sid].second[0]);
138
- qsort(&data[pid_sid].second[0], data[pid_sid].first, my_rep->sigs.Sid2Info[sid].bytes_len, compare_func);
139
-
140
- return 0;
141
- }
142
-
143
- //-------------------------------------------------------------------------------------------------------------------
144
- int InMemRepData::sortData()
145
- {
146
- for (auto &data_elem : data) {
147
- //MLOG("Now sorting pid %d sid %d (%s)\n", data_elem.first.first, data_elem.first.second, my_rep->sigs.Sid2Name[data_elem.first.second].c_str());
148
- if (sort_pid_sid(data_elem.first.first, data_elem.first.second) < 0) {
149
- MERR("FAILED:: InMemRepData::sortData() failed sorting pid %d sid %d\n", data_elem.first.first, data_elem.first.second);
150
- return -1;
151
- }
152
- }
153
- return 0;
154
- }
155
-
156
- //-------------------------------------------------------------------------------------------------------------------
157
- void *InMemRepData::get_from_buffer(int pid, int sid, int &len, const map<pair<int, int>, pair<int, vector<char>>> &data) {
158
- pair<int, int> pid_sid(pid, sid);
159
- if (data.find(pid_sid) == data.end()) {
160
- len = 0;
161
- return NULL;
162
- }
163
-
164
- len = data.at(pid_sid).first;
165
- return (void *)&data.at(pid_sid).second[0];
166
- }
167
-
168
- void * InMemRepData::get(int pid, int sid, int &len)
169
- {
170
- return InMemRepData::get_from_buffer(pid, sid, len, data);
171
- }
172
-
173
- void InMemRepData::erase_pid_data(int pid) {
174
- //Erase from data all (pid, sid):
175
- for ( auto &it : my_rep->sigs.Name2Sid) {
176
- pair<int, int> pid_sid(pid, it.second);
177
- if (data.find(pid_sid) != data.end()) {
178
- data.erase(pid_sid);
179
- }
180
- }
181
-
1
+ #include "InfraMed.h"
2
+
3
+ #undef LOCAL_SECTION
4
+ #define LOCAL_SECTION LOG_REP
5
+ #define LOCAL_LEVEL LOG_DEF_LEVEL
6
+ extern MedLogger global_logger;
7
+
8
+ int InMemRepData::insertData_to_buffer(int pid, int sid, int *time_data, float *val_data, int n_time, int n_val,
9
+ const MedSignals &sigs, map<pair<int, int>, pair<int, vector<char>>> &data) {
10
+ int n_time_ch = sigs.Sid2Info[sid].n_time_channels;
11
+ int n_val_ch = sigs.Sid2Info[sid].n_val_channels;
12
+
13
+ int n_elem_by_time = 0;
14
+ int n_elem_by_val = 0;
15
+ if (n_time_ch > 0) n_elem_by_time = n_time/n_time_ch;
16
+ if (n_val_ch > 0) n_elem_by_val = n_val/n_val_ch;
17
+
18
+
19
+ //MLOG(">>>> sid %d ch(%d,%d) elem(%d,%d) n(%d,%d)\n", sid, n_time_ch, n_val_ch, n_elem_by_time, n_elem_by_val, n_time, n_val);
20
+ // a few sanity tests
21
+ if ((n_time != n_elem_by_time*n_time_ch) || (n_val != n_elem_by_val*n_val_ch) ||
22
+ (n_time_ch == 0 && n_time > 0) || (n_val_ch == 0 && n_val > 0) ||
23
+ (n_time_ch > 0 && n_time == 0) || (n_val_ch > 0 && n_val == 0) ||
24
+ (n_time_ch > 0 && n_val_ch > 0 && n_elem_by_time != n_elem_by_val))
25
+ {
26
+ MERR("ERROR: InMemRepData: non matching time/value numbers for pid %d, sid %d : needed (%d,%d) per element , got (%d,%d) ...\n",
27
+ pid, sid, n_time_ch, n_val_ch, n_time, n_val);
28
+ return -1;
29
+ }
30
+ int n_elem = max(n_elem_by_time, n_elem_by_val);
31
+
32
+ int len_bytes = sigs.Sid2Info[sid].bytes_len;
33
+
34
+ vector<char> elem(static_cast<size_t>(len_bytes) * static_cast<size_t>(n_elem));
35
+
36
+ int type = sigs.Sid2Info[sid].type;
37
+
38
+ //MLOG("pid %d sid %d type %d len_bytes %d nelem %d\n", pid, sid, type, len_bytes, n_elem);
39
+ int *tdata = time_data;
40
+ float *vdata = val_data;
41
+
42
+ if (n_time_ch == 0) tdata = NULL;
43
+ if (n_val_ch == 0) vdata = NULL;
44
+
45
+ //MLOG("pid %d sid %d type %d len_bytes %d nelem %d\n", pid, sid, type, len_bytes, n_elem);
46
+ if (type == T_Generic) {
47
+ GenericSigVec gsv;
48
+ gsv.init(sigs.Sid2Info[sid]);
49
+ gsv.set_data(&elem[0], n_elem);
50
+ for (int i = 0; i < n_elem; i++) {
51
+ gsv.Set(i, tdata, vdata);
52
+ if (tdata) tdata += n_time_ch;
53
+ if (vdata) vdata += n_val_ch;
54
+ }
55
+ }
56
+ else {
57
+ for (int i = 0; i < n_elem; i++) {
58
+ if (MedSignalsSingleElemFill(type, &elem[static_cast<size_t>(len_bytes) * static_cast<size_t>(i)], tdata, vdata) < 0) {
59
+ MERR("ERROR: InMemRepData::insertData failed fill element %d/%d.", i, n_elem);
60
+ return -1;
61
+ }
62
+
63
+ if (tdata) tdata += n_time_ch;
64
+ if (vdata) vdata += n_val_ch;
65
+ }
66
+ }
67
+ // all is ready -> we push it to the map
68
+ pair<int, int> pid_sid(pid, sid);
69
+ pair<int, vector<char>> n_data;
70
+ if (data.find(pid_sid) == data.end()) {
71
+ data[pid_sid] = n_data;
72
+ data[pid_sid].second = elem;
73
+ data[pid_sid].first = n_elem;
74
+ //MLOG("inserted pid %d sid %d nelem %d bytes %d size %d\n", pid, sid, n_elem, len_bytes, elem.size());
75
+ }
76
+ else {
77
+ data[pid_sid].second.insert(data[pid_sid].second.end(), elem.begin(), elem.end());
78
+ data[pid_sid].first += n_elem;
79
+ }
80
+
81
+ return 0;
82
+ }
83
+
84
+ //-------------------------------------------------------------------------------------------------------------------
85
+ int InMemRepData::insertData(int pid, const char *sig, int *time_data, float *val_data, int n_time, int n_val)
86
+ {
87
+ int sid = my_rep->sigs.sid(string(sig));
88
+ if (sid < 0) {
89
+ MERR("ERROR: InMemRepData: sig %s in not is signals file (did you read the file\?\?)\n", sig);
90
+ return -1;
91
+ }
92
+ return insertData(pid, sid, time_data, val_data, n_time, n_val);
93
+
94
+ }
95
+
96
+ //-------------------------------------------------------------------------------------------------------------------
97
+ int InMemRepData::insertData(int pid, int sid, int *time_data, float *val_data, int n_time, int n_val)
98
+ {
99
+ return InMemRepData::insertData_to_buffer(pid, sid, time_data, val_data, n_time, n_val, my_rep->sigs, data);
100
+ }
101
+
102
+ //-------------------------------------------------------------------------------------------------------------------
103
+ int InMemRepData::sort_pid_sid(int pid, int sid)
104
+ {
105
+ pair<int, int> pid_sid(pid, sid);
106
+
107
+ if (data.find(pid_sid) == data.end()) return 0; // nothing to do.
108
+
109
+ if (data[pid_sid].first <= 1) return 0; // no need to sort a single variable
110
+
111
+ int (*compare_func)(const void *, const void *);
112
+ GenericSigVec gsv;
113
+ switch (my_rep->sigs.Sid2Info[sid].type) {
114
+ case T_Value: compare_func = &MedSignalsCompareSig<SVal>; break;
115
+ case T_DateVal: compare_func = &MedSignalsCompareSig<SDateVal>; break;
116
+ case T_TimeVal: compare_func = &MedSignalsCompareSig<STimeVal>; break;
117
+ case T_DateRangeVal: compare_func = &MedSignalsCompareSig<SDateRangeVal>; break;
118
+ case T_TimeStamp: compare_func = &MedSignalsCompareSig<STimeStamp>; break;
119
+ case T_TimeRangeVal: compare_func = &MedSignalsCompareSig<STimeRangeVal>; break;
120
+ case T_DateVal2: compare_func = &MedSignalsCompareSig<SDateVal2>; break;
121
+ case T_TimeLongVal: compare_func = &MedSignalsCompareSig<STimeLongVal>; break;
122
+ case T_DateShort2: compare_func = &MedSignalsCompareSig<SDateShort2>; break;
123
+ case T_ValShort2: compare_func = &MedSignalsCompareSig<SValShort2>; break;
124
+ case T_ValShort4: compare_func = &MedSignalsCompareSig<SValShort4>; break;
125
+ case T_DateRangeVal2: compare_func = &MedSignalsCompareSig<SDateRangeVal2>; break;
126
+ case T_DateFloat2: compare_func = &MedSignalsCompareSig<SDateFloat2>; break;
127
+ case T_TimeShort4: compare_func = &MedSignalsCompareSig<STimeShort4>; break;
128
+ case T_Generic:
129
+ gsv.init(my_rep->sigs.Sid2Info[sid]);
130
+ gsv.inplace_sort_data(&data[pid_sid].second[0], data[pid_sid].first);
131
+ return 0;
132
+ //case T_CompactDateVal: break; // not fully supported yet
133
+ default: MERR("ERROR:sort_pid_sid Unknown sig_type %d\n", my_rep->sigs.Sid2Info[sid].type);
134
+ return -1;
135
+ }
136
+
137
+ //MLOG("pid %d sid %d len %d bytes %d first_val %f\n", pid, sid, data[pid_sid].first, my_rep->sigs.Sid2Info[sid].bytes_len, data[pid_sid].second[0]);
138
+ qsort(&data[pid_sid].second[0], data[pid_sid].first, my_rep->sigs.Sid2Info[sid].bytes_len, compare_func);
139
+
140
+ return 0;
141
+ }
142
+
143
+ //-------------------------------------------------------------------------------------------------------------------
144
+ int InMemRepData::sortData()
145
+ {
146
+ for (auto &data_elem : data) {
147
+ //MLOG("Now sorting pid %d sid %d (%s)\n", data_elem.first.first, data_elem.first.second, my_rep->sigs.Sid2Name[data_elem.first.second].c_str());
148
+ if (sort_pid_sid(data_elem.first.first, data_elem.first.second) < 0) {
149
+ MERR("FAILED:: InMemRepData::sortData() failed sorting pid %d sid %d\n", data_elem.first.first, data_elem.first.second);
150
+ return -1;
151
+ }
152
+ }
153
+ return 0;
154
+ }
155
+
156
+ //-------------------------------------------------------------------------------------------------------------------
157
+ void *InMemRepData::get_from_buffer(int pid, int sid, int &len, const map<pair<int, int>, pair<int, vector<char>>> &data) {
158
+ pair<int, int> pid_sid(pid, sid);
159
+ if (data.find(pid_sid) == data.end()) {
160
+ len = 0;
161
+ return NULL;
162
+ }
163
+
164
+ len = data.at(pid_sid).first;
165
+ return (void *)&data.at(pid_sid).second[0];
166
+ }
167
+
168
+ void * InMemRepData::get(int pid, int sid, int &len)
169
+ {
170
+ return InMemRepData::get_from_buffer(pid, sid, len, data);
171
+ }
172
+
173
+ void InMemRepData::erase_pid_data(int pid) {
174
+ //Erase from data all (pid, sid):
175
+ for ( auto &it : my_rep->sigs.Name2Sid) {
176
+ pair<int, int> pid_sid(pid, it.second);
177
+ if (data.find(pid_sid) != data.end()) {
178
+ data.erase(pid_sid);
179
+ }
180
+ }
181
+
182
182
  }