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

Zoo: [[2^j, 2^-j-2,3]] Gottesman /Quantum Hamming Code #238

Closed
wants to merge 126 commits into from

Commits on Feb 28, 2024

  1. Update references.bib

    Fe-r-oz committed Feb 28, 2024
    Configuration menu
    Copy the full SHA
    3bf0779 View commit details
    Browse the repository at this point in the history
  2. Update references.md

    Fe-r-oz committed Feb 28, 2024
    Configuration menu
    Copy the full SHA
    f207dc1 View commit details
    Browse the repository at this point in the history
  3. Update references.md

    Fe-r-oz committed Feb 28, 2024
    Configuration menu
    Copy the full SHA
    7070155 View commit details
    Browse the repository at this point in the history
  4. Update decoder_pipeline.jl

    Iterative Decoder Attempted
    
    Packages Used:
    
    1. QuantumClifford
    2. LDPCDecoders
    3. Distances
    Fe-r-oz committed Feb 28, 2024
    Configuration menu
    Copy the full SHA
    df8d6b8 View commit details
    Browse the repository at this point in the history
  5. Update decoder_pipeline.jl

    Fe-r-oz committed Feb 28, 2024
    Configuration menu
    Copy the full SHA
    296c634 View commit details
    Browse the repository at this point in the history

Commits on Mar 1, 2024

  1. Create code833

    Fe-r-oz committed Mar 1, 2024
    Configuration menu
    Copy the full SHA
    4032b7f View commit details
    Browse the repository at this point in the history
  2. Create code833

    Fe-r-oz committed Mar 1, 2024
    Configuration menu
    Copy the full SHA
    55a4955 View commit details
    Browse the repository at this point in the history
  3. Delete src/ecc/code833

    Fe-r-oz committed Mar 1, 2024
    Configuration menu
    Copy the full SHA
    5242529 View commit details
    Browse the repository at this point in the history
  4. Rename code833 to code833.jl

    Fe-r-oz committed Mar 1, 2024
    Configuration menu
    Copy the full SHA
    fe4b153 View commit details
    Browse the repository at this point in the history
  5. Update code833.jl

    Fe-r-oz committed Mar 1, 2024
    Configuration menu
    Copy the full SHA
    568f31d View commit details
    Browse the repository at this point in the history
  6. Create code422.jl

    Fe-r-oz committed Mar 1, 2024
    Configuration menu
    Copy the full SHA
    b39260e View commit details
    Browse the repository at this point in the history
  7. Create QHammingcode.jl

    #how to use
    # Create two different instances of the quantum Hamming code
    #code1 = QHamming(5)  # r = 5
    #code2 = QHamming(7)  # r = 7
    
    # Get the parity check matrices for each instance
    #H1 = parity_checks(code1)
    #H2 = parity_checks(code2)
    Fe-r-oz committed Mar 1, 2024
    Configuration menu
    Copy the full SHA
    e0f960c View commit details
    Browse the repository at this point in the history
  8. Create hypergraphproductcode.jl

    Package to be used:  Linear Algebra
    
    # Example usage
    #n_i = [2, 3]  # Valid example
    #k_i = [1, 2]
    #d_i = [1, 1]
    #r_i = [1, 1]
    
    #code = HypergraphProduct(n_i, k_i, d_i, r_i)
    
    # Access and use functionalities:
    #println("Code block size (n):")
    #println(code_n(code))
    
    #println("X parity-check matrix:")
    #println(parity_checks_x(code))
    
    #println("Z parity-check matrix:")
    #println(parity_checks_z(code))
    Fe-r-oz committed Mar 1, 2024
    Configuration menu
    Copy the full SHA
    3f8a37e View commit details
    Browse the repository at this point in the history
  9. Merge pull request #1 from Fe-r-oz/Fe-r-oz-patch-1

    Create hypergraphproductcode.jl
    Fe-r-oz committed Mar 1, 2024
    Configuration menu
    Copy the full SHA
    2f63447 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    344e13b View commit details
    Browse the repository at this point in the history
  11. Update QHammingcode.jl

    Fe-r-oz committed Mar 1, 2024
    Configuration menu
    Copy the full SHA
    b81d4de View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    5d48c01 View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    3ca1cc2 View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    7d1b34d View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    7e6c48e View commit details
    Browse the repository at this point in the history
  16. Update references.bib

    Fe-r-oz committed Mar 1, 2024
    Configuration menu
    Copy the full SHA
    0f43554 View commit details
    Browse the repository at this point in the history
  17. Update references.md

    Fe-r-oz committed Mar 1, 2024
    Configuration menu
    Copy the full SHA
    0597d35 View commit details
    Browse the repository at this point in the history
  18. Configuration menu
    Copy the full SHA
    9f86c77 View commit details
    Browse the repository at this point in the history
  19. Update decoder_pipeline.jl

    Fe-r-oz committed Mar 1, 2024
    Configuration menu
    Copy the full SHA
    5997735 View commit details
    Browse the repository at this point in the history
  20. Update ECC.jl

    Fe-r-oz committed Mar 1, 2024
    Configuration menu
    Copy the full SHA
    748b866 View commit details
    Browse the repository at this point in the history
  21. Update ECC.jl

    Fe-r-oz committed Mar 1, 2024
    Configuration menu
    Copy the full SHA
    d3f00c3 View commit details
    Browse the repository at this point in the history

