You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
📝 Update mqt-core links in docs/cmake to new organisation (#46)
* docs: 📝 update mqt-core links in docs/cmake to new organisation
* ci: 💚 fix link to mqt workflows
* ci: 💚 update workflow version
* ci: 💚 add permissions to python tests
* docs: 📝 bump minimum python version in Readme to 3.9
* ci: 💚 remove incorrectly added permissions for python tests
* build: 🔒 update lock file
* build: ⬆️ add support for python 3.13
* ci: 💚 remove cmake args from ci
* ci: 💚 disable eigen tests in cmake args of CI to hopefully fix issue
* ci: 💚 set option to disable fortran in ci cmake call
A tool for debugging quantum circuits developed as part of the [_Munich Quantum Toolkit (MQT)_](https://mqt.readthedocs.io) by the [Chair for Design Automation](https://www.cda.cit.tum.de/) at the [Technical University of Munich](https://www.tum.de/).
21
-
It proposes an interface for the simulation of circuits and diagnosis of errors and provides a base implementation built upon [MQT Core](https://github.com/cda-tum/mqt-core), which forms the backbone of the MQT.
21
+
It proposes an interface for the simulation of circuits and diagnosis of errors and provides a base implementation built upon [MQT Core](https://github.com/munich-quantum-toolkit/core), which forms the backbone of the MQT.
22
22
It also provides a Debugger Adapter Protocol (DAP) server that can be used to integrate the debugger into IDEs.
23
23
24
24
<palign="center">
@@ -31,7 +31,7 @@ If you have any questions, feel free to contact us via [quantum.cda@xcit.tum.de]
31
31
32
32
## Getting Started
33
33
34
-
MQT Debugger is available via [PyPI](https://pypi.org/project/mqt.debugger/) for Linux, macOS, and Windows and supports Python 3.8 to 3.12.
34
+
MQT Debugger is available via [PyPI](https://pypi.org/project/mqt.debugger/) for Linux, macOS, and Windows and supports Python 3.9 to 3.13.
The implementation is compatible with any C++20 compiler, a minimum CMake version of 3.19, and Python 3.8+.
56
+
The implementation is compatible with any C++20 compiler, a minimum CMake version of 3.19, and Python 3.9+.
57
57
Please refer to the [documentation](https://mqt.readthedocs.io/projects/debugger) on how to build the project.
58
58
59
59
Building (and running) is continuously tested under Linux, macOS, and Windows using the [latest available system versions for GitHub Actions](https://github.com/actions/virtual-environments).
@@ -76,18 +76,8 @@ No. 101001318), the Bavarian State Ministry for Science and Arts through the Dis
76
76
Munich Quantum Valley, which is supported by the Bavarian state government with funds from the Hightech Agenda Bayern Plus.
Copy file name to clipboardExpand all lines: docs/Installation.rst
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@ Installation
2
2
============
3
3
4
4
MQT Debugger is mainly developed as a C++ library with many of its interfaces for important modules being defined in C.
5
-
Parts of the implementation build upon `MQT Core <https://github.com/cda-tum/mqt-core>`_, which forms the backbone of the `MQT <https://mqt.readthedocs.io>`_.
5
+
Parts of the implementation build upon `MQT Core <https://github.com/munich-quantum-toolkit/core>`_, which forms the backbone of the `MQT <https://mqt.readthedocs.io>`_.
6
6
In order to make the tool as accessible as possible, it comes with an easy-to-use Python interface.
7
7
8
8
We encourage installing MQT Debugger via pip (preferably in a `virtual environment <https://docs.python.org/3/library/venv.html>`_):
Copy file name to clipboardExpand all lines: docs/Quickstart.rst
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -24,7 +24,7 @@ All main functionalities are included in the module ``mqt.debugger``, no other m
24
24
state = dbg.create_ddsim_simulation_state()
25
25
26
26
The first step is to create a simulation state. The current implementation of MQT Debugger implements a single simulation backend based on
27
-
decision diagrams from `MQT Core <https://github.com/cda-tum/mqt-core>`_. This backend is instantiated by calling :py:func:`create_ddsim_simulation_state <mqt.debugger.create_ddsim_simulation_state>`.
27
+
decision diagrams from `MQT Core <https://github.com/munich-quantum-toolkit/core>`_. This backend is instantiated by calling :py:func:`create_ddsim_simulation_state <mqt.debugger.create_ddsim_simulation_state>`.
Copy file name to clipboardExpand all lines: docs/library/dd/Dd.rst
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
DD Implementation
2
2
=================
3
3
4
-
This section documents the implementation of the C interfaces specifically using the DD package from `MQT Core <https://github.com/cda-tum/mqt-core>`_
4
+
This section documents the implementation of the C interfaces specifically using the DD package from `MQT Core <https://github.com/munich-quantum-toolkit/core>`_
5
5
as a simulation backend and OpenQASM as the input language.
0 commit comments