From 2fd712837b39a81de9b2f4ca8b27a2e57795f797 Mon Sep 17 00:00:00 2001 From: Victor Vanthilt <73738005+VictorVanthilt@users.noreply.github.com> Date: Mon, 10 Feb 2025 09:10:59 +0100 Subject: [PATCH] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 9d7d7ba..63ed654 100644 --- a/README.md +++ b/README.md @@ -22,13 +22,13 @@ The project is not registered (yet) and is under active development. The interfa For example: ```julia -T = classical_ising_symmetric(Ising_βc) # partition function of classical Ising model at the critial point +T = classical_ising_symmetric(Ising_βc) # partition function of classical Ising model at the critical point scheme = BTRG(T) # Bond-weighted TRG (excellent choice) data = run!(scheme, truncdim(16), maxiter(25)) # max bond-dimension of 16, for 25 iterations ``` `data` now contains 26 norms of the tensor, 1 for every time the tensor was normalized. (By default there is a normalization step before the first coarse-graining step wich can be turned off by changing the kwarg `run!(...; finalize_beginning=false)`) -Using these norms you could, for example, calculate the free energy of the critial classical Ising model: +Using these norms you could, for example, calculate the free energy of the critical classical Ising model: ```Julia lnz = 0 for (i, d) in enumerate(data)