Skip to content

Commit

Permalink
Moved SubproblemStatus.hpp to uno/ingredients/subproblem_solvers/
Browse files Browse the repository at this point in the history
  • Loading branch information
cvanaret committed Dec 12, 2024
1 parent 4ea5f38 commit aba1d3d
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 4 deletions.
1 change: 0 additions & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,6 @@ file(GLOB UNO_SOURCE_FILES
uno/ingredients/inequality_handling_methods/inequality_constrained_methods/*.cpp
uno/ingredients/inequality_handling_methods/interior_point_methods/*.cpp
uno/ingredients/subproblem_solvers/*.cpp
uno/ingredients/subproblems/*.cpp
uno/model/*.cpp
uno/optimization/*.cpp
uno/options/*.cpp
Expand Down
2 changes: 1 addition & 1 deletion uno/ingredients/subproblem_solvers/BQPD/BQPDSolver.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

#include <array>
#include <vector>
#include "ingredients/subproblems/SubproblemStatus.hpp"
#include "ingredients/subproblem_solvers/SubproblemStatus.hpp"
#include "linear_algebra/Vector.hpp"
#include "ingredients/subproblem_solvers/QPSolver.hpp"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ namespace uno {
};
} // namespace

#endif // UNO_SUBPROBLEMSTATUS_H
#endif // UNO_SUBPROBLEMSTATUS_H
2 changes: 1 addition & 1 deletion uno/optimization/Direction.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
#define UNO_DIRECTION_H

#include <ostream>
#include "ingredients/subproblems/SubproblemStatus.hpp"
#include "ingredients/subproblem_solvers/SubproblemStatus.hpp"
#include "linear_algebra/Vector.hpp"
#include "optimization/Multipliers.hpp"
#include "tools/Infinity.hpp"
Expand Down

0 comments on commit aba1d3d

Please sign in to comment.