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.
- {medpython-1.2.0 → medpython-1.2.1}/CMakeLists.txt +18 -5
- {medpython-1.2.0/src/medpython.egg-info → medpython-1.2.1}/PKG-INFO +1 -1
- {medpython-1.2.0 → medpython-1.2.1}/pyproject.toml +1 -1
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/AlgoMarker/CMakeLists.txt +20 -5
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/InfraMed/InfraMed/InMemData.cpp +181 -181
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/InfraMed/InfraMed/MedIndex.cpp +1200 -1200
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/InfraMed/InfraMed/MedPidRepository.cpp +1 -1
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedAlgo/MedAlgo/BART.cpp +8 -8
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedAlgo/MedAlgo/BinSplitOptimizer.cpp +5 -5
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedAlgo/MedAlgo/MedAlgo.cpp +4 -5
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedAlgo/MedAlgo/MedBooster.cpp +1 -1
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedAlgo/MedAlgo/MedCluster.cpp +1 -1
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedAlgo/MedAlgo/MedGDLM.cpp +3 -3
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedAlgo/MedAlgo/MedKNN.cpp +4 -4
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedAlgo/MedAlgo/MedLasso.cpp +2 -2
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedAlgo/MedAlgo/MedLightGBM.cpp +1 -1
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedAlgo/MedAlgo/MedLinearModel.cpp +3 -3
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedAlgo/MedAlgo/MedSvm.cpp +148 -148
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedAlgo/MedAlgo/MedXGB.cpp +5 -5
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedAlgo/MedAlgo/MedXGB.h +1 -2
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedAlgo/MedAlgo/SimpleEnsemble.cpp +1 -1
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedAlgo/MedAlgo/tree_shap.cpp +10 -10
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedDescribe/MedDescribe/MedDescribe.cpp +275 -275
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedMat/MedMat/MedMat_imp.h +2 -2
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/AggregatePredsPostProcessor.cpp +5 -5
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/Calibration.cpp +1 -1
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/ExplainWrapper.cpp +1 -1
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/FairnessPostProcessor.cpp +2 -2
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/FeatureGenerator.cpp +2 -2
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/FeatureProcess.cpp +2 -2
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/PanelCompleter.cpp +1182 -1182
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/RepProcess.cpp +9 -9
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/ResampleWithMissingProcessor.cpp +1 -1
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPyExport/MedPyExport/MPBootstrap.cpp +2 -2
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPyExport/README.md +5 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPyExport/generate_binding/CMakeLists.txt +18 -5
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPyExport/generate_binding/MedPython/medial-numpy.i +2 -2
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPyExport/generate_binding/pyproject.toml +1 -1
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedStat/MedStat/GibbsSampler.cpp +7 -7
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedStat/MedStat/MedStat.cpp +19 -19
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedStat/MedStat/bootstrap.cpp +9 -9
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedUtils/MedUtils/MedPlot.cpp +622 -622
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/QRF/QRF/QRF.cpp +10 -10
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/TQRF/TQRF/TQRF.cpp +2521 -2521
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/medial_utilities/medial_utilities/clustering.cpp +1 -1
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/micNet/micNet/micNet.cpp +1 -1
- {medpython-1.2.0 → medpython-1.2.1/src/medpython.egg-info}/PKG-INFO +1 -1
- {medpython-1.2.0 → medpython-1.2.1}/LICENCE +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/MANIFEST.in +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/README.md +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/setup.cfg +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/setup.py +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/AlgoMarker/AlgoMarker.py +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/AlgoMarker/__init__.py +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/External/README +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/AlgoMarker/AMApiTester/AMApiTester.cpp +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/AlgoMarker/AMApiTester/CMakeCustomize.txt +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/AlgoMarker/AMApiTester/CMakeLists.txt +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/AlgoMarker/AlgoMarker/AlgoMarker-export.version +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/AlgoMarker/AlgoMarker/AlgoMarker.cpp +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/AlgoMarker/AlgoMarker/AlgoMarker.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/AlgoMarker/AlgoMarker/AlgoMarkerConfig.txt +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/AlgoMarker/AlgoMarker/AlgoMarkerErr.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/AlgoMarker/AlgoMarker/AlgoMarkerInternal.cpp +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/AlgoMarker/AlgoMarker/AlgoMarkerInternal.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/AlgoMarker/AlgoMarker/CMakeLists.txt +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/AlgoMarker/AlgoMarker/InputTesters.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/AlgoMarker/AlgoMarker/MedialInfra_AM.cpp +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/AlgoMarker/AlgoMarker/SimpleExampleEGFR_AM.cpp +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/AlgoMarker/AlpineCompitible/CMakeLists.txt +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/AlgoMarker/AlpineCompitible/glibc_extension.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/AlgoMarker/AlpineCompitible/lib_ext.cpp +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/AlgoMarker/ApplyTool/ApplyTool.cpp +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/AlgoMarker/ApplyTool/CMakeCustomize.txt +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/AlgoMarker/ApplyTool/CMakeLists.txt +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/AlgoMarker/CommonTestingTools/CMakeLists.txt +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/AlgoMarker/CommonTestingTools/CommonTestingTools.cpp +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/AlgoMarker/CommonTestingTools/CommonTestingTools.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/AlgoMarker/CommonTestingTools/DataLoader.cpp +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/AlgoMarker/CommonTestingTools/DataLoader.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/AlgoMarker/CommonTestingTools/internal_am.cpp +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/AlgoMarker/CommonTestingTools/internal_am.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/AlgoMarker/DllAPITester/CMakeLists.txt +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/AlgoMarker/DllAPITester/DllAPITester.cpp +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/AlgoMarker/DynAMWrapper/CMakeLists.txt +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/AlgoMarker/DynAMWrapper/DynAMWrapper.cpp +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/AlgoMarker/DynAMWrapper/DynAMWrapper.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/AlgoMarker/InternalAPITester/CMakeLists.txt +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/AlgoMarker/InternalAPITester/InternalAPITester.cpp +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/AlgoMarker/LinuxSharedLib/Resources/AlgoMarker/AlgoMarker_CMakeLists +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/AlgoMarker/LinuxSharedLib/Resources/AlgoMarker/AlgoMarker_TopLeveL_CMakeLists +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/AlgoMarker/LinuxSharedLib/Resources/AlgoMarker.ubuntu/AlgoMarker_CMakeLists +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/AlgoMarker/LinuxSharedLib/Resources/AlgoMarker.ubuntu/AlgoMarker_TopLeveL_CMakeLists +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/AlgoMarker/LinuxSharedLib/Resources/LightGBM/LightGBM_CMakeLists_file +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/AlgoMarker/LinuxSharedLib/Resources/LightGBM.ubuntu/LightGBM_CMakeLists_file +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/AlgoMarker/LinuxSharedLib/Resources/boost.project-config.jam +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/AlgoMarker/LinuxSharedLib/docker_so_compilation +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/AlgoMarker/LinuxSharedLib/so_compilation +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/AlgoMarker/LinuxSharedLib/so_compilation_ubuntu +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/AlgoMarker/MemroyLeak_Test/CMakeLists.txt +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/AlgoMarker/MemroyLeak_Test/CmdArgs.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/AlgoMarker/MemroyLeak_Test/main.cpp +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/AlgoMarker/SignalsSumAM/CMakeLists.txt +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/AlgoMarker/SignalsSumAM/SigSum_AlgoMarker.cpp +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/AlgoMarker/SignalsSumAM/SigSum_AlgoMarker.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/AlgoMarker/SignalsSumAM/SigSum_AlgoMarkerErr.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/AlgoMarker/StressTest/CMakeLists.txt +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/AlgoMarker/StressTest/CmdArgs.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/AlgoMarker/StressTest/main.cpp +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/AlgoMarker/TestLibSimple/CMakeLists.txt +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/AlgoMarker/TestLibSimple/test_lib.cpp +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/AlgoMarker/full_build.sh +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/CommonLib/CommonLib/CMakeLists.txt +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/CommonLib/CommonLib/commonFunctions.cpp +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/CommonLib/CommonLib/commonHeader.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/InfraMed/.gitignore +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/InfraMed/InfraMed/CMakeLists.txt +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/InfraMed/InfraMed/Doc.txt +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/InfraMed/InfraMed/InfraMed.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/InfraMed/InfraMed/MedConvert.cpp +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/InfraMed/InfraMed/MedConvert.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/InfraMed/InfraMed/MedDictionary.cpp +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/InfraMed/InfraMed/MedDictionary.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/InfraMed/InfraMed/MedPidRepository.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/InfraMed/InfraMed/MedRepository.cpp +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/InfraMed/InfraMed/MedSignals.cpp +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/InfraMed/InfraMed/MedSignals.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/InfraMed/InfraMed/MedSparseVec.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/InfraMed/InfraMed/Utils.cpp +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/InfraMed/InfraMed/Utils.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/InfraMed/InfraMed/legacy_code.cpp +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/Logger/.gitignore +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/Logger/Logger/CMakeLists.txt +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/Logger/Logger/Logger.cpp +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/Logger/Logger/Logger.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedAlgo/.gitignore +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedAlgo/MedAlgo/BART.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedAlgo/MedAlgo/BinSplitOptimizer.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedAlgo/MedAlgo/CMakeLists.txt +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedAlgo/MedAlgo/ExternalNN.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedAlgo/MedAlgo/MedAlgo.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedAlgo/MedAlgo/MedBART.cpp +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedAlgo/MedAlgo/MedBART.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedAlgo/MedAlgo/MedBP.cpp +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedAlgo/MedAlgo/MedBP.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedAlgo/MedAlgo/MedBooster.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedAlgo/MedAlgo/MedDeepBit.cpp +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedAlgo/MedAlgo/MedDeepBit.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedAlgo/MedAlgo/MedGDLM.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedAlgo/MedAlgo/MedKNN.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedAlgo/MedAlgo/MedLM.cpp +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedAlgo/MedAlgo/MedLM.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedAlgo/MedAlgo/MedLightGBM.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedAlgo/MedAlgo/MedLinearModel.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedAlgo/MedAlgo/MedMicNet.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedAlgo/MedAlgo/MedMultiClass.cpp +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedAlgo/MedAlgo/MedMultiClass.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedAlgo/MedAlgo/MedPredictorsByMissingValues.cpp +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedAlgo/MedAlgo/MedPredictorsByMissingValues.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedAlgo/MedAlgo/MedQRF.cpp +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedAlgo/MedAlgo/MedQRF.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedAlgo/MedAlgo/MedSVM.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedAlgo/MedAlgo/MedSpecificGroupModels.cpp +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedAlgo/MedAlgo/MedSpecificGroupModels.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedAlgo/MedAlgo/MedTQRF.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedAlgo/MedAlgo/PredictiveModel.cpp +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedAlgo/MedAlgo/PredictiveModel.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedAlgo/MedAlgo/SGD.cpp +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedAlgo/MedAlgo/SGD.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedAlgo/MedAlgo/SamplesGenerator.cpp +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedAlgo/MedAlgo/SamplesGenerator.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedAlgo/MedAlgo/SimpleEnsemble.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedAlgo/MedAlgo/svm.cpp +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedAlgo/MedAlgo/svm.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedAlgo/MedAlgo/tree_shap.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedDescribe/MedDescribe/CMakeLists.txt +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedDescribe/MedDescribe/MedDescribe.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedEmbed/MedEmbed/ApplyKeras.cpp +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedEmbed/MedEmbed/ApplyKeras.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedEmbed/MedEmbed/CMakeLists.txt +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedEmbed/MedEmbed/MedEmbed.cpp +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedEmbed/MedEmbed/MedEmbed.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedFeat/.gitignore +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedFeat/MedFeat/CMakeLists.txt +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedFeat/MedFeat/MedFeat.cpp +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedFeat/MedFeat/MedFeat.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedFeat/MedFeat/MedOutcome.cpp +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedFeat/MedFeat/MedOutcome.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedIO/MedIO/CMakeLists.txt +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedIO/MedIO/MedIO.cpp +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedIO/MedIO/MedIO.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedIO/MedIO/MedIO_imp.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedMat/MedMat/CMakeLists.txt +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedMat/MedMat/MedMat.cpp +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedMat/MedMat/MedMat.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedMat/MedMat/MedMatConstants.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPlotly/JavaScript/bootstrap/bootstrap.min.css +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPlotly/JavaScript/bootstrap/bootstrap.min.js +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPlotly/JavaScript/form.html +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPlotly/JavaScript/formKPNW.html +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPlotly/JavaScript/formKPNW_D.html +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPlotly/JavaScript/formMHS.html +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPlotly/JavaScript/formMimic.html +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPlotly/JavaScript/formRambam.html +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPlotly/JavaScript/formSLU.html +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPlotly/JavaScript/jquery/jquery.min.js +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPlotly/JavaScript/jsonform/css/bootstrap.css +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPlotly/JavaScript/jsonform/css/bootstrap3.css +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPlotly/JavaScript/jsonform/js/jquery.min.js +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPlotly/JavaScript/jsonform/js/jsonform.js +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPlotly/JavaScript/jsonform/js/jsv.js +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPlotly/JavaScript/jsonform/js/underscore.js +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPlotly/JavaScript/plotly/plotly-latest.min.js +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPlotly/JavaScript/w3/w3.css +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPlotly/MedPlotly/BasicConfig.no_eGFR.txt +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPlotly/MedPlotly/BasicConfig.txt +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPlotly/MedPlotly/CMakeLists.txt +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPlotly/MedPlotly/KPConfig.txt +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPlotly/MedPlotly/KPNWConfig.WithRepProcessors.txt +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPlotly/MedPlotly/KPNWConfig.txt +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPlotly/MedPlotly/KPNWConfig_DM.txt +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPlotly/MedPlotly/MHSConfig.txt +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPlotly/MedPlotly/MedPlotly.cpp +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPlotly/MedPlotly/MedPlotly.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPlotly/MedPlotly/MimicConfig.txt +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPlotly/MedPlotly/RambamConfig.txt +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPlotly/MedPlotly/SLUConfig.txt +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/.gitignore +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/Config_Examples/all.signals +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/Config_Examples/chads2_config.json +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/Config_Examples/cleanDictionary.csv +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/Config_Examples/do_calc_example.json +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/Config_Examples/fragile_config.json +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/Config_Examples/full_cleaners.json +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/Config_Examples/full_rep_processors.json +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/Config_Examples/full_rep_processors_for_mhs.json +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/Config_Examples/model_json_version2_example.json +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/Config_Examples/samples_attributes.json +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/Config_Examples/signal_json_ranges.json +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/Example/Example.cpp +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/Example/Example.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/Example/MedModelInitExample.json +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/AggregatePredsPostProcessor.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/AlcoholGenerator.cpp +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/AlcoholGenerator.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/BinnedLmEstimates.cpp +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/BinningFeatProcessor.cpp +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/CMakeLists.txt +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/Calibration.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/CategoryDependencyGenerator.cpp +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/CrossValidation.cpp +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/CrossValidator.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/DiabetesFinderGenerator.cpp +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/DiabetesFinderGenerator.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/DoCalcFeatProcessor.cpp +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/DoCalcFeatProcessor.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/DrugIntakeGenerator.cpp +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/DrugIntakeGenerator.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/DuplicateProcessor.cpp +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/DuplicateProcessor.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/Effected_Field.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/Elixhauser.cpp +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/ElixhauserGenerator.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/EmbeddingGenerator.cpp +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/EmbeddingGenerator.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/ExplainWrapper.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/FairnessPostProcessor.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/FeatureEncoder.cpp +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/FeatureGenExtractTable.cpp +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/FeatureGenExtractTable.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/FeatureGenerator.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/FeatureProcess.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/FeatureSelector.cpp +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/IterativeImputer.cpp +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/IterativeImputer.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/IterativeSelector.cpp +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/KpSmokingGenerator.cpp +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/KpSmokingGenerator.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/MedFeatures.cpp +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/MedFeatures.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/MedModel.cpp +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/MedModel.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/MedModelExceptions.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/MedModelInitFromJson.cpp +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/MedProcessUtils.cpp +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/MedProcessUtils.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/MedProcessWrappers.cpp +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/MedProcessWrappers.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/MedSamples.cpp +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/MedSamples.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/MedValueCleaner.cpp +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/MedValueCleaner.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/MultiplierProcessor.cpp +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/PidClnRec.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/PostProcessor.cpp +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/PostProcessor.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/PredictorImputer.cpp +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/PredictorImputer.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/ProbAdjustPostProcessor.cpp +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/ProbAdjustPostProcessor.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/RepCalculators.cpp +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/RepCategoryDescenders.cpp +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/RepCategoryDescenders.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/RepClearSignalByDiag.cpp +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/RepClearSignalByDiag.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/RepCreateRegistry.cpp +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/RepCreateRegistry.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/RepFilterByChannels.cpp +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/RepFilterByChannels.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/RepProcess.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/RepReoderChannels.cpp +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/ResampleWithMissingProcessor.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/SampleFilter.cpp +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/SampleFilter.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/SmokingGenerator.cpp +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/SmokingGenerator.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/StripComments.cpp +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/StripComments.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/UnifiedSmokingGenerator.cpp +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/UnifiedSmokingGenerator.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/MedProcessTools/framingham_score.json +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedProcessTools/Resources/thin_completion_metadata +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPyExport/.gitignore +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPyExport/CMakeLists.txt +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPyExport/MedPyExport/CMakeLists.txt +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPyExport/MedPyExport/MPBootstrap.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPyExport/MedPyExport/MPDictionary.cpp +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPyExport/MedPyExport/MPDictionary.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPyExport/MedPyExport/MPFeatures.cpp +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPyExport/MedPyExport/MPFeatures.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPyExport/MedPyExport/MPGlobal.cpp +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPyExport/MedPyExport/MPGlobal.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPyExport/MedPyExport/MPLogger.cpp +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPyExport/MedPyExport/MPLogger.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPyExport/MedPyExport/MPMat.cpp +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPyExport/MedPyExport/MPMat.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPyExport/MedPyExport/MPModel.cpp +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPyExport/MedPyExport/MPModel.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPyExport/MedPyExport/MPPandasAdaptor.cpp +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPyExport/MedPyExport/MPPandasAdaptor.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPyExport/MedPyExport/MPPidRepository.cpp +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPyExport/MedPyExport/MPPidRepository.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPyExport/MedPyExport/MPPredictor.cpp +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPyExport/MedPyExport/MPPredictor.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPyExport/MedPyExport/MPSampleFilter.cpp +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPyExport/MedPyExport/MPSampleFilter.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPyExport/MedPyExport/MPSamples.cpp +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPyExport/MedPyExport/MPSamples.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPyExport/MedPyExport/MPSerializableObject.cpp +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPyExport/MedPyExport/MPSerializableObject.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPyExport/MedPyExport/MPSigExporter.cpp +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPyExport/MedPyExport/MPSigExporter.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPyExport/MedPyExport/MPSplit.cpp +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPyExport/MedPyExport/MPSplit.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPyExport/MedPyExport/MPTime.cpp +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPyExport/MedPyExport/MPTime.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPyExport/MedPyExport/MedPyCommon.cpp +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPyExport/MedPyExport/MedPyCommon.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPyExport/MedPyExport/MedPyExport.cpp +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPyExport/MedPyExport/MedPyExport.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPyExport/examples/MedProcUtils/cv.py +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPyExport/examples/MedProcUtils/cv_on_matrix.py +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPyExport/examples/MedProcUtils/learn.py +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPyExport/examples/MedProcUtils/learn_from_matrix.py +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPyExport/examples/MedProcUtils/predict.py +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPyExport/examples/MedProcUtils/predict_on_matrix.py +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPyExport/examples/MedProcUtils/shuffleMatrix.py +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPyExport/examples/get_sig.py +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPyExport/examples/learn.py +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPyExport/examples/model.py +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPyExport/examples/usig_iterate.py +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPyExport/generate_binding/LICENCE +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPyExport/generate_binding/MANIFEST.in +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPyExport/generate_binding/MedPython/CMakeLists.txt +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPyExport/generate_binding/MedPython/MedPython.cpp +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPyExport/generate_binding/MedPython/MedPython.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPyExport/generate_binding/MedPython/apply_directives.i +103 -103
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPyExport/generate_binding/MedPython/medpython.i +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPyExport/generate_binding/MedPython/mpdocstring.i +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPyExport/generate_binding/MedPython/pythoncode.i +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPyExport/generate_binding/MedPython/scripts/fix_docstr.py +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPyExport/generate_binding/MedPython/scripts/gen_readable_doc.sh +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPyExport/generate_binding/MedPython/scripts/make_apply.py +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPyExport/generate_binding/README.md +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPyExport/generate_binding/get_wheel.sh +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPyExport/generate_binding/make-all.sh +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPyExport/generate_binding/make-simple.sh +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPyExport/generate_binding/make.sh +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedPyExport/generate_binding/setup.py +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedSparseMat/MedSparseMat/CMakeLists.txt +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedSparseMat/MedSparseMat/MedSparseMat.cpp +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedSparseMat/MedSparseMat/MedSparseMat.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedSplit/MedSplit/CMakeLists.txt +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedSplit/MedSplit/MedSplit.cpp +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedSplit/MedSplit/MedSplit.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedStat/.gitignore +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedStat/MedStat/CMakeLists.txt +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedStat/MedStat/GibbsSampler.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedStat/MedStat/MedBootstrap.cpp +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedStat/MedStat/MedBootstrap.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedStat/MedStat/MedCleaner.cpp +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedStat/MedStat/MedCleaner.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedStat/MedStat/MedHist.cpp +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedStat/MedStat/MedHist.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedStat/MedStat/MedPerformance.cpp +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedStat/MedStat/MedPerformance.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedStat/MedStat/MedPerformance_imp.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedStat/MedStat/MedStat.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedStat/MedStat/ReadMe.txt +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedStat/MedStat/bootstrap.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedTime/MedTime/CMakeLists.txt +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedTime/MedTime/MedTime.cpp +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedTime/MedTime/MedTime.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedUtils/.gitignore +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedUtils/MedUtils/CMakeLists.txt +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedUtils/MedUtils/FilterParams.cpp +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedUtils/MedUtils/FilterParams.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedUtils/MedUtils/LabelParams.cpp +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedUtils/MedUtils/LabelParams.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedUtils/MedUtils/MedCohort.cpp +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedUtils/MedUtils/MedCohort.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedUtils/MedUtils/MedCompare.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedUtils/MedUtils/MedCrypt.cpp +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedUtils/MedUtils/MedCrypt.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedUtils/MedUtils/MedEnums.cpp +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedUtils/MedUtils/MedEnums.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedUtils/MedUtils/MedGenUtils.cpp +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedUtils/MedUtils/MedGenUtils.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedUtils/MedUtils/MedGenUtils_imp.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedUtils/MedUtils/MedGitVersion.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedUtils/MedUtils/MedGlobalRNG.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedUtils/MedUtils/MedLabels.cpp +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedUtils/MedUtils/MedLabels.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedUtils/MedUtils/MedMedical.cpp +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedUtils/MedUtils/MedMedical.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedUtils/MedUtils/MedNumeric.cpp +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedUtils/MedUtils/MedNumeric.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedUtils/MedUtils/MedPlot.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedUtils/MedUtils/MedRegistry.cpp +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedUtils/MedUtils/MedRegistry.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedUtils/MedUtils/MedRegistryRecord.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedUtils/MedUtils/MedRunPath.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedUtils/MedUtils/MedSamplingHelper.cpp +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedUtils/MedUtils/MedSamplingHelper.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedUtils/MedUtils/MedSamplingStrategy.cpp +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedUtils/MedUtils/MedSamplingStrategy.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedUtils/MedUtils/MedUtils.cpp +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedUtils/MedUtils/MedUtils.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/MedUtils/MedUtils/MedUtils_imp.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/QRF/.gitignore +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/QRF/QRF/CMakeLists.txt +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/QRF/QRF/QRF.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/QRF/QRF/Utils.cpp +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/QRF/QRF/Utils.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/Retired/Retired/CMakeLists.txt +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/Retired/Retired/MedArchiver.cpp +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/Retired/Retired/MedArchiver.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/Retired/Retired/MedArchiver_imp.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/Retired/Retired/MedDataStructures.cpp +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/Retired/Retired/MedDataStructures.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/SerializableObject/SerializableObject/CMakeLists.txt +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/SerializableObject/SerializableObject/SerializableObject.cpp +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/SerializableObject/SerializableObject/SerializableObject.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/SerializableObject/SerializableObject/SerializableObject_imp.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/TQRF/TQRF/CMakeLists.txt +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/TQRF/TQRF/TQRF.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/TQRF/TQRF_Tester/CMakeLists.txt +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/TQRF/TQRF_Tester/TQRF_Tester.cpp +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/medial_utilities/.gitignore +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/medial_utilities/medial_utilities/CMakeLists.txt +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/medial_utilities/medial_utilities/ReadMe.txt +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/medial_utilities/medial_utilities/globalRNG.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/medial_utilities/medial_utilities/io.cpp +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/medial_utilities/medial_utilities/mainpage.md +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/medial_utilities/medial_utilities/medial_utilities.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/medial_utilities/medial_utilities/medial_utilities.vcproj +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/medial_utilities/medial_utilities/numerical.cpp +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/medial_utilities/medial_utilities/utilities.cpp +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/medial_utilities/medial_utilities/vector_utils.cpp +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/medial_utilities/medial_utilities/vector_utils_dbl.cpp +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/micNet/.gitignore +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/micNet/micNet/CMakeLists.txt +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/micNet/micNet/micNet.h +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/python_condor_pragma_omp/condor_it.sh +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/python_condor_pragma_omp/condor_pragma_omp.py +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/python_condor_pragma_omp/condor_runner_template.txt +0 -0
- {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
- {medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/python_condor_pragma_omp/my_condor_wait.py +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/medpython.egg-info/SOURCES.txt +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/medpython.egg-info/dependency_links.txt +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/medpython.egg-info/not-zip-safe +0 -0
- {medpython-1.2.0 → medpython-1.2.1}/src/medpython.egg-info/requires.txt +0 -0
- {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/
|
|
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
|
|
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}/
|
|
172
|
-
include_directories(SYSTEM ${xgboost_SOURCE_DIR}/
|
|
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()
|
|
@@ -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/
|
|
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
|
|
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
|
-
|
|
121
|
-
|
|
122
|
-
include_directories(SYSTEM ${xgboost_SOURCE_DIR}/
|
|
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(
|
{medpython-1.2.0 → medpython-1.2.1}/src/med/cpp_code/Internal/InfraMed/InfraMed/InMemData.cpp
RENAMED
|
@@ -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
|
}
|