llvm/llvm/lib/Support/SuffixTreeNode.cpp

//===- llvm/ADT/SuffixTreeNode.cpp - Nodes for SuffixTrees --------*- C++
//-*-===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
//
// This file defines nodes for use within a SuffixTree.
//
//===----------------------------------------------------------------------===//

#include "llvm/Support/SuffixTreeNode.h"
#include "llvm/Support/Casting.h"

usingnamespacellvm;

unsigned SuffixTreeNode::getStartIdx() const {}
void SuffixTreeNode::incrementStartIdx(unsigned Inc) {}
void SuffixTreeNode::setConcatLen(unsigned Len) {}
unsigned SuffixTreeNode::getConcatLen() const {}

bool SuffixTreeInternalNode::isRoot() const {}
unsigned SuffixTreeInternalNode::getEndIdx() const {}
void SuffixTreeInternalNode::setLink(SuffixTreeInternalNode *L) {}
SuffixTreeInternalNode *SuffixTreeInternalNode::getLink() const {}

unsigned SuffixTreeLeafNode::getEndIdx() const {}

unsigned SuffixTreeLeafNode::getSuffixIdx() const {}
void SuffixTreeLeafNode::setSuffixIdx(unsigned Idx) {}

unsigned SuffixTreeNode::getLeftLeafIdx() const {}
unsigned SuffixTreeNode::getRightLeafIdx() const {}
void SuffixTreeNode::setLeftLeafIdx(unsigned Idx) {}
void SuffixTreeNode::setRightLeafIdx(unsigned Idx) {}