2015-04-29 15:50:57 -04:00
|
|
|
#ifndef _ISAAC_SCHEDULER_EXECUTE_H
|
|
|
|
#define _ISAAC_SCHEDULER_EXECUTE_H
|
2015-01-12 13:20:53 -05:00
|
|
|
|
2015-08-06 12:05:12 -07:00
|
|
|
#include "isaac/model/database.h"
|
2015-04-29 15:50:57 -04:00
|
|
|
#include "isaac/symbolic/expression.h"
|
2015-01-12 13:20:53 -05:00
|
|
|
|
2015-04-29 15:50:57 -04:00
|
|
|
namespace isaac
|
2015-01-12 13:20:53 -05:00
|
|
|
{
|
|
|
|
|
2015-01-31 22:01:48 -05:00
|
|
|
/** @brief Executes a array_expression on the given queue for the given models map*/
|
2015-08-06 12:05:12 -07:00
|
|
|
void execute(controller<array_expression> const & , database::map_type &);
|
2015-01-12 13:20:53 -05:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|