removed bind.h include
parent
f8ce3a9c11
commit
39aec060ae
|
|
@ -16,10 +16,6 @@
|
|||
* @date Nov 5, 2010
|
||||
*/
|
||||
|
||||
#include <functional>
|
||||
#include <boost/format.hpp>
|
||||
#include <boost/bind.hpp>
|
||||
|
||||
#include <gtsam/base/debug.h>
|
||||
#include <gtsam/base/cholesky.h>
|
||||
#include <gtsam/base/timing.h>
|
||||
|
|
@ -27,6 +23,8 @@
|
|||
#include <gtsam/3rdparty/Eigen/Eigen/Core>
|
||||
#include <gtsam/3rdparty/Eigen/Eigen/Dense>
|
||||
|
||||
#include <boost/format.hpp>
|
||||
|
||||
using namespace std;
|
||||
|
||||
namespace gtsam {
|
||||
|
|
|
|||
|
|
@ -17,7 +17,6 @@
|
|||
* @author Christian Potthast
|
||||
*/
|
||||
|
||||
#include <boost/bind.hpp>
|
||||
#include <boost/foreach.hpp>
|
||||
#include <gtsam/linear/Errors.h>
|
||||
|
||||
|
|
@ -56,7 +55,6 @@ struct equalsVector : public std::binary_function<const Vector&, const Vector&,
|
|||
bool Errors::equals(const Errors& expected, double tol) const {
|
||||
if( size() != expected.size() ) return false;
|
||||
return equal(begin(),end(),expected.begin(),equalsVector(tol));
|
||||
// TODO: use boost::bind(&equal_with_abs_tol,_1, _2,tol)
|
||||
}
|
||||
|
||||
/* ************************************************************************* */
|
||||
|
|
|
|||
|
|
@ -23,8 +23,6 @@
|
|||
#include <gtsam/inference/FactorGraph.h>
|
||||
#include <gtsam/linear/JacobianFactor.h>
|
||||
|
||||
#include <boost/bind.hpp>
|
||||
|
||||
namespace gtsam {
|
||||
|
||||
using namespace std;
|
||||
|
|
|
|||
Loading…
Reference in New Issue