├── .gitignore ├── AllMissionCompleteQ.wl ├── Analyze_Sector.wl ├── AssignIBPReduction.wl ├── CheckIBP.wl ├── FFSolveIBP.wl ├── FFSpanningCutsConsistencyCheck.wl ├── Initialization.wl ├── KernelDistributionHQ.wl ├── LICENSE ├── LaunchIBPReduction.wl ├── LinearSyz ├── Development_Log.txt └── LinearSyz.wl ├── MissionStatusChecker.wl ├── MissionStatusMonitor.wl ├── Pak_Algorithm └── Pak_Algorithm.wl ├── PrepareForContinueComputation.wl ├── PrepareForSpanningCuts.wl ├── README.md ├── ReducedSpanningCutsMerge.wl ├── Spack_scripts └── spack_sub_script.sh ├── SpanningCutsIBPShorten.wl ├── SparseRREF ├── Kernel │ └── init.m ├── Makefile.am ├── NOTICE.txt ├── SparseRREF.m ├── SparseRREF.so ├── modules.c ├── spasm_mod_script.sh └── src │ ├── SparseRREF.c │ ├── SparseRREF.so │ └── SparseRREF_bak.so ├── Summary.wl ├── SyzygyRed.wl ├── continue.sh ├── default_settings.txt ├── development_documents ├── comments.txt ├── dev_log.txt └── version_history.txt ├── examples ├── dbox-spc-IBPReduction │ ├── config.txt │ ├── kinematics.txt │ └── targetIntegrals.txt ├── dbox │ ├── config.txt │ ├── continue.sh │ ├── kinematics.txt │ ├── monitor.sh │ ├── outputs │ │ └── dbox │ │ │ ├── inputs │ │ │ ├── config.txt │ │ │ ├── kinematics.txt │ │ │ └── targetIntegrals.txt │ │ │ ├── results │ │ │ ├── IBP │ │ │ │ ├── 100.txt │ │ │ │ ├── 101.txt │ │ │ │ ├── 102.txt │ │ │ │ ├── 103.txt │ │ │ │ ├── 105.txt │ │ │ │ ├── 106.txt │ │ │ │ ├── 107.txt │ │ │ │ ├── 108.txt │ │ │ │ ├── 109.txt │ │ │ │ ├── 110.txt │ │ │ │ ├── 111.txt │ │ │ │ ├── 114.txt │ │ │ │ ├── 115.txt │ │ │ │ ├── 116.txt │ │ │ │ ├── 117.txt │ │ │ │ ├── 118.txt │ │ │ │ ├── 119.txt │ │ │ │ ├── 121.txt │ │ │ │ ├── 122.txt │ │ │ │ ├── 123.txt │ │ │ │ ├── 124.txt │ │ │ │ ├── 125.txt │ │ │ │ ├── 126.txt │ │ │ │ ├── 127.txt │ │ │ │ ├── 45.txt │ │ │ │ ├── 47.txt │ │ │ │ ├── 61.txt │ │ │ │ ├── 63.txt │ │ │ │ ├── 73.txt │ │ │ │ ├── 75.txt │ │ │ │ ├── 77.txt │ │ │ │ ├── 79.txt │ │ │ │ ├── 82.txt │ │ │ │ ├── 83.txt │ │ │ │ ├── 85.txt │ │ │ │ ├── 86.txt │ │ │ │ ├── 87.txt │ │ │ │ ├── 89.txt │ │ │ │ ├── 90.txt │ │ │ │ ├── 91.txt │ │ │ │ ├── 93.txt │ │ │ │ ├── 94.txt │ │ │ │ └── 95.txt │ │ │ ├── IBP_all.txt │ │ │ ├── MI │ │ │ │ ├── 100.txt │ │ │ │ ├── 101.txt │ │ │ │ ├── 102.txt │ │ │ │ ├── 103.txt │ │ │ │ ├── 105.txt │ │ │ │ ├── 106.txt │ │ │ │ ├── 107.txt │ │ │ │ ├── 108.txt │ │ │ │ ├── 109.txt │ │ │ │ ├── 110.txt │ │ │ │ ├── 111.txt │ │ │ │ ├── 114.txt │ │ │ │ ├── 115.txt │ │ │ │ ├── 116.txt │ │ │ │ ├── 117.txt │ │ │ │ ├── 118.txt │ │ │ │ ├── 119.txt │ │ │ │ ├── 121.txt │ │ │ │ ├── 122.txt │ │ │ │ ├── 123.txt │ │ │ │ ├── 124.txt │ │ │ │ ├── 125.txt │ │ │ │ ├── 126.txt │ │ │ │ ├── 127.txt │ │ │ │ ├── 45.txt │ │ │ │ ├── 47.txt │ │ │ │ ├── 61.txt │ │ │ │ ├── 63.txt │ │ │ │ ├── 73.txt │ │ │ │ ├── 75.txt │ │ │ │ ├── 77.txt │ │ │ │ ├── 79.txt │ │ │ │ ├── 82.txt │ │ │ │ ├── 83.txt │ │ │ │ ├── 85.txt │ │ │ │ ├── 86.txt │ │ │ │ ├── 87.txt │ │ │ │ ├── 89.txt │ │ │ │ ├── 90.txt │ │ │ │ ├── 91.txt │ │ │ │ ├── 93.txt │ │ │ │ ├── 94.txt │ │ │ │ └── 95.txt │ │ │ ├── MI_all.txt │ │ │ ├── OrderedIntegrals.txt │ │ │ └── summary.txt │ │ │ └── tmp │ │ │ ├── log.txt │ │ │ ├── log_files │ │ │ ├── 109.txt │ │ │ ├── 111.txt │ │ │ ├── 127.txt │ │ │ ├── 45.txt │ │ │ ├── 47.txt │ │ │ ├── 63.txt │ │ │ ├── 73.txt │ │ │ ├── 75.txt │ │ │ ├── 77.txt │ │ │ ├── 79.txt │ │ │ ├── 82.txt │ │ │ ├── 83.txt │ │ │ ├── 85.txt │ │ │ ├── 87.txt │ │ │ ├── 91.txt │ │ │ ├── 93.txt │ │ │ ├── 94.txt │ │ │ ├── 95.txt │ │ │ └── initialization.txt │ │ │ ├── sectorMaps.txt │ │ │ └── superOrSourceSectors.txt │ ├── packagePath.txt │ ├── run.sh │ └── targetIntegrals.txt ├── examples_in_the_papers │ ├── 2305.08783 │ │ ├── 2l4pNP7 │ │ │ ├── config.txt │ │ │ ├── kinematics.txt │ │ │ └── targetIntegrals.txt │ │ ├── 3l4p1m │ │ │ ├── config.txt │ │ │ ├── kinematics.txt │ │ │ └── targetIntegrals.txt │ │ ├── pb │ │ │ ├── config.txt │ │ │ ├── kinematics.txt │ │ │ └── targetIntegrals.txt │ │ └── pb_D │ │ │ ├── config.txt │ │ │ ├── kinematics.txt │ │ │ └── targetIntegrals_D.txt │ └── 2502.20778 │ │ ├── 4L2P_massive │ │ ├── config.txt │ │ ├── kinematics.txt │ │ └── targetIntegrals.txt │ │ ├── pentabox │ │ ├── config.txt │ │ ├── kinematics.txt │ │ └── targetIntegrals.txt │ │ └── tenniscourt │ │ ├── config.txt │ │ ├── kinematics.txt │ │ └── targetIntegrals.txt └── pentagon_box │ ├── config.txt │ ├── continue.sh │ ├── kinematics.txt │ ├── monitor.sh │ ├── packagePath.txt │ ├── run.sh │ └── targetIntegrals.txt ├── interfaces └── Kira │ ├── examples │ └── dbox │ │ ├── config.txt │ │ ├── kinematics.txt │ │ └── targetIntegrals.txt │ └── interface │ ├── CreateJobsYaml.wl │ ├── KiraToNeatIBP.wl │ ├── NeatIBPToKira.wl │ ├── ReadKiraReductionResults.wl │ └── run_kira_reduction.sh ├── monitor.sh ├── paused_command.sh ├── preload ├── EnvVarSetter.txt ├── MathematicaCommand.txt └── ShellProcessor.txt └── run.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzhphy/NeatIBP/HEAD/.gitignore -------------------------------------------------------------------------------- /AllMissionCompleteQ.wl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzhphy/NeatIBP/HEAD/AllMissionCompleteQ.wl -------------------------------------------------------------------------------- /Analyze_Sector.wl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzhphy/NeatIBP/HEAD/Analyze_Sector.wl -------------------------------------------------------------------------------- /AssignIBPReduction.wl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzhphy/NeatIBP/HEAD/AssignIBPReduction.wl -------------------------------------------------------------------------------- /CheckIBP.wl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzhphy/NeatIBP/HEAD/CheckIBP.wl -------------------------------------------------------------------------------- /FFSolveIBP.wl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzhphy/NeatIBP/HEAD/FFSolveIBP.wl -------------------------------------------------------------------------------- /FFSpanningCutsConsistencyCheck.wl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzhphy/NeatIBP/HEAD/FFSpanningCutsConsistencyCheck.wl -------------------------------------------------------------------------------- /Initialization.wl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzhphy/NeatIBP/HEAD/Initialization.wl -------------------------------------------------------------------------------- /KernelDistributionHQ.wl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzhphy/NeatIBP/HEAD/KernelDistributionHQ.wl -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzhphy/NeatIBP/HEAD/LICENSE -------------------------------------------------------------------------------- /LaunchIBPReduction.wl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzhphy/NeatIBP/HEAD/LaunchIBPReduction.wl -------------------------------------------------------------------------------- /LinearSyz/Development_Log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzhphy/NeatIBP/HEAD/LinearSyz/Development_Log.txt -------------------------------------------------------------------------------- /LinearSyz/LinearSyz.wl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzhphy/NeatIBP/HEAD/LinearSyz/LinearSyz.wl -------------------------------------------------------------------------------- /MissionStatusChecker.wl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzhphy/NeatIBP/HEAD/MissionStatusChecker.wl -------------------------------------------------------------------------------- /MissionStatusMonitor.wl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzhphy/NeatIBP/HEAD/MissionStatusMonitor.wl -------------------------------------------------------------------------------- /Pak_Algorithm/Pak_Algorithm.wl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzhphy/NeatIBP/HEAD/Pak_Algorithm/Pak_Algorithm.wl -------------------------------------------------------------------------------- /PrepareForContinueComputation.wl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzhphy/NeatIBP/HEAD/PrepareForContinueComputation.wl -------------------------------------------------------------------------------- /PrepareForSpanningCuts.wl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzhphy/NeatIBP/HEAD/PrepareForSpanningCuts.wl -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzhphy/NeatIBP/HEAD/README.md -------------------------------------------------------------------------------- /ReducedSpanningCutsMerge.wl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzhphy/NeatIBP/HEAD/ReducedSpanningCutsMerge.wl -------------------------------------------------------------------------------- /Spack_scripts/spack_sub_script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzhphy/NeatIBP/HEAD/Spack_scripts/spack_sub_script.sh -------------------------------------------------------------------------------- /SpanningCutsIBPShorten.wl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzhphy/NeatIBP/HEAD/SpanningCutsIBPShorten.wl -------------------------------------------------------------------------------- /SparseRREF/Kernel/init.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzhphy/NeatIBP/HEAD/SparseRREF/Kernel/init.m -------------------------------------------------------------------------------- /SparseRREF/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzhphy/NeatIBP/HEAD/SparseRREF/Makefile.am -------------------------------------------------------------------------------- /SparseRREF/NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzhphy/NeatIBP/HEAD/SparseRREF/NOTICE.txt -------------------------------------------------------------------------------- /SparseRREF/SparseRREF.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzhphy/NeatIBP/HEAD/SparseRREF/SparseRREF.m -------------------------------------------------------------------------------- /SparseRREF/SparseRREF.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzhphy/NeatIBP/HEAD/SparseRREF/SparseRREF.so -------------------------------------------------------------------------------- /SparseRREF/modules.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzhphy/NeatIBP/HEAD/SparseRREF/modules.c -------------------------------------------------------------------------------- /SparseRREF/spasm_mod_script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzhphy/NeatIBP/HEAD/SparseRREF/spasm_mod_script.sh -------------------------------------------------------------------------------- /SparseRREF/src/SparseRREF.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzhphy/NeatIBP/HEAD/SparseRREF/src/SparseRREF.c -------------------------------------------------------------------------------- /SparseRREF/src/SparseRREF.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzhphy/NeatIBP/HEAD/SparseRREF/src/SparseRREF.so -------------------------------------------------------------------------------- /SparseRREF/src/SparseRREF_bak.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzhphy/NeatIBP/HEAD/SparseRREF/src/SparseRREF_bak.so -------------------------------------------------------------------------------- /Summary.wl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzhphy/NeatIBP/HEAD/Summary.wl -------------------------------------------------------------------------------- /SyzygyRed.wl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzhphy/NeatIBP/HEAD/SyzygyRed.wl -------------------------------------------------------------------------------- /continue.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzhphy/NeatIBP/HEAD/continue.sh -------------------------------------------------------------------------------- /default_settings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzhphy/NeatIBP/HEAD/default_settings.txt -------------------------------------------------------------------------------- /development_documents/comments.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzhphy/NeatIBP/HEAD/development_documents/comments.txt -------------------------------------------------------------------------------- /development_documents/dev_log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzhphy/NeatIBP/HEAD/development_documents/dev_log.txt -------------------------------------------------------------------------------- /development_documents/version_history.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzhphy/NeatIBP/HEAD/development_documents/version_history.txt -------------------------------------------------------------------------------- /examples/dbox-spc-IBPReduction/config.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzhphy/NeatIBP/HEAD/examples/dbox-spc-IBPReduction/config.txt -------------------------------------------------------------------------------- /examples/dbox-spc-IBPReduction/kinematics.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzhphy/NeatIBP/HEAD/examples/dbox-spc-IBPReduction/kinematics.txt -------------------------------------------------------------------------------- /examples/dbox-spc-IBPReduction/targetIntegrals.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzhphy/NeatIBP/HEAD/examples/dbox-spc-IBPReduction/targetIntegrals.txt -------------------------------------------------------------------------------- /examples/dbox/config.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzhphy/NeatIBP/HEAD/examples/dbox/config.txt -------------------------------------------------------------------------------- /examples/dbox/continue.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzhphy/NeatIBP/HEAD/examples/dbox/continue.sh -------------------------------------------------------------------------------- /examples/dbox/kinematics.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzhphy/NeatIBP/HEAD/examples/dbox/kinematics.txt -------------------------------------------------------------------------------- /examples/dbox/monitor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzhphy/NeatIBP/HEAD/examples/dbox/monitor.sh -------------------------------------------------------------------------------- /examples/dbox/outputs/dbox/inputs/config.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzhphy/NeatIBP/HEAD/examples/dbox/outputs/dbox/inputs/config.txt -------------------------------------------------------------------------------- /examples/dbox/outputs/dbox/inputs/kinematics.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzhphy/NeatIBP/HEAD/examples/dbox/outputs/dbox/inputs/kinematics.txt -------------------------------------------------------------------------------- /examples/dbox/outputs/dbox/inputs/targetIntegrals.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzhphy/NeatIBP/HEAD/examples/dbox/outputs/dbox/inputs/targetIntegrals.txt -------------------------------------------------------------------------------- /examples/dbox/outputs/dbox/results/IBP/100.txt: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /examples/dbox/outputs/dbox/results/IBP/101.txt: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /examples/dbox/outputs/dbox/results/IBP/102.txt: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /examples/dbox/outputs/dbox/results/IBP/103.txt: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /examples/dbox/outputs/dbox/results/IBP/105.txt: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /examples/dbox/outputs/dbox/results/IBP/106.txt: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /examples/dbox/outputs/dbox/results/IBP/107.txt: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /examples/dbox/outputs/dbox/results/IBP/108.txt: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /examples/dbox/outputs/dbox/results/IBP/109.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzhphy/NeatIBP/HEAD/examples/dbox/outputs/dbox/results/IBP/109.txt -------------------------------------------------------------------------------- /examples/dbox/outputs/dbox/results/IBP/110.txt: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /examples/dbox/outputs/dbox/results/IBP/111.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzhphy/NeatIBP/HEAD/examples/dbox/outputs/dbox/results/IBP/111.txt -------------------------------------------------------------------------------- /examples/dbox/outputs/dbox/results/IBP/114.txt: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /examples/dbox/outputs/dbox/results/IBP/115.txt: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /examples/dbox/outputs/dbox/results/IBP/116.txt: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /examples/dbox/outputs/dbox/results/IBP/117.txt: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /examples/dbox/outputs/dbox/results/IBP/118.txt: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /examples/dbox/outputs/dbox/results/IBP/119.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzhphy/NeatIBP/HEAD/examples/dbox/outputs/dbox/results/IBP/119.txt -------------------------------------------------------------------------------- /examples/dbox/outputs/dbox/results/IBP/121.txt: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /examples/dbox/outputs/dbox/results/IBP/122.txt: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /examples/dbox/outputs/dbox/results/IBP/123.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzhphy/NeatIBP/HEAD/examples/dbox/outputs/dbox/results/IBP/123.txt -------------------------------------------------------------------------------- /examples/dbox/outputs/dbox/results/IBP/124.txt: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /examples/dbox/outputs/dbox/results/IBP/125.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzhphy/NeatIBP/HEAD/examples/dbox/outputs/dbox/results/IBP/125.txt -------------------------------------------------------------------------------- /examples/dbox/outputs/dbox/results/IBP/126.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzhphy/NeatIBP/HEAD/examples/dbox/outputs/dbox/results/IBP/126.txt -------------------------------------------------------------------------------- /examples/dbox/outputs/dbox/results/IBP/127.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzhphy/NeatIBP/HEAD/examples/dbox/outputs/dbox/results/IBP/127.txt -------------------------------------------------------------------------------- /examples/dbox/outputs/dbox/results/IBP/45.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzhphy/NeatIBP/HEAD/examples/dbox/outputs/dbox/results/IBP/45.txt -------------------------------------------------------------------------------- /examples/dbox/outputs/dbox/results/IBP/47.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzhphy/NeatIBP/HEAD/examples/dbox/outputs/dbox/results/IBP/47.txt -------------------------------------------------------------------------------- /examples/dbox/outputs/dbox/results/IBP/61.txt: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /examples/dbox/outputs/dbox/results/IBP/63.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzhphy/NeatIBP/HEAD/examples/dbox/outputs/dbox/results/IBP/63.txt -------------------------------------------------------------------------------- /examples/dbox/outputs/dbox/results/IBP/73.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzhphy/NeatIBP/HEAD/examples/dbox/outputs/dbox/results/IBP/73.txt -------------------------------------------------------------------------------- /examples/dbox/outputs/dbox/results/IBP/75.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzhphy/NeatIBP/HEAD/examples/dbox/outputs/dbox/results/IBP/75.txt -------------------------------------------------------------------------------- /examples/dbox/outputs/dbox/results/IBP/77.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzhphy/NeatIBP/HEAD/examples/dbox/outputs/dbox/results/IBP/77.txt -------------------------------------------------------------------------------- /examples/dbox/outputs/dbox/results/IBP/79.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzhphy/NeatIBP/HEAD/examples/dbox/outputs/dbox/results/IBP/79.txt -------------------------------------------------------------------------------- /examples/dbox/outputs/dbox/results/IBP/82.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzhphy/NeatIBP/HEAD/examples/dbox/outputs/dbox/results/IBP/82.txt -------------------------------------------------------------------------------- /examples/dbox/outputs/dbox/results/IBP/83.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzhphy/NeatIBP/HEAD/examples/dbox/outputs/dbox/results/IBP/83.txt -------------------------------------------------------------------------------- /examples/dbox/outputs/dbox/results/IBP/85.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzhphy/NeatIBP/HEAD/examples/dbox/outputs/dbox/results/IBP/85.txt -------------------------------------------------------------------------------- /examples/dbox/outputs/dbox/results/IBP/86.txt: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /examples/dbox/outputs/dbox/results/IBP/87.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzhphy/NeatIBP/HEAD/examples/dbox/outputs/dbox/results/IBP/87.txt -------------------------------------------------------------------------------- /examples/dbox/outputs/dbox/results/IBP/89.txt: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /examples/dbox/outputs/dbox/results/IBP/90.txt: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /examples/dbox/outputs/dbox/results/IBP/91.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzhphy/NeatIBP/HEAD/examples/dbox/outputs/dbox/results/IBP/91.txt -------------------------------------------------------------------------------- /examples/dbox/outputs/dbox/results/IBP/93.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzhphy/NeatIBP/HEAD/examples/dbox/outputs/dbox/results/IBP/93.txt -------------------------------------------------------------------------------- /examples/dbox/outputs/dbox/results/IBP/94.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzhphy/NeatIBP/HEAD/examples/dbox/outputs/dbox/results/IBP/94.txt -------------------------------------------------------------------------------- /examples/dbox/outputs/dbox/results/IBP/95.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzhphy/NeatIBP/HEAD/examples/dbox/outputs/dbox/results/IBP/95.txt -------------------------------------------------------------------------------- /examples/dbox/outputs/dbox/results/IBP_all.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzhphy/NeatIBP/HEAD/examples/dbox/outputs/dbox/results/IBP_all.txt -------------------------------------------------------------------------------- /examples/dbox/outputs/dbox/results/MI/100.txt: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /examples/dbox/outputs/dbox/results/MI/101.txt: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /examples/dbox/outputs/dbox/results/MI/102.txt: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /examples/dbox/outputs/dbox/results/MI/103.txt: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /examples/dbox/outputs/dbox/results/MI/105.txt: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /examples/dbox/outputs/dbox/results/MI/106.txt: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /examples/dbox/outputs/dbox/results/MI/107.txt: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /examples/dbox/outputs/dbox/results/MI/108.txt: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /examples/dbox/outputs/dbox/results/MI/109.txt: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /examples/dbox/outputs/dbox/results/MI/110.txt: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /examples/dbox/outputs/dbox/results/MI/111.txt: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /examples/dbox/outputs/dbox/results/MI/114.txt: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /examples/dbox/outputs/dbox/results/MI/115.txt: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /examples/dbox/outputs/dbox/results/MI/116.txt: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /examples/dbox/outputs/dbox/results/MI/117.txt: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /examples/dbox/outputs/dbox/results/MI/118.txt: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /examples/dbox/outputs/dbox/results/MI/119.txt: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /examples/dbox/outputs/dbox/results/MI/121.txt: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /examples/dbox/outputs/dbox/results/MI/122.txt: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /examples/dbox/outputs/dbox/results/MI/123.txt: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /examples/dbox/outputs/dbox/results/MI/124.txt: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /examples/dbox/outputs/dbox/results/MI/125.txt: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /examples/dbox/outputs/dbox/results/MI/126.txt: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /examples/dbox/outputs/dbox/results/MI/127.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzhphy/NeatIBP/HEAD/examples/dbox/outputs/dbox/results/MI/127.txt -------------------------------------------------------------------------------- /examples/dbox/outputs/dbox/results/MI/45.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzhphy/NeatIBP/HEAD/examples/dbox/outputs/dbox/results/MI/45.txt -------------------------------------------------------------------------------- /examples/dbox/outputs/dbox/results/MI/47.txt: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /examples/dbox/outputs/dbox/results/MI/61.txt: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /examples/dbox/outputs/dbox/results/MI/63.txt: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /examples/dbox/outputs/dbox/results/MI/73.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzhphy/NeatIBP/HEAD/examples/dbox/outputs/dbox/results/MI/73.txt -------------------------------------------------------------------------------- /examples/dbox/outputs/dbox/results/MI/75.txt: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /examples/dbox/outputs/dbox/results/MI/77.txt: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /examples/dbox/outputs/dbox/results/MI/79.txt: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /examples/dbox/outputs/dbox/results/MI/82.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzhphy/NeatIBP/HEAD/examples/dbox/outputs/dbox/results/MI/82.txt -------------------------------------------------------------------------------- /examples/dbox/outputs/dbox/results/MI/83.txt: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /examples/dbox/outputs/dbox/results/MI/85.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzhphy/NeatIBP/HEAD/examples/dbox/outputs/dbox/results/MI/85.txt -------------------------------------------------------------------------------- /examples/dbox/outputs/dbox/results/MI/86.txt: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /examples/dbox/outputs/dbox/results/MI/87.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzhphy/NeatIBP/HEAD/examples/dbox/outputs/dbox/results/MI/87.txt -------------------------------------------------------------------------------- /examples/dbox/outputs/dbox/results/MI/89.txt: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /examples/dbox/outputs/dbox/results/MI/90.txt: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /examples/dbox/outputs/dbox/results/MI/91.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzhphy/NeatIBP/HEAD/examples/dbox/outputs/dbox/results/MI/91.txt -------------------------------------------------------------------------------- /examples/dbox/outputs/dbox/results/MI/93.txt: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /examples/dbox/outputs/dbox/results/MI/94.txt: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /examples/dbox/outputs/dbox/results/MI/95.txt: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /examples/dbox/outputs/dbox/results/MI_all.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzhphy/NeatIBP/HEAD/examples/dbox/outputs/dbox/results/MI_all.txt -------------------------------------------------------------------------------- /examples/dbox/outputs/dbox/results/OrderedIntegrals.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzhphy/NeatIBP/HEAD/examples/dbox/outputs/dbox/results/OrderedIntegrals.txt -------------------------------------------------------------------------------- /examples/dbox/outputs/dbox/results/summary.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzhphy/NeatIBP/HEAD/examples/dbox/outputs/dbox/results/summary.txt -------------------------------------------------------------------------------- /examples/dbox/outputs/dbox/tmp/log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzhphy/NeatIBP/HEAD/examples/dbox/outputs/dbox/tmp/log.txt -------------------------------------------------------------------------------- /examples/dbox/outputs/dbox/tmp/log_files/109.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzhphy/NeatIBP/HEAD/examples/dbox/outputs/dbox/tmp/log_files/109.txt -------------------------------------------------------------------------------- /examples/dbox/outputs/dbox/tmp/log_files/111.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzhphy/NeatIBP/HEAD/examples/dbox/outputs/dbox/tmp/log_files/111.txt -------------------------------------------------------------------------------- /examples/dbox/outputs/dbox/tmp/log_files/127.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzhphy/NeatIBP/HEAD/examples/dbox/outputs/dbox/tmp/log_files/127.txt -------------------------------------------------------------------------------- /examples/dbox/outputs/dbox/tmp/log_files/45.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzhphy/NeatIBP/HEAD/examples/dbox/outputs/dbox/tmp/log_files/45.txt -------------------------------------------------------------------------------- /examples/dbox/outputs/dbox/tmp/log_files/47.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzhphy/NeatIBP/HEAD/examples/dbox/outputs/dbox/tmp/log_files/47.txt -------------------------------------------------------------------------------- /examples/dbox/outputs/dbox/tmp/log_files/63.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzhphy/NeatIBP/HEAD/examples/dbox/outputs/dbox/tmp/log_files/63.txt -------------------------------------------------------------------------------- /examples/dbox/outputs/dbox/tmp/log_files/73.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzhphy/NeatIBP/HEAD/examples/dbox/outputs/dbox/tmp/log_files/73.txt -------------------------------------------------------------------------------- /examples/dbox/outputs/dbox/tmp/log_files/75.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzhphy/NeatIBP/HEAD/examples/dbox/outputs/dbox/tmp/log_files/75.txt -------------------------------------------------------------------------------- /examples/dbox/outputs/dbox/tmp/log_files/77.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzhphy/NeatIBP/HEAD/examples/dbox/outputs/dbox/tmp/log_files/77.txt -------------------------------------------------------------------------------- /examples/dbox/outputs/dbox/tmp/log_files/79.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzhphy/NeatIBP/HEAD/examples/dbox/outputs/dbox/tmp/log_files/79.txt -------------------------------------------------------------------------------- /examples/dbox/outputs/dbox/tmp/log_files/82.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzhphy/NeatIBP/HEAD/examples/dbox/outputs/dbox/tmp/log_files/82.txt -------------------------------------------------------------------------------- /examples/dbox/outputs/dbox/tmp/log_files/83.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzhphy/NeatIBP/HEAD/examples/dbox/outputs/dbox/tmp/log_files/83.txt -------------------------------------------------------------------------------- /examples/dbox/outputs/dbox/tmp/log_files/85.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzhphy/NeatIBP/HEAD/examples/dbox/outputs/dbox/tmp/log_files/85.txt -------------------------------------------------------------------------------- /examples/dbox/outputs/dbox/tmp/log_files/87.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzhphy/NeatIBP/HEAD/examples/dbox/outputs/dbox/tmp/log_files/87.txt -------------------------------------------------------------------------------- /examples/dbox/outputs/dbox/tmp/log_files/91.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzhphy/NeatIBP/HEAD/examples/dbox/outputs/dbox/tmp/log_files/91.txt -------------------------------------------------------------------------------- /examples/dbox/outputs/dbox/tmp/log_files/93.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzhphy/NeatIBP/HEAD/examples/dbox/outputs/dbox/tmp/log_files/93.txt -------------------------------------------------------------------------------- /examples/dbox/outputs/dbox/tmp/log_files/94.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzhphy/NeatIBP/HEAD/examples/dbox/outputs/dbox/tmp/log_files/94.txt -------------------------------------------------------------------------------- /examples/dbox/outputs/dbox/tmp/log_files/95.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzhphy/NeatIBP/HEAD/examples/dbox/outputs/dbox/tmp/log_files/95.txt -------------------------------------------------------------------------------- /examples/dbox/outputs/dbox/tmp/log_files/initialization.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzhphy/NeatIBP/HEAD/examples/dbox/outputs/dbox/tmp/log_files/initialization.txt -------------------------------------------------------------------------------- /examples/dbox/outputs/dbox/tmp/sectorMaps.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzhphy/NeatIBP/HEAD/examples/dbox/outputs/dbox/tmp/sectorMaps.txt -------------------------------------------------------------------------------- /examples/dbox/outputs/dbox/tmp/superOrSourceSectors.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzhphy/NeatIBP/HEAD/examples/dbox/outputs/dbox/tmp/superOrSourceSectors.txt -------------------------------------------------------------------------------- /examples/dbox/packagePath.txt: -------------------------------------------------------------------------------- 1 | /home/zihao/projects/SyzygyRed/Parallelization/github/NeatIBP 2 | -------------------------------------------------------------------------------- /examples/dbox/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzhphy/NeatIBP/HEAD/examples/dbox/run.sh -------------------------------------------------------------------------------- /examples/dbox/targetIntegrals.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzhphy/NeatIBP/HEAD/examples/dbox/targetIntegrals.txt -------------------------------------------------------------------------------- /examples/examples_in_the_papers/2305.08783/2l4pNP7/config.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzhphy/NeatIBP/HEAD/examples/examples_in_the_papers/2305.08783/2l4pNP7/config.txt -------------------------------------------------------------------------------- /examples/examples_in_the_papers/2305.08783/2l4pNP7/kinematics.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzhphy/NeatIBP/HEAD/examples/examples_in_the_papers/2305.08783/2l4pNP7/kinematics.txt -------------------------------------------------------------------------------- /examples/examples_in_the_papers/2305.08783/2l4pNP7/targetIntegrals.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzhphy/NeatIBP/HEAD/examples/examples_in_the_papers/2305.08783/2l4pNP7/targetIntegrals.txt -------------------------------------------------------------------------------- /examples/examples_in_the_papers/2305.08783/3l4p1m/config.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzhphy/NeatIBP/HEAD/examples/examples_in_the_papers/2305.08783/3l4p1m/config.txt -------------------------------------------------------------------------------- /examples/examples_in_the_papers/2305.08783/3l4p1m/kinematics.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzhphy/NeatIBP/HEAD/examples/examples_in_the_papers/2305.08783/3l4p1m/kinematics.txt -------------------------------------------------------------------------------- /examples/examples_in_the_papers/2305.08783/3l4p1m/targetIntegrals.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzhphy/NeatIBP/HEAD/examples/examples_in_the_papers/2305.08783/3l4p1m/targetIntegrals.txt -------------------------------------------------------------------------------- /examples/examples_in_the_papers/2305.08783/pb/config.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzhphy/NeatIBP/HEAD/examples/examples_in_the_papers/2305.08783/pb/config.txt -------------------------------------------------------------------------------- /examples/examples_in_the_papers/2305.08783/pb/kinematics.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzhphy/NeatIBP/HEAD/examples/examples_in_the_papers/2305.08783/pb/kinematics.txt -------------------------------------------------------------------------------- /examples/examples_in_the_papers/2305.08783/pb/targetIntegrals.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzhphy/NeatIBP/HEAD/examples/examples_in_the_papers/2305.08783/pb/targetIntegrals.txt -------------------------------------------------------------------------------- /examples/examples_in_the_papers/2305.08783/pb_D/config.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzhphy/NeatIBP/HEAD/examples/examples_in_the_papers/2305.08783/pb_D/config.txt -------------------------------------------------------------------------------- /examples/examples_in_the_papers/2305.08783/pb_D/kinematics.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzhphy/NeatIBP/HEAD/examples/examples_in_the_papers/2305.08783/pb_D/kinematics.txt -------------------------------------------------------------------------------- /examples/examples_in_the_papers/2305.08783/pb_D/targetIntegrals_D.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzhphy/NeatIBP/HEAD/examples/examples_in_the_papers/2305.08783/pb_D/targetIntegrals_D.txt -------------------------------------------------------------------------------- /examples/examples_in_the_papers/2502.20778/4L2P_massive/config.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzhphy/NeatIBP/HEAD/examples/examples_in_the_papers/2502.20778/4L2P_massive/config.txt -------------------------------------------------------------------------------- /examples/examples_in_the_papers/2502.20778/4L2P_massive/kinematics.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzhphy/NeatIBP/HEAD/examples/examples_in_the_papers/2502.20778/4L2P_massive/kinematics.txt -------------------------------------------------------------------------------- /examples/examples_in_the_papers/2502.20778/4L2P_massive/targetIntegrals.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzhphy/NeatIBP/HEAD/examples/examples_in_the_papers/2502.20778/4L2P_massive/targetIntegrals.txt -------------------------------------------------------------------------------- /examples/examples_in_the_papers/2502.20778/pentabox/config.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzhphy/NeatIBP/HEAD/examples/examples_in_the_papers/2502.20778/pentabox/config.txt -------------------------------------------------------------------------------- /examples/examples_in_the_papers/2502.20778/pentabox/kinematics.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzhphy/NeatIBP/HEAD/examples/examples_in_the_papers/2502.20778/pentabox/kinematics.txt -------------------------------------------------------------------------------- /examples/examples_in_the_papers/2502.20778/pentabox/targetIntegrals.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzhphy/NeatIBP/HEAD/examples/examples_in_the_papers/2502.20778/pentabox/targetIntegrals.txt -------------------------------------------------------------------------------- /examples/examples_in_the_papers/2502.20778/tenniscourt/config.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzhphy/NeatIBP/HEAD/examples/examples_in_the_papers/2502.20778/tenniscourt/config.txt -------------------------------------------------------------------------------- /examples/examples_in_the_papers/2502.20778/tenniscourt/kinematics.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzhphy/NeatIBP/HEAD/examples/examples_in_the_papers/2502.20778/tenniscourt/kinematics.txt -------------------------------------------------------------------------------- /examples/examples_in_the_papers/2502.20778/tenniscourt/targetIntegrals.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzhphy/NeatIBP/HEAD/examples/examples_in_the_papers/2502.20778/tenniscourt/targetIntegrals.txt -------------------------------------------------------------------------------- /examples/pentagon_box/config.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzhphy/NeatIBP/HEAD/examples/pentagon_box/config.txt -------------------------------------------------------------------------------- /examples/pentagon_box/continue.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzhphy/NeatIBP/HEAD/examples/pentagon_box/continue.sh -------------------------------------------------------------------------------- /examples/pentagon_box/kinematics.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzhphy/NeatIBP/HEAD/examples/pentagon_box/kinematics.txt -------------------------------------------------------------------------------- /examples/pentagon_box/monitor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzhphy/NeatIBP/HEAD/examples/pentagon_box/monitor.sh -------------------------------------------------------------------------------- /examples/pentagon_box/packagePath.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzhphy/NeatIBP/HEAD/examples/pentagon_box/packagePath.txt -------------------------------------------------------------------------------- /examples/pentagon_box/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzhphy/NeatIBP/HEAD/examples/pentagon_box/run.sh -------------------------------------------------------------------------------- /examples/pentagon_box/targetIntegrals.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzhphy/NeatIBP/HEAD/examples/pentagon_box/targetIntegrals.txt -------------------------------------------------------------------------------- /interfaces/Kira/examples/dbox/config.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzhphy/NeatIBP/HEAD/interfaces/Kira/examples/dbox/config.txt -------------------------------------------------------------------------------- /interfaces/Kira/examples/dbox/kinematics.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzhphy/NeatIBP/HEAD/interfaces/Kira/examples/dbox/kinematics.txt -------------------------------------------------------------------------------- /interfaces/Kira/examples/dbox/targetIntegrals.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzhphy/NeatIBP/HEAD/interfaces/Kira/examples/dbox/targetIntegrals.txt -------------------------------------------------------------------------------- /interfaces/Kira/interface/CreateJobsYaml.wl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzhphy/NeatIBP/HEAD/interfaces/Kira/interface/CreateJobsYaml.wl -------------------------------------------------------------------------------- /interfaces/Kira/interface/KiraToNeatIBP.wl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzhphy/NeatIBP/HEAD/interfaces/Kira/interface/KiraToNeatIBP.wl -------------------------------------------------------------------------------- /interfaces/Kira/interface/NeatIBPToKira.wl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzhphy/NeatIBP/HEAD/interfaces/Kira/interface/NeatIBPToKira.wl -------------------------------------------------------------------------------- /interfaces/Kira/interface/ReadKiraReductionResults.wl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzhphy/NeatIBP/HEAD/interfaces/Kira/interface/ReadKiraReductionResults.wl -------------------------------------------------------------------------------- /interfaces/Kira/interface/run_kira_reduction.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzhphy/NeatIBP/HEAD/interfaces/Kira/interface/run_kira_reduction.sh -------------------------------------------------------------------------------- /monitor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzhphy/NeatIBP/HEAD/monitor.sh -------------------------------------------------------------------------------- /paused_command.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzhphy/NeatIBP/HEAD/paused_command.sh -------------------------------------------------------------------------------- /preload/EnvVarSetter.txt: -------------------------------------------------------------------------------- 1 | export 2 | -------------------------------------------------------------------------------- /preload/MathematicaCommand.txt: -------------------------------------------------------------------------------- 1 | math 2 | -------------------------------------------------------------------------------- /preload/ShellProcessor.txt: -------------------------------------------------------------------------------- 1 | bash 2 | -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzhphy/NeatIBP/HEAD/run.sh --------------------------------------------------------------------------------