From bf79a0c02db8c798a78e9712b25701e1b91f8b66 Mon Sep 17 00:00:00 2001 From: natsuki1585 Date: Sat, 28 Jun 2025 05:01:22 +0900 Subject: [PATCH] Create store.model --- store.model | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 store.model diff --git a/store.model b/store.model new file mode 100644 index 00000000..ed421ffb --- /dev/null +++ b/store.model @@ -0,0 +1,18 @@ + +name = StoreSalesModel +alphabet = M,N,F +states = H,L +initial = H:0.5 L:0.5 + + +name = H +emissions = M:0.6 N:0.3 F:0.1 +transitions = H:0.7 L:0.3 + + + +name = L +emissions = M:0.1 N:0.3 F:0.6 +transitions = H:0.4 L:0.6 + +