-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* docs: 📝 Add RTD docs * docs: 📝 Write library documentation * docs: ♻️ Align "MQT Debug" vs "MQT Debugger" to "MQT Debugger" * docs: 📝 Add docstrings to python bindings * docs: 📝 Add interactive debugging section to docs and add docstrings to python bindings * fix: ✏️ Fix links to QCEC instead of mqt debugger * fix: 💄 Fix linter issues * refactor: 🏷️ Ann py.typed marker and pyi file for _version * fix: 👷 Remove CMAKE_GENERATOR = Ninja from windows cibuildwheel tool
- Loading branch information
Showing
103 changed files
with
2,481 additions
and
539 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
Support | ||
======= | ||
|
||
If you are stuck with a problem using MQT Debug or are having questions, please do get in touch at our `Issues <https://github.com/cda-tum/mqt-debug/issues>`_ or `Discussions <https://github.com/cda-tum/mqt-debug/discussions>`_. We'd love to help. | ||
If you are stuck with a problem using MQT Debugger or are having questions, please do get in touch at our `Issues <https://github.com/cda-tum/mqt-debugger/issues>`_ or `Discussions <https://github.com/cda-tum/mqt-debugger/discussions>`_. We'd love to help. | ||
|
||
You can save time by following this procedure when reporting a problem: | ||
|
||
- Do try to solve the problem on your own first. Make sure to consult the `Documentation <https://mqt.readthedocs.io/projects/debug>`_. | ||
- Search through past `Issues <https://github.com/cda-tum/mqt-debug/issues>`_ to see if someone else already had the same problem. | ||
- Do try to solve the problem on your own first. Make sure to consult the `Documentation <https://mqt.readthedocs.io/projects/debugger>`_. | ||
- Search through past `Issues <https://github.com/cda-tum/mqt-debugger/issues>`_ to see if someone else already had the same problem. | ||
- Before filing a bug report, try to create a minimal working example (MWE) that reproduces the problem. It's much easier to identify the cause for the problem if a handful of lines suffice to show that something isn't working. | ||
|
||
You can also always reach us at `quantum.cda@xcit.tum.de <mailto:quantum.cda@xcit.tum.de>`_. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
add_executable(mqt_debug_app testDDSimDebugger.cpp) | ||
add_executable(mqt_debugger_app testDDSimDebugger.cpp) | ||
|
||
# set include directories | ||
target_include_directories(mqt_debug_app PUBLIC ${PROJECT_SOURCE_DIR}/include | ||
${PROJECT_BINARY_DIR}/include) | ||
target_include_directories(mqt_debugger_app PUBLIC ${PROJECT_SOURCE_DIR}/include | ||
${PROJECT_BINARY_DIR}/include) | ||
|
||
# link to the MQT::Core libraries | ||
target_link_libraries(mqt_debug_app PRIVATE ${PROJECT_NAME}) | ||
target_link_libraries(mqt_debug_app PUBLIC MQT::CoreDD) | ||
target_link_libraries(mqt_debug_app PRIVATE MQT::ProjectWarnings MQT::ProjectOptions) | ||
target_link_libraries(mqt_debugger_app PRIVATE ${PROJECT_NAME}) | ||
target_link_libraries(mqt_debugger_app PUBLIC MQT::CoreDD) | ||
target_link_libraries(mqt_debugger_app PRIVATE MQT::ProjectWarnings MQT::ProjectOptions) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
build/ | ||
doxygen/ |
Oops, something went wrong.