Skip to content

Commit

Permalink
Fix temporary initial state
Browse files Browse the repository at this point in the history
  • Loading branch information
Zinoex committed Nov 14, 2023
1 parent aae38d7 commit 2470174
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Data/imdp.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
function read_imdp_jl_file(path)
mdp_or_mc, terminal_states = Dataset(path) do dataset
n = Int32(dataset.attrib["num_states"] + 1)
initial_state = 0# dataset.attrib["initial_state"]
initial_state = Int32(1) # dataset.attrib["initial_state"]
model = dataset.attrib["model"]

@assert model ["imdp", "imc"]
Expand Down

0 comments on commit 2470174

Please sign in to comment.