The source code and dockerfile for the GSW2024 AI Lab.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
 
 
 
 
 
 

33 lines
703 B

dtmc
const double p;
module test
// local state
s : [0..4] init 0;
[] s=0 -> p : (s'=1) + (1-p) : (s'=2);
[] s=1 -> p : (s'=3) + (1-p) : (s'=4);
[] s=2 -> p : (s'=4) + (1-p) : (s'=3);
[] s=3 -> 1 : (s'=3);
[] s=4 -> 1 : (s'=4);
endmodule
// Dot output:
//digraph model {
// 0 [ label = "0: {init}" ];
// 1 [ label = "1: {}" ];
// 2 [ label = "2: {}" ];
// 3 [ label = "3: {}" ];
// 4 [ label = "4: {}" ];
// 0 -> 1 [ label= "(p)/(1)" ];
// 0 -> 2 [ label= "(-1 * (p+(-1)))/(1)" ];
// 1 -> 3 [ label= "(p)/(1)" ];
// 1 -> 4 [ label= "(-1 * (p+(-1)))/(1)" ];
// 2 -> 3 [ label= "(-1 * (p+(-1)))/(1)" ];
// 2 -> 4 [ label= "(p)/(1)" ];
// 3 -> 3 [ label= "1" ];
// 4 -> 4 [ label= "1" ];
//}