You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
943 B
29 lines
943 B
#pragma once
|
|
|
|
|
|
#include <boost/any.hpp>
|
|
|
|
#include "storm/storage/jani/traverser/JaniTraverser.h"
|
|
|
|
namespace storm {
|
|
namespace jani {
|
|
class AssignmentsFinder : public JaniTraverser {
|
|
public:
|
|
|
|
struct ResultType {
|
|
bool hasLocationAssignment, hasEdgeAssignment, hasEdgeDestinationAssignment;
|
|
};
|
|
|
|
AssignmentsFinder() = default;
|
|
|
|
ResultType find(Model const& model, Variable const& variable);
|
|
|
|
virtual ~AssignmentsFinder() = default;
|
|
|
|
virtual void traverse(Location const& location, boost::any const& data) const override;
|
|
virtual void traverse(TemplateEdge const& templateEdge, boost::any const& data) const override;
|
|
virtual void traverse(TemplateEdgeDestination const& templateEdgeDestination, boost::any const& data) const override;
|
|
};
|
|
}
|
|
}
|
|
|