summaryrefslogtreecommitdiffstats
path: root/lib/CodeGen/PBQP/Solver.h
blob: a9c5f837c453e963a4d189b8c407fba30b85dc13 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
//===-- Solver.h ------- PBQP solver interface -----------------*- C++ --*-===//
//
//                     The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//


#ifndef LLVM_CODEGEN_PBQP_SOLVER_H
#define LLVM_CODEGEN_PBQP_SOLVER_H

#include "SimpleGraph.h"
#include "Solution.h"

namespace PBQP {

/// \brief Interface for solver classes.
class Solver {
public:

  virtual ~Solver() = 0;
  virtual Solution solve(const SimpleGraph &orig) const = 0;
};

Solver::~Solver() {}

}

#endif // LLVM_CODEGEN_PBQP_SOLVER_H
OpenPOWER on IntegriCloud