| 
									
										
										
										
											2016-06-17 06:22:02 +08:00
										 |  |  | /* ----------------------------------------------------------------------------
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |  * GTSAM Copyright 2010, Georgia Tech Research Corporation, | 
					
						
							|  |  |  |  * Atlanta, Georgia 30332-0415 | 
					
						
							|  |  |  |  * All Rights Reserved | 
					
						
							|  |  |  |  * Authors: Frank Dellaert, et al. (see THANKS for the full author list) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |  * See LICENSE for the license information | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |  * -------------------------------------------------------------------------- */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-07 00:07:02 +08:00
										 |  |  | /**
 | 
					
						
							|  |  |  |  * @file     LPInitSolver.h | 
					
						
							|  |  |  |  * @brief    This LPInitSolver implements the strategy in Matlab. | 
					
						
							|  |  |  |  * @author   Duy Nguyen Ta | 
					
						
							|  |  |  |  * @author   Ivan Dario Jimenez | 
					
						
							|  |  |  |  * @date     1/24/16 | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-25 08:58:42 +08:00
										 |  |  | #pragma once
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-17 06:22:02 +08:00
										 |  |  | #include <gtsam_unstable/linear/LP.h>
 | 
					
						
							| 
									
										
										
										
											2016-06-17 11:49:14 +08:00
										 |  |  | #include <gtsam/linear/GaussianFactorGraph.h>
 | 
					
						
							| 
									
										
										
										
											2016-05-07 00:07:02 +08:00
										 |  |  | #include <CppUnitLite/Test.h>
 | 
					
						
							| 
									
										
										
										
											2016-02-16 03:44:00 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-25 08:58:42 +08:00
										 |  |  | namespace gtsam { | 
					
						
							|  |  |  | /**
 | 
					
						
							| 
									
										
										
										
											2016-05-07 00:07:02 +08:00
										 |  |  |  * This LPInitSolver implements the strategy in Matlab: | 
					
						
							|  |  |  |  * http://www.mathworks.com/help/optim/ug/linear-programming-algorithms.html#brozyzb-9
 | 
					
						
							|  |  |  |  * Solve for x and y: | 
					
						
							|  |  |  |  *    min y | 
					
						
							|  |  |  |  *    st Ax = b | 
					
						
							|  |  |  |  *       Cx - y <= d | 
					
						
							|  |  |  |  * where y \in R, x \in R^n, and Ax = b and Cx <= d is the constraints of the original problem. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * If the solution for this problem {x*,y*} has y* <= 0, we'll have x* a feasible initial point | 
					
						
							|  |  |  |  * of the original problem | 
					
						
							|  |  |  |  * otherwise, if y* > 0 or the problem has no solution, the original problem is infeasible. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * The initial value of this initial problem can be found by solving | 
					
						
							|  |  |  |  *    min   ||x||^2 | 
					
						
							|  |  |  |  *    s.t.   Ax = b | 
					
						
							|  |  |  |  * to have a solution x0 | 
					
						
							|  |  |  |  * then y = max_j ( Cj*x0  - dj )  -- due to the constraints y >= Cx - d | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * WARNING: If some xj in the inequality constraints does not exist in the equality constraints, | 
					
						
							|  |  |  |  * set them as zero for now. If that is the case, the original problem doesn't have a unique | 
					
						
							|  |  |  |  * solution (it could be either infeasible or unbounded). | 
					
						
							|  |  |  |  * So, if the initialization fails because we enforce xj=0 in the problematic | 
					
						
							|  |  |  |  * inequality constraint, we can't conclude that the problem is infeasible. | 
					
						
							|  |  |  |  * However, whether it is infeasible or unbounded, we don't have a unique solution anyway. | 
					
						
							| 
									
										
										
										
											2016-01-25 08:58:42 +08:00
										 |  |  |  */ | 
					
						
							|  |  |  | class LPInitSolver { | 
					
						
							| 
									
										
										
										
											2016-05-07 00:07:02 +08:00
										 |  |  | private: | 
					
						
							|  |  |  |   const LP& lp_; | 
					
						
							| 
									
										
										
										
											2016-01-25 08:58:42 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | public: | 
					
						
							| 
									
										
										
										
											2016-06-17 06:22:02 +08:00
										 |  |  |   /// Construct with an LP problem
 | 
					
						
							|  |  |  |   LPInitSolver(const LP& lp) : lp_(lp) {} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   ///@return a feasible initialization point
 | 
					
						
							|  |  |  |   VectorValues solve() const; | 
					
						
							| 
									
										
										
										
											2016-05-07 00:07:02 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | private: | 
					
						
							|  |  |  |   /// build initial LP
 | 
					
						
							| 
									
										
										
										
											2016-06-17 06:22:02 +08:00
										 |  |  |   LP::shared_ptr buildInitialLP(Key yKey) const; | 
					
						
							| 
									
										
										
										
											2016-05-07 00:07:02 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |   /**
 | 
					
						
							|  |  |  |    * Build the following graph to solve for an initial value of the initial problem | 
					
						
							|  |  |  |    *    min   ||x||^2    s.t.   Ax = b | 
					
						
							|  |  |  |    */ | 
					
						
							| 
									
										
										
										
											2016-06-17 06:22:02 +08:00
										 |  |  |   GaussianFactorGraph::shared_ptr buildInitOfInitGraph() const; | 
					
						
							| 
									
										
										
										
											2016-05-07 00:07:02 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |   /// y = max_j ( Cj*x0  - dj )  -- due to the inequality constraints y >= Cx - d
 | 
					
						
							| 
									
										
										
										
											2016-06-17 06:22:02 +08:00
										 |  |  |   double compute_y0(const VectorValues& x0) const; | 
					
						
							| 
									
										
										
										
											2016-05-07 00:07:02 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |   /// Collect all terms of a factor into a container.
 | 
					
						
							| 
									
										
										
										
											2016-06-17 18:54:18 +08:00
										 |  |  |   std::vector<std::pair<Key, Matrix>> collectTerms( | 
					
						
							| 
									
										
										
										
											2016-06-17 06:22:02 +08:00
										 |  |  |       const LinearInequality& factor) const; | 
					
						
							| 
									
										
										
										
											2016-05-07 00:07:02 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |   /// Turn Cx <= d into Cx - y <= d factors
 | 
					
						
							|  |  |  |   InequalityFactorGraph addSlackVariableToInequalities(Key yKey, | 
					
						
							| 
									
										
										
										
											2016-06-17 06:22:02 +08:00
										 |  |  |       const InequalityFactorGraph& inequalities) const; | 
					
						
							| 
									
										
										
										
											2016-05-07 00:07:02 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |   // friend class for unit-testing private methods
 | 
					
						
							| 
									
										
										
										
											2016-06-17 06:22:02 +08:00
										 |  |  |   FRIEND_TEST(LPInitSolver, initialization); | 
					
						
							| 
									
										
										
										
											2016-01-25 08:58:42 +08:00
										 |  |  | }; | 
					
						
							| 
									
										
										
										
											2016-06-17 06:22:02 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-25 08:58:42 +08:00
										 |  |  | } |