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.
25 lines
594 B
25 lines
594 B
#pragma once
|
|
|
|
#include "storm/abstraction/StateSet.h"
|
|
|
|
#include "storm/storage/dd/DdType.h"
|
|
#include "storm/storage/dd/Bdd.h"
|
|
|
|
namespace storm {
|
|
namespace abstraction {
|
|
|
|
template<storm::dd::DdType Type>
|
|
class SymbolicStateSet : public StateSet {
|
|
public:
|
|
SymbolicStateSet(storm::dd::Bdd<Type> const& states);
|
|
|
|
virtual bool isSymbolic() const override;
|
|
|
|
storm::dd::Bdd<Type> const& getStates() const;
|
|
|
|
private:
|
|
storm::dd::Bdd<Type> states;
|
|
};
|
|
|
|
}
|
|
}
|