From 39894e73ffb081988b29f620d15879b155735da7 Mon Sep 17 00:00:00 2001 From: 14xp Date: Tue, 4 Nov 2025 12:34:03 +1000 Subject: [PATCH] minor change of basis of rrxor transition matrices --- simplexity/generative_processes/transition_matrices.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/simplexity/generative_processes/transition_matrices.py b/simplexity/generative_processes/transition_matrices.py index ce4b7092..2d9bbb78 100644 --- a/simplexity/generative_processes/transition_matrices.py +++ b/simplexity/generative_processes/transition_matrices.py @@ -264,7 +264,7 @@ def rrxor(pR1: float, pR2: float) -> jax.Array: Steady-state distribution = [2, 1, 1, 1, 1] / 6 """ - s = {"S": 0, "0": 1, "1": 2, "T": 3, "F": 4} + s = {"S": 0, "0": 1, "1": 2, "F": 3, "T": 4} transition_matrices = jnp.zeros((2, 5, 5)) transition_matrices = transition_matrices.at[0, s["S"], s["0"]].set(pR1)