Skip to content

Commit

Permalink
fix broken doctests
Browse files Browse the repository at this point in the history
  • Loading branch information
Fe-r-oz committed Nov 29, 2024
1 parent 5fcf353 commit 7cf7484
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions ext/QuantumCliffordHeckeExt/lifted_product.jl
Original file line number Diff line number Diff line change
Expand Up @@ -219,6 +219,10 @@ julia> import Hecke: group_algebra, GF, abelian_group, gens; # hide
julia> l=4; m=6;
julia> GA = group_algebra(GF(2), abelian_group([l, m]));
julia> x, y = gens(GA);
julia> z = x*y;
julia> A = x^3 + y^5;
Expand Down Expand Up @@ -252,6 +256,10 @@ julia> 𝜋 = gens(GA)[1];
julia> A = 𝜋^2 + 𝜋^5 + 𝜋^44;
julia> B = 𝜋^8 + 𝜋^14 + 𝜋^47;
julia> c = two_block_group_algebra_codes(A, B);
julia> code_n(c), code_k(c)
(108, 12)
```
Expand Down

0 comments on commit 7cf7484

Please sign in to comment.