Skip to content

Commit

Permalink
Fixed missing includes
Browse files Browse the repository at this point in the history
  • Loading branch information
volkm committed Aug 23, 2024
1 parent cc970b3 commit 80eaa12
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 16 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
#include <algorithm>
#include <set>

#include "storm/adapters/RationalNumberAdapter.h"
#include "storm/exceptions/InvalidPropertyException.h"
#include "storm/exceptions/NotImplementedException.h"
#include "storm/exceptions/UnexpectedException.h"
#include "storm/modelchecker/prctl/helper/BaierUpperRewardBoundsComputer.h"
#include "storm/modelchecker/propositional/SparsePropositionalModelChecker.h"
#include "storm/modelchecker/results/ExplicitQualitativeCheckResult.h"
Expand All @@ -16,10 +20,6 @@
#include "storm/utility/macros.h"
#include "storm/utility/vector.h"

#include "storm/exceptions/InvalidPropertyException.h"
#include "storm/exceptions/NotImplementedException.h"
#include "storm/exceptions/UnexpectedException.h"

namespace storm {
namespace modelchecker {
namespace multiobjective {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
#include "storm/modelchecker/results/ExplicitQualitativeCheckResult.h"
#include "storm/adapters/RationalNumberAdapter.h" // Must come first

#include "ExplicitQualitativeCheckResult.h"

#include "storm/adapters/JsonAdapter.h"
#include "storm/exceptions/InvalidOperationException.h"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
#ifndef STORM_MODELCHECKER_EXPLICITQUALITATIVECHECKRESULT_H_
#define STORM_MODELCHECKER_EXPLICITQUALITATIVECHECKRESULT_H_

#pragma once
#include <boost/variant.hpp>
#include <functional>
#include <map>
Expand Down Expand Up @@ -76,5 +74,3 @@ class ExplicitQualitativeCheckResult : public QualitativeCheckResult {
};
} // namespace modelchecker
} // namespace storm

#endif /* STORM_MODELCHECKER_EXPLICITQUALITATIVECHECKRESULT_H_ */
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
#include "storm/modelchecker/results/ExplicitQuantitativeCheckResult.h"
#include "storm/adapters/RationalNumberAdapter.h" // Must come first

#include "ExplicitQuantitativeCheckResult.h"

#include "storm/adapters/JsonAdapter.h"
#include "storm/adapters/RationalFunctionAdapter.h"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
#ifndef STORM_MODELCHECKER_EXPLICITQUANTITATIVECHECKRESULT_H_
#define STORM_MODELCHECKER_EXPLICITQUANTITATIVECHECKRESULT_H_

#pragma once
#include <boost/optional.hpp>
#include <boost/variant.hpp>
#include <map>
Expand Down Expand Up @@ -93,5 +91,3 @@ class ExplicitQuantitativeCheckResult : public QuantitativeCheckResult<ValueType
};
} // namespace modelchecker
} // namespace storm

#endif /* STORM_MODELCHECKER_EXPLICITQUANTITATIVECHECKRESULT_H_ */

0 comments on commit 80eaa12

Please sign in to comment.