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.
29 lines
622 B
29 lines
622 B
/*
|
|
* Csl.h
|
|
*
|
|
* Created on: 19.04.2013
|
|
* Author: Thomas Heinemann
|
|
*/
|
|
|
|
#ifndef STORM_FORMULA_CSL_H_
|
|
#define STORM_FORMULA_CSL_H_
|
|
|
|
#include "src/modelchecker/csl/ForwardDeclarations.h"
|
|
|
|
#include "csl/And.h"
|
|
#include "csl/Ap.h"
|
|
#include "csl/Next.h"
|
|
#include "csl/Not.h"
|
|
#include "csl/Or.h"
|
|
#include "csl/ProbabilisticBoundOperator.h"
|
|
#include "csl/SteadyStateBoundOperator.h"
|
|
|
|
#include "csl/Until.h"
|
|
#include "csl/Eventually.h"
|
|
#include "csl/Globally.h"
|
|
#include "csl/TimeBoundedEventually.h"
|
|
#include "csl/TimeBoundedUntil.h"
|
|
|
|
#include "modelchecker/csl/AbstractModelChecker.h"
|
|
|
|
#endif /* STORM_FORMULA_CSL_H_ */
|