From 206be3cefcd0b2ca54bce2ee30883953ca0aae9a Mon Sep 17 00:00:00 2001 From: Marek Petrik Date: Tue, 2 Apr 2024 12:50:50 -0400 Subject: [PATCH] doc fix --- docs/src/recipes.md | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/docs/src/recipes.md b/docs/src/recipes.md index 15eb48c..404cc4e 100644 --- a/docs/src/recipes.md +++ b/docs/src/recipes.md @@ -45,20 +45,16 @@ CSV.write(fileout, output) using MDPs ε = 0.01 -# transition probabilities P1 = [1 0 0; 0 1 0; 0 0 1] P2 = [0 1 0; 1-ε 0 ε; 0 0 1] Ps = [P1, P2] - -# rewards R = [10 -4 0; -1 -3 0; 0 0 0] # use the same reward for both actions Rs = [R, R] M = make_int_mdp(Ps, Rs) - state_count(M) -# output +# output 3 ```