Defines the binary expression class. More...
#include <ostream>
#include <sstream>
#include <memory>
#include "viennamath/forwards.h"
#include "viennamath/runtime/constant.hpp"
#include "viennamath/runtime/binary_operators.hpp"
#include "viennamath/compiletime/ct_binary_expr.hpp"
#include "viennamath/runtime/unary_expr.hpp"
#include "viennamath/runtime/op_interface.hpp"
#include "viennamath/runtime/expression_interface.hpp"
#include "viennamath/runtime/unary_operators.hpp"
Go to the source code of this file.
Data Structures | |
class | rt_binary_expr< InterfaceType > |
Runtime representation of a binary expression F(x,y), where F is a function of two argument (e.g. +) and x,y are expressions. More... | |
Namespaces | |
namespace | viennamath |
The main ViennaMath namespace. All types and functions for the user reside here. | |
Functions | |
template<typename InterfaceType > | |
std::ostream & | operator<< (std::ostream &stream, rt_binary_expr< InterfaceType > const &e) |
Overload of the stream operator in order to allow for a convenient conversion of a unary expression to a string. |
Defines the binary expression class.