Antares Simulator
Power System Simulator
Antares::Expressions::Nodes::BinaryNode Class Reference
Inheritance diagram for Antares::Expressions::Nodes::BinaryNode:
Antares::Expressions::Nodes::ParentNode Antares::Expressions::Nodes::Node Antares::Expressions::IName Antares::Expressions::Nodes::ComparisonNode Antares::Expressions::Nodes::DivisionNode Antares::Expressions::Nodes::MultiplicationNode Antares::Expressions::Nodes::SubtractionNode Antares::Expressions::Nodes::TimeIndexNode Antares::Expressions::Nodes::TimeShiftNode Antares::Expressions::Nodes::EqualNode Antares::Expressions::Nodes::GreaterThanOrEqualNode Antares::Expressions::Nodes::LessThanOrEqualNode

Public Member Functions

 BinaryNode (Node *left, Node *right)
 Constructs a binary node with the specified left and right operands. More...
 
Nodeleft () const
 Retrieves a pointer to the left operand. More...
 
Noderight () const
 Retrieves a pointer to the right operand. More...
 
- Public Member Functions inherited from Antares::Expressions::Nodes::ParentNode
template<typename... NodePtr>
 ParentNode (NodePtr... operands)
 
 ParentNode (const std::vector< Node * > &operands)
 Constructs a parent node with the specified operands. More...
 
 ParentNode (std::vector< Node * > &&operands)
 Constructs a parent node with the specified operands. Vector is moved. More...
 
const std::vector< Node * > & getOperands () const
 Retrieves the operands of the parent node. More...
 
const std::vector< const Node * > getConstOperands () const
 
Nodeoperator[] (std::size_t idx) const
 
size_t size () const
 
- Public Member Functions inherited from Antares::Expressions::IName
virtual std::string name () const =0
 
bool operator== (const IName &other) const =default
 

Constructor & Destructor Documentation

◆ BinaryNode()

Antares::Expressions::Nodes::BinaryNode::BinaryNode ( Node left,
Node right 
)
explicit

Constructs a binary node with the specified left and right operands.

Parameters
leftThe left operand.
rightThe right operand.
Note
BinaryNode(n1, n2) and BinaryNode(n2, n1) are not equivalent.

Member Function Documentation

◆ left()

Node * Antares::Expressions::Nodes::BinaryNode::left ( ) const

Retrieves a pointer to the left operand.

Returns
A pointer to the left operand.

◆ right()

Node * Antares::Expressions::Nodes::BinaryNode::right ( ) const

Retrieves a pointer to the right operand.

Returns
A pointer to the right operand.

The documentation for this class was generated from the following files: