2009-08-22 06:23:24 +08:00
|
|
|
/**
|
|
|
|
|
* @file Ordering.cpp
|
|
|
|
|
* @brief Ordering
|
|
|
|
|
* @author Christian Potthast
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include <iostream>
|
2010-01-07 16:00:54 +08:00
|
|
|
#include <stdexcept>
|
2009-11-29 02:35:36 +08:00
|
|
|
#include <boost/assign/std/list.hpp> // for operator +=
|
2009-10-31 23:24:22 +08:00
|
|
|
#include <boost/foreach.hpp>
|
2010-01-07 16:00:54 +08:00
|
|
|
#include <boost/tuple/tuple.hpp>
|
|
|
|
|
|
2010-01-13 00:12:25 +08:00
|
|
|
#include "graph-inl.h"
|
2009-08-22 06:23:24 +08:00
|
|
|
#include "Ordering.h"
|
|
|
|
|
|
2010-01-13 00:12:25 +08:00
|
|
|
|
2009-08-22 06:23:24 +08:00
|
|
|
using namespace std;
|
|
|
|
|
using namespace gtsam;
|
2009-11-29 02:35:36 +08:00
|
|
|
using namespace boost::assign;
|
|
|
|
|
|
2010-01-07 16:00:54 +08:00
|
|
|
#define FOREACH_PAIR( KEY, VAL, COL) BOOST_FOREACH (boost::tie(KEY,VAL),COL)
|
|
|
|
|
|
2010-01-13 00:12:25 +08:00
|
|
|
class ordering_key_visitor : public boost::default_bfs_visitor {
|
2010-01-08 12:12:23 +08:00
|
|
|
public:
|
2010-01-13 00:12:25 +08:00
|
|
|
ordering_key_visitor(Ordering& ordering_in) : ordering_(ordering_in) {}
|
|
|
|
|
template <typename Vertex, typename Graph> void discover_vertex(Vertex v, const Graph& g) const {
|
|
|
|
|
string key = boost::get(boost::vertex_name, g, v);
|
2010-01-08 12:12:23 +08:00
|
|
|
ordering_.push_front(key);
|
|
|
|
|
}
|
|
|
|
|
Ordering& ordering_;
|
|
|
|
|
};
|
|
|
|
|
|
Large gtsam refactoring
To support faster development *and* better performance Richard and I pushed through a large refactoring of NonlinearFactors.
The following are the biggest changes:
1) NonLinearFactor1 and NonLinearFactor2 are now templated on Config, Key type, and X type, where X is the argument to the measurement function.
2) The measurement itself is no longer kept in the nonlinear factor. Instead, a derived class (see testVSLAMFactor, testNonlinearEquality, testPose3Factor etc...) has to implement a function to compute the errors, "evaluateErrors". Instead of (h(x)-z), it needs to return (z-h(x)), so Ax-b is an approximation of the error. IMPORTANT: evaluateErrors needs - if asked - *combine* the calculation of the function value h(x) and the derivatives dh(x)/dx. This was a major performance issue. To do this, boost::optional<Matrix&> arguments are provided, and tin EvaluateErrors you just says something like
if (H) *H = Matrix_(3,6,....);
3) We are no longer using int or strings for nonlinear factors. Instead, the preferred key type is now Symbol, defined in Key.h. This is both fast and cool: you can construct it from an int, and cast it to a strong. It also does type checking: a Symbol<Pose3,'x'> will not match a Symbol<Pose2,'x'>
4) minor: take a look at LieConfig.h: it help you avoid writing a lot of code bu automatically creating configs for a certain type. See e.g. Pose3Config.h. A "double" LieConfig is on the way - Thanks Richard and Manohar !
2010-01-14 06:25:03 +08:00
|
|
|
/* ************************************************************************* *
|
2010-01-07 16:00:54 +08:00
|
|
|
Ordering::Ordering(const map<string, string>& p_map) {
|
|
|
|
|
|
2010-01-13 00:12:25 +08:00
|
|
|
SGraph g;
|
|
|
|
|
SVertex root;
|
|
|
|
|
map<string, SVertex> key2vertex;
|
|
|
|
|
boost::tie(g, root, key2vertex) = predecessorMap2Graph<SGraph, SVertex>(p_map);
|
2010-01-07 16:00:54 +08:00
|
|
|
|
2010-01-08 12:12:23 +08:00
|
|
|
// breadth first visit on the graph
|
2010-01-13 00:12:25 +08:00
|
|
|
ordering_key_visitor vis(*this);
|
2010-01-08 12:12:23 +08:00
|
|
|
boost::breadth_first_search(g, root, boost::visitor(vis));
|
2010-01-07 16:00:54 +08:00
|
|
|
}
|
|
|
|
|
|
2009-11-29 02:35:36 +08:00
|
|
|
/* ************************************************************************* */
|
|
|
|
|
Ordering Ordering::subtract(const Ordering& keys) const {
|
|
|
|
|
Ordering newOrdering = *this;
|
|
|
|
|
BOOST_FOREACH(string key, keys) {
|
|
|
|
|
newOrdering.remove(key);
|
|
|
|
|
}
|
|
|
|
|
return newOrdering;
|
|
|
|
|
}
|
2009-08-22 06:23:24 +08:00
|
|
|
|
|
|
|
|
/* ************************************************************************* */
|
2009-10-31 23:24:22 +08:00
|
|
|
void Ordering::print(const string& s) const {
|
|
|
|
|
cout << s;
|
|
|
|
|
BOOST_FOREACH(string key, *this)
|
|
|
|
|
cout << " " << key;
|
2009-08-22 06:23:24 +08:00
|
|
|
cout << endl;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* ************************************************************************* */
|
2009-10-31 23:24:22 +08:00
|
|
|
bool Ordering::equals(const Ordering &other, double tol) const {
|
|
|
|
|
return *this == other;
|
2009-08-22 06:23:24 +08:00
|
|
|
}
|
2010-01-07 16:00:54 +08:00
|
|
|
|
2009-08-22 06:23:24 +08:00
|
|
|
/* ************************************************************************* */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|