Storm 1.11.1.1
A Modern Probabilistic Model Checker
Loading...
Searching...
No Matches
MonotonicityKind.h
Go to the documentation of this file.
1#pragma once
2
3#include <iostream>
4
5namespace storm::analysis {
9enum class MonotonicityKind {
10 Incr,
11 Decr,
12 Constant,
13 Not,
14 Unknown
15};
16
17std::ostream& operator<<(std::ostream& out, MonotonicityKind kind);
18
20
21} // namespace storm::analysis
MonotonicityKind
The results of monotonicity checking for a single Parameter Region.
@ Incr
the result is monotonically increasing
@ Unknown
the monotonicity result is unknown
@ Decr
the result is monotonically decreasing
@ Not
the result is not monotonic
@ Constant
the result is constant
bool isMonotone(MonotonicityKind kind)