Browse Source

Fix transform_iterator thingamajig

Former-commit-id: 38313193b6
tempestpy_adaptions
hbruintjes 9 years ago
parent
commit
14208d8f58
  1. 4
      src/storage/jani/VariableSet.cpp
  2. 4
      src/storage/jani/VariableSet.h
  3. 1
      src/storage/prism/HidingComposition.h
  4. 2
      src/storage/prism/RenamingComposition.cpp
  5. 1
      src/storage/prism/RenamingComposition.h

4
src/storage/jani/VariableSet.cpp

@ -10,7 +10,7 @@ namespace storm {
namespace detail {
template<typename VariableType>
VariableType& Dereferencer<VariableType>::operator()(std::shared_ptr<VariableType> const& d) {
VariableType& Dereferencer<VariableType>::operator()(std::shared_ptr<VariableType> const& d) const {
return *d;
}
@ -150,4 +150,4 @@ namespace storm {
}
}
}
}

4
src/storage/jani/VariableSet.h

@ -19,7 +19,7 @@ namespace storm {
template<typename VariableType>
class Dereferencer {
public:
VariableType& operator()(std::shared_ptr<VariableType> const& d);
VariableType& operator()(std::shared_ptr<VariableType> const& d) const;
};
template<typename VariableType>
@ -192,4 +192,4 @@ namespace storm {
};
}
}
}

1
src/storage/prism/HidingComposition.h

@ -3,6 +3,7 @@
#include <set>
#include <string>
#include <memory>
#include "src/storage/prism/Composition.h"

2
src/storage/prism/RenamingComposition.cpp

@ -34,4 +34,4 @@ namespace storm {
}
}
}
}

1
src/storage/prism/RenamingComposition.h

@ -1,6 +1,7 @@
#ifndef STORM_STORAGE_PRISM_RENAMINGCOMPOSITION_H_
#define STORM_STORAGE_PRISM_RENAMINGCOMPOSITION_H_
#include <memory>
#include <string>
#include <map>
#include <boost/optional.hpp>

Loading…
Cancel
Save