//===- Graph.h - PBQP Graph -------------------------------------*- 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 // //===----------------------------------------------------------------------===// // // PBQP Graph class. // //===----------------------------------------------------------------------===// #ifndef LLVM_CODEGEN_PBQP_GRAPH_H #define LLVM_CODEGEN_PBQP_GRAPH_H #include "llvm/ADT/STLExtras.h" #include <algorithm> #include <cassert> #include <iterator> #include <limits> #include <vector> namespace llvm { namespace PBQP { class GraphBase { … }; /// PBQP Graph class. /// Instances of this class describe PBQP problems. /// template <typename SolverT> class Graph : public GraphBase { … }; } // end namespace PBQP } // end namespace llvm #endif // LLVM_CODEGEN_PBQP_GRAPH_H