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.
19 lines
276 B
19 lines
276 B
|
|
#ifndef BOUNDINFO_H
|
|
#define BOUNDINFO_H
|
|
|
|
#include "ComparisonType.h"
|
|
|
|
|
|
namespace storm {
|
|
namespace logic {
|
|
template<typename BT>
|
|
struct BoundInfo {
|
|
BT bound;
|
|
ComparisonType boundType;
|
|
};
|
|
}
|
|
}
|
|
|
|
#endif /* BOUNDINFO_H */
|
|
|