Static Value-Flow Analysis
Public Member Functions | Public Attributes | List of all members
SVF::POCRHybridSolver::TreeNode Struct Reference

#include <CFLSolver.h>

Public Member Functions

 TreeNode (NodeID nId)
 
 ~TreeNode ()
 
bool operator== (const TreeNode &rhs) const
 
bool operator< (const TreeNode &rhs) const
 

Public Attributes

NodeID id
 
std::unordered_set< TreeNode * > children
 

Detailed Description

Definition at line 299 of file CFLSolver.h.

Constructor & Destructor Documentation

◆ TreeNode()

SVF::POCRHybridSolver::TreeNode::TreeNode ( NodeID  nId)
inline

Definition at line 304 of file CFLSolver.h.

304  : id(nId)
305  {}

◆ ~TreeNode()

SVF::POCRHybridSolver::TreeNode::~TreeNode ( )
inline

Definition at line 307 of file CFLSolver.h.

308  {
309  }

Member Function Documentation

◆ operator<()

bool SVF::POCRHybridSolver::TreeNode::operator< ( const TreeNode rhs) const
inline

Definition at line 316 of file CFLSolver.h.

317  {
318  return id < rhs.id;
319  }

◆ operator==()

bool SVF::POCRHybridSolver::TreeNode::operator== ( const TreeNode rhs) const
inline

Definition at line 311 of file CFLSolver.h.

312  {
313  return id == rhs.id;
314  }

Member Data Documentation

◆ children

std::unordered_set<TreeNode*> SVF::POCRHybridSolver::TreeNode::children

Definition at line 302 of file CFLSolver.h.

◆ id

NodeID SVF::POCRHybridSolver::TreeNode::id

Definition at line 301 of file CFLSolver.h.


The documentation for this struct was generated from the following file: