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.
15 lines
398 B
15 lines
398 B
#ifndef STORM_STORAGE_DD_METAVARIABLEPOSITION_H_
|
|
#define STORM_STORAGE_DD_METAVARIABLEPOSITION_H_
|
|
|
|
#include "storm/storage/dd/DdType.h"
|
|
|
|
namespace storm {
|
|
namespace dd {
|
|
|
|
// An enum that expresses the relation of two meta variables relative to each other.
|
|
enum class MetaVariablePosition { Above, Below };
|
|
|
|
}
|
|
}
|
|
|
|
#endif /* STORM_STORAGE_DD_METAVARIABLEPOSITION_H_ */
|