Searched defs:SimpleNode (Results 1 – 3 of 3) sorted by relevance
36 struct SimpleNode { struct37 int id;38 const char* value;39 const std::vector<int>* neighbors;40 bool is_terminal;42 int getId() { return id; } in getId()43 const char* getValue() { return value; } in getValue()44 bool isTerminal() { return is_terminal; } in isTerminal()45 std::vector<int>::const_iterator getEdgesBegin() { return neighbors->begin(); } in getEdgesBegin()46 std::vector<int>::const_iterator getEdgesEnd() { return neighbors->end(); } in getEdgesEnd()
27 public abstract class SimpleNode implements Node { class33 public SimpleNode(int i) { in SimpleNode() method in SimpleNode37 public SimpleNode(MiniParser p, int i) { in SimpleNode() method in SimpleNode
83 class SimpleNode { class148 SimpleNode::SimpleNode(const Node* node, const int id) : node_(node), id_(id) { in SimpleNode() function in tensorflow::tensorrt::segment::__anon982826700111::SimpleNode