Skip to content

Commit

Permalink
Change to changelog 9.16.0 - dev
Browse files Browse the repository at this point in the history
  • Loading branch information
Fe-r-oz committed Dec 21, 2024
1 parent 3be3b4e commit 2ead890
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,12 @@

# News

## v0.9.15 - 2024-12-22
## v0.9.16 - dev

- Enhancements to `GF(2)` Linear Algebra: unexported, experimental `gf2_row_echelon_with_pivots!`, `gf2_nullspace`, `gf2_rowspace_basis`.

## v0.9.15 - 2024-12-22

- `pftrajectories` now supports fast multiqubit measurements with `PauliMeasurement` in addition to the already supported single qubit measurements `sMX/Z/Y` and workarounds like `naive_syndrome_circuit`.

## v0.9.14 - 2024-11-03
Expand Down
2 changes: 1 addition & 1 deletion test/test_row_echelon_with_pivots.jl
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
@test (transformation*mat) .%2 == naive_echelon_form
# Check the correctness of Gaussian elimination
@test naive_echelon_form == gf2_gausselim!(mat)
#Consistency check with Nemo.jl's echelon_form
# Consistency check with Nemo.jl's echelon_form
nemo_mat = matrix(GF(2), Matrix{Int}(mat))
@test echelon_form(nemo_mat) == matrix(GF(2), naive_echelon_form)
end
Expand Down

0 comments on commit 2ead890

Please sign in to comment.