slang-netlist  0.9.0
Loading...
Searching...
No Matches
PathFinder.hpp
Go to the documentation of this file.
1#pragma once
2
5
6namespace slang::netlist {
7
11public:
12 PathFinder() = default;
13
16 auto find(NetlistNode &startNode, NetlistNode &endNode) -> NetlistPath;
17
22 auto findComb(NetlistNode &startNode, NetlistNode &endNode) -> NetlistPath;
23};
24
25} // namespace slang::netlist
Definition NetlistNode.hpp:33
A class representing a path traversing nodes in the netlist.
Definition NetlistPath.hpp:11
auto findComb(NetlistNode &startNode, NetlistNode &endNode) -> NetlistPath
auto find(NetlistNode &startNode, NetlistNode &endNode) -> NetlistPath
Definition Utilities.hpp:16