From c166c56972bc647a2a7b724774338b06a22abe7e Mon Sep 17 00:00:00 2001 From: Benjamin Decker <39363928+BenjaminDecker@users.noreply.github.com> Date: Wed, 29 Jul 2026 23:42:08 +0200 Subject: [PATCH 1/4] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 2c0c445..66401ec 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ Given a Hamiltonian operator $H$ in [MPO](https://tensornetwork.org/mpo/) form, and an initial state $\psi_0$ in [MPS](https://tensornetwork.org/mps/) form, calculate $$ -\psi(t_k)=e^{-iHk\Delta t}\psi_0~,~~k=0,1,\dots,N +\psi(t_k)=e^{-iHk\Delta t}~\psi_0~,~~k\in \{0,1,\dots,N\} $$
From 1c80eef7deee136ae069e33ee67901422fc913e5 Mon Sep 17 00:00:00 2001 From: Benjamin Decker <39363928+BenjaminDecker@users.noreply.github.com> Date: Wed, 29 Jul 2026 23:55:31 +0200 Subject: [PATCH 2/4] Update github action versions --- .github/workflows/test.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index b28dcf5..9530e8d 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -28,13 +28,13 @@ jobs: julia-arch: x86 steps: - - uses: actions/checkout@v4 - - uses: julia-actions/setup-julia@v2 + - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 + - uses: julia-actions/setup-julia@fa02766e078afaaf09b14210362cee14137e6a32 # v3.0.2 with: version: ${{ matrix.julia-version }} arch: ${{ matrix.julia-arch }} - - uses: julia-actions/cache@v2 - - uses: julia-actions/julia-buildpkg@v1 - - uses: julia-actions/julia-runtest@v1 + - uses: julia-actions/cache@b7788abd52452d5bc033d69796e110d9906af4ab # v3.2.0 + - uses: julia-actions/julia-buildpkg@e3eb439fad4f9aba7da2667e7510e4a46ebc46e1 # v1.7.0 + - uses: julia-actions/julia-runtest@6e050c8013b833b1195105ff2fce9cd802f53271 # v1.12.0 # with: # annotate: true \ No newline at end of file From b5294119e8eedfffd1e7f911fae11254baf30958 Mon Sep 17 00:00:00 2001 From: Benjamin Decker <39363928+BenjaminDecker@users.noreply.github.com> Date: Wed, 29 Jul 2026 23:58:54 +0200 Subject: [PATCH 3/4] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 66401ec..c827e8a 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ Given a Hamiltonian operator $H$ in [MPO](https://tensornetwork.org/mpo/) form, and an initial state $\psi_0$ in [MPS](https://tensornetwork.org/mps/) form, calculate $$ -\psi(t_k)=e^{-iHk\Delta t}~\psi_0~,~~k\in \{0,1,\dots,N\} +\psi(t_k)=e^{-iHk\Delta t}~\psi _0~,~~k\in \lbrace 0,1,\dots,N\rbrace $$
From 5a21472bc8002d5f7e7be88086b5e57578eb2b2d Mon Sep 17 00:00:00 2001 From: Benjamin Decker <39363928+BenjaminDecker@users.noreply.github.com> Date: Thu, 30 Jul 2026 00:10:24 +0200 Subject: [PATCH 4/4] Only keep one job for 32-bit --- .github/workflows/test.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 9530e8d..00a3881 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -21,10 +21,11 @@ jobs: strategy: matrix: julia-version: ['lts', '1', 'pre'] - julia-arch: [x64, x86] + julia-arch: [default] os: [ubuntu-latest, windows-latest, macOS-latest] - exclude: - - os: macOS-latest + include: + - os: ubuntu-latest + julia-version: '1' julia-arch: x86 steps: