solver
RtHQPCost.hpp
Go to the documentation of this file.
1 
10 #pragma once
11 
12 #include <cassert>
13 #include <iostream>
14 
15 namespace rt_solver {
16 
17  class RtHQPCost
18  {
19  public:
20  RtHQPCost(){};
21  virtual ~RtHQPCost(){};
22 
23  virtual int maxRank() const = 0;
24  virtual void updateAfterSolutionFound() = 0;
25  virtual void addCostToHierarchy(int rank) const = 0;
26  virtual void addCostToHierarchyAfterReduction(int rank) const{};
27  };
28 }
Definition: Var.hpp:14
Definition: RtHQPCost.hpp:17