Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add documentation of single qubit problem #278

Merged
merged 4 commits into from
Mar 8, 2022
Merged
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion pytket/binders/mapping.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,10 @@ PYBIND11_MODULE(mapping, m) {
LexiLabellingMethod, std::shared_ptr<LexiLabellingMethod>, RoutingMethod>(
m, "LexiLabellingMethod",
"Defines a RoutingMethod for labelling Qubits that uses the "
"Lexicographical Comparison approach outlined in arXiv:1902.08091.")
"Lexicographical Comparison approach outlined in arXiv:1902.08091.\n"
"This method is only labelling interacting qubits that have multi qubit "
"gates on them. To get qubits with only single qubits gates or not gates "
cqc-melf marked this conversation as resolved.
Show resolved Hide resolved
"at all labelled, too, please use a placer in addition")
.def(py::init<>(), "LexiLabellingMethod constructor.");

py::class_<
Expand Down