Skip to main content

Numerical evaluator of integrals implementing the "Sector Decomposition" method (arXiv:2305.19768, arXiv:2108.10807, arXiv:1703.09692, arXiv:hep-ph/0004013, arXiv:0803.4177).

Project description

pySecDec

Documentation Status

pySecDec is a toolbox for the calculation of dimensionally regulated parameter integrals using the sector decomposition approach.

See 2305.19768, 2108.10807, 1811.11720, and 1703.09692 for description of the implementation; 0803.4177 and hep-ph/0004013 for description of sector decomposition; and 1502.06595 for SecDec, the predecessor of pySecDec.

Installation

pySecDec should work under Python version 3.8 or newer on the usual Unix-like systems.

The latest release can be installed from PyPI by first upgrading pip:

$ python3 -m pip install --user 'pip>=20.1'

and then running:

$ python3 -m pip install --user --upgrade pySecDec

This command will install the prebuild version of pySecDec if it is available; if not, then the dependencies will be compiled from source (this might take a while). One can also force building from source like this:

$ python3 -m pip install --user --upgrade --no-binary :all: pySecDec

Additional dependencies

pySecDec and the integration libraries it produces depend on multiple third-party non-Python packages, all of which are contained in pySecDecContrib/ folder and will be automatally built during the normal installation procedure. These packages are:

Basic Usage

You can find the pySecDec manual over at https://secdec.readthedocs.io. Additionally, the development repository contains a folder examples with examples of pySecDec usage.

A simple example of the evaluation of a loop integral with pySecDec is box1L. This example computes a one-loop box with one off-shell leg (with off-shellness s1) and one internal massive line (with mass squared msq).

To run this example change into the box1L directory and run the commands:

$ python3 generate_box1L.py
$ make -C box1L
$ python3 integrate_box1L.py

The file generate_box1L.py defines the loop integral and calls pySecDec to perform the sector decomposition. Once run it produces the directory box1L which contains the code required to numerically evaluate the integral. The make command builds this code and produces a library. The file integrate_box1L.py loads the integral library and evaluates the integral for a specified numerical point.

This will print the result of the integral evaluated with Mandelstam invariants s=4.0, t=-0.75 and s1=1.25, msq=1.0:

eps^-2: -0.142868356275422825 - 1.63596224151119965e-6*I +/- ( 0.00118022544307414272 + 0.000210769456586696187*I )
eps^-1: 0.639405625715768089 + 1.34277036689902802e-6*I +/- ( 0.00650722394065588166 + 0.000971496627153705891*I )
eps^0 : -0.425514350373418893 + 1.86892487760861536*I +/- ( 0.00706834403694714484 + 0.0186497890361357298*I )

Examples

Several examples of pySecDec usage can be found in the source code repository (examples directory). Here are some of them:

  • easy: a simple parametric integral, described in the manual in Section 2.1.
  • box1L: a simple 1-loop, 4-point, 4-propagator integral, described in the manual Section 2.2.
  • triangle2L: a 2-loop, 3-point, 6-propagator diagram, also containing massive propagators.
  • box2L_numerator: a massless planar on-shell 2-loop, 4-point, 7-propagator box with a numerator, either defined as an inverse propagator box2L_invprop.py or in terms of contracted Lorentz vectors box2L_contracted_tensor.py.
  • triangle3L: a 2-loop, 3-point, 7-propagator integral, demonstrates that the symmetry finder can significantly reduce the number of sectors.
  • elliptic2L_euclidean: an integral known to contain elliptic functions, evaluated at a Euclidean phase-space point.
  • elliptic2L_physical: an integral known to contain elliptic functions, evaluated at a physical phase-space point.
  • triangle2L_split: a 2-loop, 3-point, 6-propagator integral without a Euclidean region due to special kinematics.
  • hypergeo5F4: a general dimensionally regulated parameter integral, corresponding to a Hypergeometric function 5F4.
  • 4photon1L_amplitude: calculation of the 4-photon amplitude, showing how to use pySecDec as an integral library in a larger context.
  • two_regulators: an integral involving poles in two different regulators.
  • userdefined_cpp: a collection of examples demonstrating how to combine polynomials to be decomposed with other user-defined functions.

Note that the examples are not installed via the normal installation procedure. They can only be found in the source code repository.

Development

During development instead of full installation it is more convenient to work directly from the checked out repository. To make this work, one needs to install the Python dependencies, build the contributed software, and setup PYTHONPATH to point to the sources; do this by running

$ make dependencies
$ make build
$ export PYTHONPATH=$PWD

Note that make dependencies will install the dependency libraries using python3 binary by default. A different Python binary can be chosen for this by setting the PYTHON argument to it, for example:

$ make dependencies PYTHON=python3.10
$ make build PYTHON=python3.10

The Makefile in the package's root directory also implements other common development tasks. You can list all available targets with the command

$ make help

pySecDec comes with a self test suite written in the python unittest framework. The most convenient way to run all test is using pytest. If pytest is installed (as it would be after make dependencies), type

$ make check

