37 lines
		
	
	
		
			969 B
		
	
	
	
		
			C++
		
	
	
			
		
		
	
	
			37 lines
		
	
	
		
			969 B
		
	
	
	
		
			C++
		
	
	
| /* ----------------------------------------------------------------------------
 | |
| 
 | |
|  * 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
 | |
| 
 | |
|  * -------------------------------------------------------------------------- */
 | |
| 
 | |
| /*
 | |
|  * h
 | |
|  * Author: Richard Roberts
 | |
|  */
 | |
| 
 | |
| #pragma once
 | |
| 
 | |
| #include <string>
 | |
| #include <list>
 | |
| #include <gtsam/inference/FactorGraph.h>
 | |
| #include <gtsam/inference/SymbolicFactor.h>
 | |
| #include <gtsam/inference/SymbolicBayesNet.h>
 | |
| #include <gtsam/nonlinear/Key.h>
 | |
| #include <gtsam/geometry/Point2.h>
 | |
| #include <gtsam/nonlinear/LieValues.h>
 | |
| 
 | |
| namespace gtsam {
 | |
| 
 | |
| 	class Point2;
 | |
| 	typedef LieValues<Symbol, Point2> SymbolicValues;
 | |
| 
 | |
| 	// save graph to the graphviz format
 | |
| 	void saveGraph(const SymbolicFactorGraph& fg, const SymbolicValues& config, const std::string& s);
 | |
| 
 | |
| } // namespace gtsam
 |