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
514 B
25 lines
514 B
/*
|
|
* IR.h
|
|
*
|
|
* Created on: 06.01.2013
|
|
* Author: Christian Dehnert
|
|
*/
|
|
|
|
#ifndef STORM_IR_IR_H_
|
|
#define STORM_IR_IR_H_
|
|
|
|
// Bundle all headers to make it easy to include them.
|
|
#include "expressions/Expressions.h"
|
|
#include "Assignment.h"
|
|
#include "Update.h"
|
|
#include "Command.h"
|
|
#include "Variable.h"
|
|
#include "BooleanVariable.h"
|
|
#include "IntegerVariable.h"
|
|
#include "Module.h"
|
|
#include "StateReward.h"
|
|
#include "TransitionReward.h"
|
|
#include "RewardModel.h"
|
|
#include "Program.h"
|
|
|
|
#endif /* STORM_IR_IR_H_ */
|