Commits on Mar 2, 2024

  1. Update qhammingcode.jl

    Fe-r-oz committed Mar 2, 2024
    Configuration menu
    Copy the full SHA
    ce21699 View commit details
    Browse the repository at this point in the history
  2. Update test_ecc_encoding.jl

    Fe-r-oz committed Mar 2, 2024
    Configuration menu
    Copy the full SHA
    683933d View commit details
    Browse the repository at this point in the history
  3. Update test_ecc_syndromes.jl

    Fe-r-oz committed Mar 2, 2024
    Configuration menu
    Copy the full SHA
    48e2d09 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    3b12a0a View commit details
    Browse the repository at this point in the history
  5. Update test_ecc.jl

    Fe-r-oz committed Mar 2, 2024
    Configuration menu
    Copy the full SHA
    3f784ea View commit details
    Browse the repository at this point in the history
  6. Update qhammingcode.jl

    Fe-r-oz committed Mar 2, 2024
    Configuration menu
    Copy the full SHA
    2f0afcf View commit details
    Browse the repository at this point in the history
  7. Add files via upload

    Fe-r-oz committed Mar 2, 2024
    Configuration menu
    Copy the full SHA
    ccf4499 View commit details
    Browse the repository at this point in the history
  8. Create test_qhamming_code.jl

    Fe-r-oz committed Mar 2, 2024
    Configuration menu
    Copy the full SHA
    fa2fc87 View commit details
    Browse the repository at this point in the history

Commits on Mar 3, 2024

  1. Configuration menu
    Copy the full SHA
    042ef3e View commit details
    Browse the repository at this point in the history
  2. Update test/test_ecc_decoder_all_setups.jl

    Co-authored-by: Stefan Krastanov <github.acc@krastanov.org>
    Fe-r-oz and Krastanov committed Mar 3, 2024
    Configuration menu
    Copy the full SHA
    f091649 View commit details
    Browse the repository at this point in the history
  3. Update ECC.jl

    Fe-r-oz committed Mar 3, 2024
    Configuration menu
    Copy the full SHA
    8547a2d View commit details
    Browse the repository at this point in the history
  4. Update test_ecc.jl

    Fe-r-oz committed Mar 3, 2024
    Configuration menu
    Copy the full SHA
    912321b View commit details
    Browse the repository at this point in the history
  5. Update test_ecc_syndromes.jl

    Fe-r-oz committed Mar 3, 2024
    Configuration menu
    Copy the full SHA
    1a1eefd View commit details
    Browse the repository at this point in the history
  6. Update test_ecc_encoding.jl

    Fe-r-oz committed Mar 3, 2024
    Configuration menu
    Copy the full SHA
    d5187f0 View commit details
    Browse the repository at this point in the history
  7. Update references.md

    Fe-r-oz committed Mar 3, 2024
    Configuration menu
    Copy the full SHA
    6449d6b View commit details
    Browse the repository at this point in the history
  8. Update ECC.jl

    Fe-r-oz committed Mar 3, 2024
    Configuration menu
    Copy the full SHA
    72f2f16 View commit details
    Browse the repository at this point in the history
  9. Update test_qhamming_code.jl

    Fe-r-oz committed Mar 3, 2024
    Configuration menu
    Copy the full SHA
    845b7b1 View commit details
    Browse the repository at this point in the history
  10. Update test_throws.jl

    Fe-r-oz committed Mar 3, 2024
    Configuration menu
    Copy the full SHA
    73b4c1d View commit details
    Browse the repository at this point in the history
  11. Update qhammingcode.jl

    Fe-r-oz committed Mar 3, 2024
    Configuration menu
    Copy the full SHA
    a1901f5 View commit details
    Browse the repository at this point in the history

