Skip to content

Commit

Permalink
Fixed include error
Browse files Browse the repository at this point in the history
  • Loading branch information
dellaert committed Oct 2, 2020
1 parent 52518c9 commit a8ea6f2
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 8 deletions.
12 changes: 7 additions & 5 deletions gtsam_unstable/linear/tests/testLPSolver.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@
* @author Duy-Nguyen Ta
*/

#include <CppUnitLite/TestHarness.h>
#include <boost/foreach.hpp>
#include <boost/range/adaptor/map.hpp>
#include <gtsam_unstable/linear/LPInitSolver.h>
#include <gtsam_unstable/linear/LPSolver.h>

#include <gtsam/base/Testable.h>
#include <gtsam/inference/FactorGraph-inst.h>
#include <gtsam/inference/Symbol.h>
Expand All @@ -28,8 +28,10 @@
#include <gtsam_unstable/linear/InequalityFactorGraph.h>
#include <gtsam_unstable/linear/InfeasibleInitialValues.h>

#include <gtsam_unstable/linear/LPInitSolver.h>
#include <gtsam_unstable/linear/LPSolver.h>
#include <CppUnitLite/TestHarness.h>

#include <boost/foreach.hpp>
#include <boost/range/adaptor/map.hpp>

using namespace std;
using namespace gtsam;
Expand Down
8 changes: 5 additions & 3 deletions gtsam_unstable/linear/tests/testQPSolver.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,14 @@
* @author Ivan Dario Jimenez
*/

#include <CppUnitLite/TestHarness.h>
#include <gtsam/base/Testable.h>
#include <gtsam/inference/Symbol.h>
#include <gtsam_unstable/linear/QPSParser.h>
#include <gtsam_unstable/linear/QPSolver.h>

#include <gtsam/base/Testable.h>
#include <gtsam/inference/Symbol.h>

#include <CppUnitLite/TestHarness.h>

using namespace std;
using namespace gtsam;
using namespace gtsam::symbol_shorthand;
Expand Down

0 comments on commit a8ea6f2

Please sign in to comment.