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

19 lines
453 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
{
inline std::string to_string(symbolic_expression_node_subtype const & f);
inline std::string to_string(lhs_rhs_element const & e);
inline std::ostream & operator<<(std::ostream & os, symbolic_expression_node const & s_node);
inline std::string to_string(atidlas::symbolic_expression const & s);
}
#endif