Skip to content

Commit

Permalink
* Removed FibonacciDecoderGraph as a separate class and integrated fu…
Browse files Browse the repository at this point in the history
…nctionality into ClassicFibDecoder

* ClassicFibDecoder -> ClassicFibonacciDecoder
* Added Documentation
* Pylint/Black Adherence
  • Loading branch information
grace-harper committed Oct 2, 2023
1 parent ca87e79 commit 403e0ce
Show file tree
Hide file tree
Showing 9 changed files with 836 additions and 545 deletions.
5 changes: 2 additions & 3 deletions .pylintrc
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ class-attribute-naming-style=any
# Regular expression matching correct class attribute names. Overrides class-
# attribute-naming-style. If left empty, class attribute names will be checked
# with the set naming style.
class-attribute-rgx=([A-Za-z_][A-Za-z0-9_]{2,30}|(__.*__))$
class-attribute-rgx=([A-Za-z_][A-Za-z0-9_]{1,30}|(__.*__))$

# Naming style matching correct class constant names.
class-const-naming-style=UPPER_CASE
Expand Down Expand Up @@ -268,8 +268,7 @@ variable-naming-style=snake_case
# Regular expression matching correct variable names. Overrides variable-
# naming-style. If left empty, variable names will be checked with the set
# naming style.
variable-rgx=[a-z_][a-z0-9_]{1,30}$

variable-rgx=^[a-zA-Z_][a-zA-Z0-9_]{1,30}$

[CLASSES]

Expand Down
19 changes: 0 additions & 19 deletions qiskit_qec/codes/classic/fibonacci_code.py

This file was deleted.

Loading

0 comments on commit 403e0ce

Please sign in to comment.