Commits on Mar 4, 2024

  1. Update ECC.jl

    Fe-r-oz committed Mar 4, 2024
    Configuration menu
    Copy the full SHA
    c8bc9f4 View commit details
    Browse the repository at this point in the history
  2. Update qhammingcode.jl

    Fe-r-oz committed Mar 4, 2024
    Configuration menu
    Copy the full SHA
    17c66eb View commit details
    Browse the repository at this point in the history

Commits on Mar 5, 2024

  1. Update qhammingcode.jl

    Fe-r-oz committed Mar 5, 2024
    Configuration menu
    Copy the full SHA
    d1945e6 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    6035ff9 View commit details
    Browse the repository at this point in the history
  3. Update eightqubit.jl

    Fe-r-oz committed Mar 5, 2024
    Configuration menu
    Copy the full SHA
    31e0a0e View commit details
    Browse the repository at this point in the history
  4. Update ECC.jl

    Fe-r-oz committed Mar 5, 2024
    Configuration menu
    Copy the full SHA
    6f6704f View commit details
    Browse the repository at this point in the history
  5. Update test_ecc.jl

    Fe-r-oz committed Mar 5, 2024
    Configuration menu
    Copy the full SHA
    84dfb02 View commit details
    Browse the repository at this point in the history
  6. Update test_throws.jl

    Fe-r-oz committed Mar 5, 2024
    Configuration menu
    Copy the full SHA
    e4d0759 View commit details
    Browse the repository at this point in the history
  7. Update test_qhamming_code.jl

    Delete [test_qhamming_code.jl]
    Fe-r-oz committed Mar 5, 2024
    Configuration menu
    Copy the full SHA
    412d54a View commit details
    Browse the repository at this point in the history