in the source repository to run all tests. Developers should write test cases for ALL functions they implement and make sure that ALL tests pass before uploading a commit.

Building the Documentation

To build the documentation of pySecDec, you need Sphinx. If Sphinx is installed (as it would be after make dependencies), the command

$ make doc

generates the documentation in html and in pdf format. Developers should inline-document python functions and also keep the C++ part up to date. To generate HTML and PDF separately, use

$ make doc-html

and

$ make doc-pdf

Building the documentation in pdf format requires an up-to-date installation of a latex implementation. If you get an error about missing .sty file, do the following:

  1. If you are an administrator on your computer, try to install the missing latex packages with your favorite package manager. The TeXLive or MiKTeX implementations should contain all required packages.

  2. If you are not an administrator, first get the missing packages, e.g. from CTAN. Collect the missing files in one or more directories and set the environment variable TEXINPUTS to these directories in the same way as the PATH variable is typically set.

Making a PyPI release

To create a release on PyPI, first increment the version number of pySecDec in pyproject.toml, and update CHANGELOG.md. Then make sure you have a recent Singularity installed, and run

./build-release.sh

This will create a source distribution file (dist/*.tar.gz) and several prebuild distribution files (dist/*.whl); it will also print the instructions on how to double-check the files with auditwheel and upload them to PyPI using Twine.

Note that an account with PyPI is needed for this. Please see the packaging python projects guide for details.

The reason for using Singularity here is because prebuilt distributions must be built inside one of the manylinux Docker images: this guarantees that the prebuilt libraries and programs will work on a wide range of Linux systems. If it wasn't for this requirement, then making a distribution would be as simple as running

$ make dist

and then uploading the distfiles in dist/:

$ twine upload dist/pySecDec-<version>.tar.gz
$ twine upload dist/pySecDec-<version>-<tag>.whl

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pySecDec-1.6.4.tar.gz (22.5 MB view details)

Uploaded Source

Built Distributions

pySecDec-1.6.4-py3-none-manylinux_2_28_x86_64.whl (47.8 MB view details)

Uploaded Python 3 manylinux: glibc 2.28+ x86-64

pySecDec-1.6.4-py3-none-manylinux_2_24_x86_64.whl (43.5 MB view details)

Uploaded Python 3 manylinux: glibc 2.24+ x86-64

pySecDec-1.6.4-py3-none-manylinux2014_x86_64.whl (48.3 MB view details)

Uploaded Python 3

pySecDec-1.6.4-py3-none-manylinux2010_x86_64.whl (52.4 MB view details)

Uploaded Python 3 manylinux: glibc 2.12+ x86-64

File details

Details for the file pySecDec-1.6.4.tar.gz.

File metadata

  • Download URL: pySecDec-1.6.4.tar.gz
  • Upload date:
  • Size: 22.5 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.5

File hashes

Hashes for pySecDec-1.6.4.tar.gz
Algorithm Hash digest
SHA256 468a56578d48f8573f402312f27c762e3d5cc79a74e174266e33052ea5a19b1b
MD5 f8f8a10e9bc0e6a5f5412c4f01937237
BLAKE2b-256 3b36d3c5f245e5e04884dc6ccfaa0cd9289537a155fd1a7de1c397e859b5aef4

See more details on using hashes here.

File details

Details for the file pySecDec-1.6.4-py3-none-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pySecDec-1.6.4-py3-none-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 78291139d5cf2cdd40c926e4c223fecf56ebb96e5b4f6cb88ac33bd5c595fa6d
MD5 6762e49d9d9ba9c85fd662885f8785e7
BLAKE2b-256 7d42cb40fbc4d0911c01f8a0f7ca289eb913153205867b5010efcbf1599f110a

See more details on using hashes here.

File details

Details for the file pySecDec-1.6.4-py3-none-manylinux_2_24_x86_64.whl.

File metadata

File hashes

Hashes for pySecDec-1.6.4-py3-none-manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 d08db3a31bdd8d66286d00885a4b35dad26edc15860227aabded17e01615f5e3
MD5 fc85212207abcb0c1dc1ee9174557be0
BLAKE2b-256 b401a59f4f4ccdb3643ed51e451cbd24f702e9452c0de2025cccb78a4dd7b1ac

See more details on using hashes here.

File details

Details for the file pySecDec-1.6.4-py3-none-manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pySecDec-1.6.4-py3-none-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dec8b156630058213468974c0ac3ea3e992ba75e4a4e5aeff89a4664d7fe00a5
MD5 78651c446fd21d6162d89a9f0ff3b7e7
BLAKE2b-256 3009739dea45782c8243d98c66954437b4a1e13edad01139c5e5b138fdb40b43

See more details on using hashes here.

File details

Details for the file pySecDec-1.6.4-py3-none-manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for pySecDec-1.6.4-py3-none-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 ff2f9264a20d7666a39d34a1e8cf3df43951989772f8743cdfe93ebf793efe5c
MD5 29e4a785b0484793423c30611a7db966
BLAKE2b-256 e019aa31293dde8b4093d2f231b7fa4315b6b5659ac3c555ce832c3dd3409526

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page