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
475 B
19 lines
475 B
#include "storm/logic/TimeBound.h"
|
|
|
|
namespace storm {
|
|
namespace logic {
|
|
|
|
TimeBound::TimeBound(bool strict, storm::expressions::Expression const& bound) : strict(strict), bound(bound) {
|
|
// Intentionally left empty.
|
|
}
|
|
|
|
storm::expressions::Expression const& TimeBound::getBound() const {
|
|
return bound;
|
|
}
|
|
|
|
bool TimeBound::isStrict() const {
|
|
return strict;
|
|
}
|
|
|
|
}
|
|
}
|