From 2ead8902de2063c63e1c857bf6edfe86e724b4e6 Mon Sep 17 00:00:00 2001 From: Fe-r-oz Date: Sun, 22 Dec 2024 00:43:51 +0500 Subject: [PATCH] Change to changelog 9.16.0 - dev --- CHANGELOG.md | 5 ++++- test/test_row_echelon_with_pivots.jl | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 18d23050a..6d362c6a0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/test/test_row_echelon_with_pivots.jl b/test/test_row_echelon_with_pivots.jl index eb7af475c..98d72429e 100644 --- a/test/test_row_echelon_with_pivots.jl +++ b/test/test_row_echelon_with_pivots.jl @@ -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