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.
23 lines
429 B
23 lines
429 B
//#ifndef STORM_STORAGE_PARAMETERS_H_
|
|
//#define STORM_STORAGE_PARAMETERS_H_
|
|
|
|
#pragma once
|
|
|
|
#include "storm-config.h"
|
|
#ifdef STORM_HAVE_CARL
|
|
|
|
#include "../adapters/extendedCarl.h"
|
|
|
|
namespace storm
|
|
{
|
|
typedef carl::MultivariatePolynomial<cln::cl_RA> Polynomial;
|
|
typedef carl::Variable Variable;
|
|
|
|
|
|
typedef carl::CompareRelation CompareRelation;
|
|
typedef carl::RationalFunction<Polynomial> RationalFunction;
|
|
}
|
|
#endif
|
|
|
|
//#endif
|
|
|