2015-04-29 15:50:57 -04:00
|
|
|
#ifndef ISAAC_SCHEDULER_IO_H
|
|
|
|
#define ISAAC_SCHEDULER_IO_H
|
2015-01-12 13:20:53 -05:00
|
|
|
|
|
|
|
#include <iostream>
|
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
|
|
|
std::string to_string(array_expression_node_subtype const & f);
|
2015-01-17 10:48:02 -05:00
|
|
|
std::string to_string(lhs_rhs_element const & e);
|
2015-01-31 22:01:48 -05:00
|
|
|
std::ostream & operator<<(std::ostream & os, array_expression::node const & s_node);
|
2015-04-29 15:50:57 -04:00
|
|
|
std::string to_string(isaac::array_expression const & s);
|
2015-01-12 13:20:53 -05:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|