small tweaks, disabling broken function - need a parsing rule that distinguishes VectorValues and Vector

release/4.3a0
Alex Cunningham 2011-12-07 03:05:35 +00:00
parent f5f59bd213
commit 1e1511950c
2 changed files with 8 additions and 1 deletions

View File

@ -259,11 +259,17 @@ class PlanarSLAMOdometry {
class GaussianSequentialSolver {
GaussianSequentialSolver(const GaussianFactorGraph& graph, bool useQR);
GaussianBayesNet* eliminate() const;
VectorValues* optimize() const;
// VectorValues* optimize() const; // FAIL: parse error here
GaussianFactor* marginalFactor(int j) const;
Matrix marginalCovariance(int j) const;
};
//// These are considered to be broken and will be added back as they start working
//// It's assumed that there have been interface changes that might break this
//

View File

@ -82,6 +82,7 @@ Module::Module(const string& interfacePath,
Rule basisType_p =
(str_p("string") | "bool" | "size_t" | "int" | "double");
// FAIL: this will match against VectorValues in returntype
Rule eigenType_p =
(str_p("Vector") | "Matrix");