Skip to content

Commit

Permalink
fixed belief FSC size computation
Browse files Browse the repository at this point in the history
  • Loading branch information
TheGreatfpmK committed Apr 24, 2024
1 parent 500be2c commit c003cc8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion paynt/quotient/storm_pomdp_control.py
Original file line number Diff line number Diff line change
Expand Up @@ -1022,6 +1022,6 @@ def get_belief_controller_size(self, storm_result, paynt_fsc_size=None):
observation_actions[observation].append(action)
randomized_schedulers_size += sum(list([len(support) for support in observation_actions.values()])) * 3

result_size = non_frontier_states + belief_mc.nr_transitions + fsc_size + randomized_schedulers_size
result_size = non_frontier_states + 2*belief_mc.nr_transitions + fsc_size + randomized_schedulers_size

return result_size

0 comments on commit c003cc8

Please sign in to comment.