Commits on Mar 6, 2024

  1. Configuration menu
    Copy the full SHA
    33fb94b View commit details
    Browse the repository at this point in the history
  2. Update test_ecc_encoding.jl

    Fe-r-oz committed Mar 6, 2024
    Configuration menu
    Copy the full SHA
    8eb5bb7 View commit details
    Browse the repository at this point in the history
  3. Update test_ecc_syndromes.jl

    Fe-r-oz committed Mar 6, 2024
    Configuration menu
    Copy the full SHA
    d1bc220 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    fd4d073 View commit details
    Browse the repository at this point in the history
  5. Update references.md

    Removed the extra blank line (#line 35) that was present! It was there from when I first added extra references of QECC . 
    
    In original there are only 34 line so made sure that nothing changed here,
    Fe-r-oz committed Mar 6, 2024
    Configuration menu
    Copy the full SHA
    e3a1fcf View commit details
    Browse the repository at this point in the history
  6. Create sixteenqubit.jl

    Fe-r-oz committed Mar 6, 2024
    Configuration menu
    Copy the full SHA
    9364f6c View commit details
    Browse the repository at this point in the history
  7. Update ECC.jl

    Fe-r-oz committed Mar 6, 2024
    Configuration menu
    Copy the full SHA
    1c740cf View commit details
    Browse the repository at this point in the history

Commits on Mar 7, 2024

  1. added better names of eccs in the zoo, removed the test_hamming_code …

    …file, etc.
    Fe-r-oz committed Mar 7, 2024
    Configuration menu
    Copy the full SHA
    e40f1ab View commit details
    Browse the repository at this point in the history
  2. minor modifications

    Fe-r-oz committed Mar 7, 2024
    Configuration menu
    Copy the full SHA
    733a7ad View commit details
    Browse the repository at this point in the history
  3. minor modifications

    Fe-r-oz committed Mar 7, 2024
    Configuration menu
    Copy the full SHA
    a6d1d1b View commit details
    Browse the repository at this point in the history
  4. minor modifications

    Fe-r-oz committed Mar 7, 2024
    Configuration menu
    Copy the full SHA
    5a2913f View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    62fdcbe View commit details
    Browse the repository at this point in the history
  6. minor tweak

    Fe-r-oz committed Mar 7, 2024
    Configuration menu
    Copy the full SHA
    b572c8f View commit details
    Browse the repository at this point in the history

Commits on Mar 8, 2024

  1. Configuration menu
    Copy the full SHA
    32e8676 View commit details
    Browse the repository at this point in the history
  2. Original Paramters

    Fe-r-oz committed Mar 8, 2024
    Configuration menu
    Copy the full SHA
    e7e9b40 View commit details
    Browse the repository at this point in the history

Commits on Mar 9, 2024

  1. Update src/ecc/codes/gottesman.jl

    Co-authored-by: Stefan Krastanov <github.acc@krastanov.org>
    Fe-r-oz and Krastanov committed Mar 9, 2024
    Configuration menu
    Copy the full SHA
    04c62e8 View commit details
    Browse the repository at this point in the history
  2. Update src/ecc/ECC.jl

    Co-authored-by: Stefan Krastanov <github.acc@krastanov.org>
    Fe-r-oz and Krastanov committed Mar 9, 2024
    Configuration menu
    Copy the full SHA
    4ab69ae View commit details
    Browse the repository at this point in the history
  3. Update src/ecc/codes/gottesman.jl

    Co-authored-by: Stefan Krastanov <github.acc@krastanov.org>
    Fe-r-oz and Krastanov committed Mar 9, 2024
    Configuration menu
    Copy the full SHA
    1b602f4 View commit details
    Browse the repository at this point in the history
  4. Update src/ecc/codes/gottesman.jl

    Co-authored-by: Stefan Krastanov <github.acc@krastanov.org>
    Fe-r-oz and Krastanov committed Mar 9, 2024
    Configuration menu
    Copy the full SHA
    cc8c6e2 View commit details
    Browse the repository at this point in the history
  5. Update src/ecc/codes/gottesman.jl

    Co-authored-by: Stefan Krastanov <github.acc@krastanov.org>
    Fe-r-oz and Krastanov committed Mar 9, 2024
    Configuration menu
    Copy the full SHA
    bdac20b View commit details
    Browse the repository at this point in the history
  6. sompleting suggested changes

    Fe-r-oz committed Mar 9, 2024
    Configuration menu
    Copy the full SHA
    39344e0 View commit details
    Browse the repository at this point in the history
  7. Update test/test_ecc_decoder_all_setups.jl

    Co-authored-by: Stefan Krastanov <github.acc@krastanov.org>
    Fe-r-oz and Krastanov committed Mar 9, 2024
    Configuration menu
    Copy the full SHA
    f547dd4 View commit details
    Browse the repository at this point in the history
  8. Update test/test_ecc_decoder_all_setups.jl

    Co-authored-by: Stefan Krastanov <github.acc@krastanov.org>
    Fe-r-oz and Krastanov committed Mar 9, 2024
    Configuration menu
    Copy the full SHA
    a907f56 View commit details
    Browse the repository at this point in the history
  9. suggested changes

    Fe-r-oz committed Mar 9, 2024
    Configuration menu
    Copy the full SHA
    ba2f3ff View commit details
    Browse the repository at this point in the history
  10. undoing extra lines

    Fe-r-oz committed Mar 9, 2024
    Configuration menu
    Copy the full SHA
    0828eaf View commit details
    Browse the repository at this point in the history
  11. minor modification

    Fe-r-oz committed Mar 9, 2024
    Configuration menu
    Copy the full SHA
    bd16194 View commit details
    Browse the repository at this point in the history
  12. suggested changes

    Fe-r-oz committed Mar 9, 2024
    Configuration menu
    Copy the full SHA
    63b1093 View commit details
    Browse the repository at this point in the history
  13. completing suggested changes

    Fe-r-oz committed Mar 9, 2024
    Configuration menu
    Copy the full SHA
    d52a03b View commit details
    Browse the repository at this point in the history
  14. completing suggested changes

    Fe-r-oz committed Mar 9, 2024
    Configuration menu
    Copy the full SHA
    3dbd5a3 View commit details
    Browse the repository at this point in the history
  15. undoing extra lines in files

    Fe-r-oz committed Mar 9, 2024
    Configuration menu
    Copy the full SHA
    66255aa View commit details
    Browse the repository at this point in the history
  16. undoing extra lines

    Fe-r-oz committed Mar 9, 2024
    Configuration menu
    Copy the full SHA
    e39fd21 View commit details
    Browse the repository at this point in the history
  17. suggested changes

    Fe-r-oz committed Mar 9, 2024
    Configuration menu
    Copy the full SHA
    67a979c View commit details
    Browse the repository at this point in the history
  18. undoing extra lines

    Fe-r-oz committed Mar 9, 2024
    Configuration menu
    Copy the full SHA
    c54744f View commit details
    Browse the repository at this point in the history

Commits on Mar 11, 2024

  1. minor modification

    Fe-r-oz committed Mar 11, 2024
    Configuration menu
    Copy the full SHA
    38aa86f View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    e50a44b View commit details
    Browse the repository at this point in the history
  3. minor modification

    Fe-r-oz committed Mar 11, 2024
    Configuration menu
    Copy the full SHA
    3eb22e1 View commit details
    Browse the repository at this point in the history
  4. minor modification

    Fe-r-oz committed Mar 11, 2024
    Configuration menu
    Copy the full SHA
    5c3864e View commit details
    Browse the repository at this point in the history
  5. Gottesman aka quantum Hamming code implementation

    Fe-r-oz committed Mar 11, 2024
    Configuration menu
    Copy the full SHA
    a0698b7 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    1a7e926 View commit details
    Browse the repository at this point in the history
  7. Minor Modification

    Fe-r-oz committed Mar 11, 2024
    Configuration menu
    Copy the full SHA
    90e52f0 View commit details
    Browse the repository at this point in the history

Commits on Mar 13, 2024

  1. Using Precise Naming Convention

    Fe-r-oz committed Mar 13, 2024
    Configuration menu
    Copy the full SHA
    ead9bbe View commit details
    Browse the repository at this point in the history

Commits on Mar 16, 2024

  1. Configuration menu
    Copy the full SHA
    42cd5ea View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    227b9d6 View commit details
    Browse the repository at this point in the history
  3. Update test/test_ecc_syndromes.jl

    Co-authored-by: Stefan Krastanov <github.acc@krastanov.org>
    Fe-r-oz and Krastanov committed Mar 16, 2024
    Configuration menu
    Copy the full SHA
    ff88de8 View commit details
    Browse the repository at this point in the history
  4. Update src/ecc/codes/gottesmancode.jl

    Co-authored-by: Stefan Krastanov <github.acc@krastanov.org>
    Fe-r-oz and Krastanov committed Mar 16, 2024
    Configuration menu
    Copy the full SHA
    536f55c View commit details
    Browse the repository at this point in the history
  5. resetting parameters to default

    Fe-r-oz committed Mar 16, 2024
    Configuration menu
    Copy the full SHA
    c5c7d60 View commit details
    Browse the repository at this point in the history
  6. "resetting to default parameters"

    Fe-r-oz committed Mar 16, 2024
    Configuration menu
    Copy the full SHA
    6527546 View commit details
    Browse the repository at this point in the history
  7. adding separate Hx and Hz checks in Gottesman

    Fe-r-oz committed Mar 16, 2024
    Configuration menu
    Copy the full SHA
    9e1cc0f View commit details
    Browse the repository at this point in the history
  8. Minor Modifications

    Fe-r-oz committed Mar 16, 2024
    Configuration menu
    Copy the full SHA
    3e5d4a7 View commit details
    Browse the repository at this point in the history
  9. minor modifications

    Fe-r-oz committed Mar 16, 2024
    Configuration menu
    Copy the full SHA
    035c006 View commit details
    Browse the repository at this point in the history
  10. minor modifications

    Fe-r-oz committed Mar 16, 2024
    Configuration menu
    Copy the full SHA
    ffb91a9 View commit details
    Browse the repository at this point in the history
  11. adding Hx and Hz checks in Gottesman

    Fe-r-oz committed Mar 16, 2024
    Configuration menu
    Copy the full SHA
    fd0408c View commit details
    Browse the repository at this point in the history
  12. utilizing stab_to_gf2

    Fe-r-oz committed Mar 16, 2024
    Configuration menu
    Copy the full SHA
    1d10548 View commit details
    Browse the repository at this point in the history
  13. Minor Modification

    Fe-r-oz committed Mar 16, 2024
    Configuration menu
    Copy the full SHA
    475fc80 View commit details
    Browse the repository at this point in the history
  14. updating changelog

    Fe-r-oz committed Mar 16, 2024
    Configuration menu
    Copy the full SHA
    b3c8725 View commit details
    Browse the repository at this point in the history
  15. resolving changelog conflicts

    Fe-r-oz committed Mar 16, 2024
    Configuration menu
    Copy the full SHA
    43a24fb View commit details
    Browse the repository at this point in the history
  16. undoing whitespaces

    Fe-r-oz committed Mar 16, 2024
    Configuration menu
    Copy the full SHA
    c00a0ed View commit details
    Browse the repository at this point in the history
  17. removing whitespaces

    Fe-r-oz committed Mar 16, 2024
    Configuration menu
    Copy the full SHA
    074683c View commit details
    Browse the repository at this point in the history
  18. Update test/test_ecc.jl

    Co-authored-by: Stefan Krastanov <github.acc@krastanov.org>
    Fe-r-oz and Krastanov committed Mar 16, 2024
    Configuration menu
    Copy the full SHA
    f39e8b3 View commit details
    Browse the repository at this point in the history
  19. minor modification

    Fe-r-oz committed Mar 16, 2024
    Configuration menu
    Copy the full SHA
    51fbc02 View commit details
    Browse the repository at this point in the history
  20. resolving conflicts

    Fe-r-oz committed Mar 16, 2024
    Configuration menu
    Copy the full SHA
    80189ef View commit details
    Browse the repository at this point in the history
  21. Configuration menu
    Copy the full SHA
    f87161a View commit details
    Browse the repository at this point in the history
  22. Configuration menu
    Copy the full SHA
    f07fd2c View commit details
    Browse the repository at this point in the history
  23. undoing whitespaces

    Fe-r-oz committed Mar 16, 2024
    Configuration menu
    Copy the full SHA
    8831a55 View commit details
    Browse the repository at this point in the history
  24. undoing whitespaces

    Fe-r-oz committed Mar 16, 2024
    Configuration menu
    Copy the full SHA
    73fc7d2 View commit details
    Browse the repository at this point in the history
  25. undoing whitespaces

    Fe-r-oz committed Mar 16, 2024
    Configuration menu
    Copy the full SHA
    a753f32 View commit details
    Browse the repository at this point in the history
  26. minor modification

    Fe-r-oz committed Mar 16, 2024
    Configuration menu
    Copy the full SHA
    e55dc19 View commit details
    Browse the repository at this point in the history
  27. updating changelog

    Fe-r-oz committed Mar 16, 2024
    Configuration menu
    Copy the full SHA
    31c38fe View commit details
    Browse the repository at this point in the history
  28. cleanup

    Krastanov committed Mar 16, 2024
    Configuration menu
    Copy the full SHA
    9a48cb2 View commit details
    Browse the repository at this point in the history

Commits on Mar 17, 2024

  1. Adding Checks

    Fe-r-oz committed Mar 17, 2024
    Configuration menu
    Copy the full SHA
    d564cd3 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    b218e1e View commit details
    Browse the repository at this point in the history
  3. improving indentation

    Fe-r-oz committed Mar 17, 2024
    Configuration menu
    Copy the full SHA
    f11efa5 View commit details
    Browse the repository at this point in the history