From 66628f0a560333c257e3919b8f9cf970114ba7b9 Mon Sep 17 00:00:00 2001 From: Luis-Varona Date: Tue, 11 Nov 2025 00:59:24 -0400 Subject: [PATCH] Fix superscript 'i' rendering in docs --- src/utils.jl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/utils.jl b/src/utils.jl index 432c7cd..25ddc27 100644 --- a/src/utils.jl +++ b/src/utils.jl @@ -13,7 +13,7 @@ Supposing that `A` is the adjacency matrix of a graph representing a quantum spi nonzero diagonal would indicate couplings between qubits and themselves, which is physically nonsensical. On the other hand, symmetry (or rather Hermicity in the general case, but we only consider here real-valued adjacency matrices) is required for the walk Hamiltonian -``eᶦᵗᴬ`` to be unitary. +``eⁱᵗᴬ`` to be unitary. # Arguments - `A::AbstractMatrix{<:Real}`: The matrix to check. @@ -39,7 +39,7 @@ Check whether a graph `g` is simple (i.e., undirected with no self-loops). Supposing that `g` represents a quantum spin network, self-loops would indicate couplings between qubits and themselves, which is physically nonsensical. On the other hand, -undirectedness is required for the walk Hamiltonian ``eᶦᵗᴬ`` to be unitary, where `A` is the +undirectedness is required for the walk Hamiltonian ``eⁱᵗᴬ`` to be unitary, where `A` is the adjacency matrix of `g`. # Arguments