Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
TheGreatfpmK committed May 30, 2024
2 parents ee74ffa + 7485b71 commit 1af567e
Show file tree
Hide file tree
Showing 8 changed files with 34 additions and 24 deletions.
31 changes: 16 additions & 15 deletions payntbind/src/synthesis/counterexamples/Counterexample.cpp
Original file line number Diff line number Diff line change
@@ -1,25 +1,26 @@
#include "Counterexample.h"

#include "storm/storage/BitVector.h"
#include "storm/exceptions/UnexpectedException.h"
#include <storm/storage/BitVector.h>
#include <storm/exceptions/InvalidArgumentException.h>
#include <storm/exceptions/NotImplementedException.h>

#include "storm/storage/sparse/JaniChoiceOrigins.h"
#include "storm/storage/sparse/StateValuations.h"
#include <storm/storage/sparse/JaniChoiceOrigins.h>
#include <storm/storage/sparse/StateValuations.h>

#include "storm/utility/builder.h"
#include "storm/storage/SparseMatrix.h"
#include "storm/storage/sparse/ModelComponents.h"
#include "storm/models/sparse/StateLabeling.h"
#include <storm/utility/builder.h>
#include <storm/storage/SparseMatrix.h>
#include <storm/storage/sparse/ModelComponents.h>
#include <storm/models/sparse/StateLabeling.h>

#include "storm/solver/OptimizationDirection.h"
#include <storm/solver/OptimizationDirection.h>

#include "storm/api/verification.h"
#include "storm/logic/Bound.h"
#include "storm/modelchecker/CheckTask.h"
#include "storm/modelchecker/hints/ExplicitModelCheckerHint.h"
#include <storm/api/verification.h>
#include <storm/logic/Bound.h>
#include <storm/modelchecker/CheckTask.h>
#include <storm/modelchecker/hints/ExplicitModelCheckerHint.h>

#include "storm/environment/Environment.h"
#include "storm/environment/solver/SolverEnvironment.h"
#include <storm/environment/Environment.h>
#include <storm/environment/solver/SolverEnvironment.h>

#include <stack>

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
#include "CounterexampleMdp.h"

#include <storm/storage/BitVector.h>
#include <storm/exceptions/UnexpectedException.h>
#include <storm/exceptions/InvalidArgumentException.h>
#include <storm/exceptions/NotImplementedException.h>

#include <storm/storage/sparse/JaniChoiceOrigins.h>
#include <storm/storage/sparse/StateValuations.h>
#include <storm/utility/builder.h>
Expand Down
8 changes: 5 additions & 3 deletions payntbind/src/synthesis/decpomdp/DecPomdp.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,10 @@
#include "madp/src/base/POMDPDiscrete.h"
#include "madp/src/base/DecPOMDPDiscrete.h"

#include "storm/models/sparse/Mdp.h"
#include "storm/models/sparse/Pomdp.h"
#include "storm/models/sparse/StandardRewardModel.h"
#include <storm/adapters/RationalNumberAdapter.h>
#include <storm/models/sparse/Mdp.h>
#include <storm/models/sparse/Pomdp.h>
#include <storm/models/sparse/StandardRewardModel.h>

#include <string>

Expand All @@ -19,6 +20,7 @@ namespace synthesis {
class DecPomdp {

public:

DecPomdp(DecPOMDPDiscrete *model);

/** Number of agents. */
Expand Down
5 changes: 3 additions & 2 deletions payntbind/src/synthesis/pomdp/PomdpManager.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
#pragma once

#include "storm/models/sparse/Mdp.h"
#include "storm/models/sparse/Pomdp.h"
#include <storm/adapters/RationalNumberAdapter.h>
#include <storm/models/sparse/Mdp.h>
#include <storm/models/sparse/Pomdp.h>

namespace synthesis {

Expand Down
6 changes: 3 additions & 3 deletions payntbind/src/synthesis/pomdp/PomdpManagerAposteriori.h
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
#pragma once

#include "storm/models/sparse/Mdp.h"
#include "storm/models/sparse/Pomdp.h"
#include <storm/adapters/RationalNumberAdapter.h>
#include <storm/models/sparse/Mdp.h>
#include <storm/models/sparse/Pomdp.h>

#include <stack>


namespace synthesis {

template<typename ValueType>
Expand Down
1 change: 1 addition & 0 deletions payntbind/src/synthesis/pomdp_family/ProductPomdpFsc.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

#include "src/synthesis/translation/ItemKeyTranslator.h"

#include <storm/adapters/RationalNumberAdapter.h>
#include <storm/models/sparse/Model.h>
#include <storm/models/sparse/Mdp.h>
#include <storm/storage/BitVector.h>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

#include "src/synthesis/translation/ItemKeyTranslator.h"

#include <storm/adapters/RationalNumberAdapter.h>
#include <storm/models/sparse/Model.h>
#include <storm/models/sparse/Mdp.h>
#include <storm/storage/BitVector.h>
Expand Down
2 changes: 2 additions & 0 deletions payntbind/src/synthesis/translation/SubPomdpBuilder.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

#include "src/synthesis/translation/ItemTranslator.h"

#include <storm/adapters/RationalNumberAdapter.h>
#include <storm/models/sparse/Model.h>
#include <storm/models/sparse/Pomdp.h>

namespace synthesis {
Expand Down

0 comments on commit 1af567e

Please sign in to comment.