Files
triton/include/atidlas/symbolic/io.h

19 lines
425 B
C
Raw Normal View History

#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);
}
#endif