2015-01-12 13:20:53 -05:00
|
|
|
#ifndef ATIDLAS_SCHEDULER_IO_H
|
|
|
|
#define ATIDLAS_SCHEDULER_IO_H
|
|
|
|
|
|
|
|
#include <iostream>
|
|
|
|
#include "atidlas/symbolic/expression.h"
|
|
|
|
|
|
|
|
namespace atidlas
|
|
|
|
{
|
|
|
|
|
2015-01-17 10:48:02 -05:00
|
|
|
std::string to_string(symbolic_expression_node_subtype const & f);
|
|
|
|
std::string to_string(lhs_rhs_element const & e);
|
|
|
|
std::ostream & operator<<(std::ostream & os, symbolic_expression_node const & s_node);
|
|
|
|
std::string to_string(atidlas::symbolic_expression const & s);
|
2015-01-12 13:20:53 -05:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|