From 69b9e85a5d115730343ce1885931bbfa237fb333 Mon Sep 17 00:00:00 2001 From: Carlos de Gois Date: Tue, 23 Jul 2024 17:39:51 +0200 Subject: [PATCH] add new functions to docs and add necessary packages to src/runtests.jl --- docs/src/api.md | 4 ++++ test/runtests.jl | 2 ++ 2 files changed, 6 insertions(+) diff --git a/docs/src/api.md b/docs/src/api.md index 918af09..5d3b787 100644 --- a/docs/src/api.md +++ b/docs/src/api.md @@ -16,6 +16,9 @@ partial_transpose permute_systems! permute_systems cleanup! +symmetric_projection +orthonormal_range +permutation_matrix ``` ## Entropy @@ -33,6 +36,7 @@ conditional_entropy ```@docs schmidt_decomposition entanglement_entropy +entanglement_dps ``` ## Measurements diff --git a/test/runtests.jl b/test/runtests.jl index 26cb6be..f5dd012 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -1,10 +1,12 @@ using Ket using LinearAlgebra +using SparseArrays using CyclotomicNumbers using DoubleFloats using Quadmath using Test import Random +import SCS include("basic.jl") include("entropy.jl")