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.
 
 
 
 
 
 

26 lines
377 B

// Model taken from Daws04
// This version by Ernst Moritz Hahn (emh@cs.uni-sb.de)
dtmc
const double pK;
const double pL;
const int n;
module main
s: [-2..n+1];
[b] (s=-1) -> (s'=-2);
[a] (s=0) -> 1-pL : (s'=-1) + pL : (s'=1);
[a] (s>0) & (s<n+1) -> 1-pK : (s'=0) + pK : (s'=s+1);
endmodule
init
s = 0
endinit
rewards
[a] true : 1;
[b] true : n-1;
endrewards