83 lines
2.2 KiB
C++
83 lines
2.2 KiB
C++
/*
|
|
* @file NonlinearEquality.h
|
|
* @brief Factor to handle enforced equality between factors
|
|
* @author Alex Cunningham
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <limits>
|
|
#include <iostream>
|
|
|
|
#include "Key.h"
|
|
#include "NonlinearFactor.h"
|
|
|
|
namespace gtsam {
|
|
|
|
/**
|
|
* Template default compare function that assumes a testable T
|
|
*/
|
|
template<class T>
|
|
bool compare(const T& a, const T& b) {return a.equals(b); }
|
|
|
|
|
|
/**
|
|
* An equality factor that forces either one variable to a constant,
|
|
* or a set of variables to be equal to each other.
|
|
* Throws an error at linearization if the constraints are not met.
|
|
*/
|
|
template<class Config, class Key, class T>
|
|
class NonlinearEquality: public NonlinearFactor1<Config, Key, T> {
|
|
private:
|
|
|
|
// feasible value
|
|
T feasible_;
|
|
|
|
public:
|
|
|
|
/**
|
|
* Function that compares two values
|
|
*/
|
|
bool (*compare_)(const T& a, const T& b);
|
|
|
|
typedef NonlinearFactor1<Config, Key, T> Base;
|
|
|
|
/**
|
|
* Constructor
|
|
*/
|
|
NonlinearEquality(const Key& j, const T& feasible, bool (*compare)(const T&, const T&) = compare<T>) :
|
|
Base(0, j), feasible_(feasible), compare_(compare) {
|
|
}
|
|
|
|
void print(const std::string& s = "") const {
|
|
std::cout << "Constraint: " << s << " on [" << (std::string)(this->key_) << "]\n";
|
|
gtsam::print(feasible_,"Feasible Point");
|
|
std::cout << "Variable Dimension: " << dim(feasible_) << std::endl;
|
|
}
|
|
|
|
/** Check if two factors are equal */
|
|
bool equals(const Factor<Config>& f, double tol = 1e-9) const {
|
|
const NonlinearEquality<Config,Key,T>* p =
|
|
dynamic_cast<const NonlinearEquality<Config,Key,T>*> (&f);
|
|
if (p == NULL) return false;
|
|
if (!Base::equals(*p)) return false;
|
|
return compare_(feasible_, p->feasible_);
|
|
}
|
|
|
|
/** error function */
|
|
inline Vector evaluateError(const T& xj, boost::optional<Matrix&> H) const {
|
|
size_t nj = dim(feasible_);
|
|
if (compare_(feasible_,xj)) {
|
|
if (H) *H = eye(nj);
|
|
return zero(nj); // set error to zero if equal
|
|
} else {
|
|
if (H) throw std::invalid_argument(
|
|
"Linearization point not feasible for " + (std::string)(this->key_) + "!");
|
|
return repeat(nj, std::numeric_limits<double>::infinity()); // set error to infinity if not equal
|
|
}
|
|
}
|
|
}; // NonlinearEquality
|
|
|
|
} // namespace gtsam
|
|
|