Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
6 changes: 3 additions & 3 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,14 +30,14 @@ repos:

## Check the pyproject.toml file
- repo: https://github.com/henryiii/validate-pyproject-schema-store
rev: 2026.03.15
rev: 2026.03.27
hooks:
- id: validate-pyproject
priority: 0

## Check JSON schemata
- repo: https://github.com/python-jsonschema/check-jsonschema
rev: 0.37.0
rev: 0.37.1
hooks:
- id: check-github-workflows
priority: 0
Expand Down Expand Up @@ -114,7 +114,7 @@ repos:

## Python linting using ruff
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.15.7
rev: v0.15.8
hooks:
- id: ruff-format
priority: 1
Expand Down
2 changes: 0 additions & 2 deletions src/mqt/problemsolver/tsp.py
Original file line number Diff line number Diff line change
Expand Up @@ -310,8 +310,6 @@ def encode_eigenstate(
for i in range(len(eigen_register)):
if eigenstate[i] == "1":
qc.x(eigen_register[i])
if eigenstate[i] == "0":
pass
qc.barrier()
return qc

Expand Down
Loading