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
688 B
25 lines
688 B
#pragma once
|
|
|
|
#include "storm/storage/dd/DdType.h"
|
|
|
|
namespace storm {
|
|
namespace abstraction {
|
|
|
|
template<storm::dd::DdType Type>
|
|
class SymbolicQualitativeResultMinMax;
|
|
|
|
class QualitativeResultMinMax {
|
|
public:
|
|
virtual ~QualitativeResultMinMax() = default;
|
|
|
|
virtual bool isSymbolic() const;
|
|
|
|
template<storm::dd::DdType Type>
|
|
SymbolicQualitativeResultMinMax<Type> const& asSymbolicQualitativeResultMinMax() const;
|
|
|
|
template<storm::dd::DdType Type>
|
|
SymbolicQualitativeResultMinMax<Type>& asSymbolicQualitativeResultMinMax();
|
|
};
|
|
|
|
}
|
|
}
|