PandA-2024.02
|
#include <basic_block.hpp>
Public Member Functions | |
BBEdgeSorter (const BBGraphConstRef bb_graph) | |
Constructor. More... | |
bool | operator() (const EdgeDescriptor x, const EdgeDescriptor y) const |
Compare position of two edges. More... | |
Private Attributes | |
BBGraphConstRef | bb_graph |
The basic block graph to which edges belong Note: this should be const, but can not because of assignment operator. More... | |
BBVertexSorter | bb_sorter |
The vertex sorter. More... | |
Definition at line 450 of file basic_block.hpp.
|
explicit |
Constructor.
bb_graph | is the basic block graph to which edges belong |
Definition at line 234 of file basic_block.cpp.
bool BBEdgeSorter::operator() | ( | const EdgeDescriptor | x, |
const EdgeDescriptor | y | ||
) | const |
Compare position of two edges.
x | is the first step |
y | is the second step |
Definition at line 238 of file basic_block.cpp.
References bb_graph, bb_sorter, and lenet_tvm::target.
|
private |
The basic block graph to which edges belong Note: this should be const, but can not because of assignment operator.
Definition at line 455 of file basic_block.hpp.
Referenced by operator()().
|
private |