Fix tests
parent
d1bd76a0aa
commit
ac86415032
|
@ -123,11 +123,11 @@ jobs:
|
||||||
cmake --build build -j4 --config ${{ matrix.build_type }} --target check.slam
|
cmake --build build -j4 --config ${{ matrix.build_type }} --target check.slam
|
||||||
|
|
||||||
# Run GTSAM_UNSTABLE tests
|
# Run GTSAM_UNSTABLE tests
|
||||||
|
cmake --build build -j4 --config ${{ matrix.build_type }} --target check.geometry_unstable
|
||||||
|
cmake --build build -j4 --config ${{ matrix.build_type }} --target check.linear_unstable
|
||||||
|
cmake --build build -j4 --config ${{ matrix.build_type }} --target check.discrete_unstable
|
||||||
|
cmake --build build -j4 --config ${{ matrix.build_type }} --target check.dynamics_unstable
|
||||||
|
cmake --build build -j4 --config ${{ matrix.build_type }} --target check.nonlinear_unstable
|
||||||
|
cmake --build build -j4 --config ${{ matrix.build_type }} --target check.slam_unstable
|
||||||
|
cmake --build build -j4 --config ${{ matrix.build_type }} --target check.partition
|
||||||
cmake --build build -j4 --config ${{ matrix.build_type }} --target check.base_unstable
|
cmake --build build -j4 --config ${{ matrix.build_type }} --target check.base_unstable
|
||||||
# cmake --build build -j4 --config ${{ matrix.build_type }} --target check.geometry_unstable
|
|
||||||
# cmake --build build -j4 --config ${{ matrix.build_type }} --target check.linear_unstable
|
|
||||||
# cmake --build build -j4 --config ${{ matrix.build_type }} --target check.discrete_unstable
|
|
||||||
# cmake --build build -j4 --config ${{ matrix.build_type }} --target check.dynamics_unstable
|
|
||||||
# cmake --build build -j4 --config ${{ matrix.build_type }} --target check.nonlinear_unstable
|
|
||||||
# cmake --build build -j4 --config ${{ matrix.build_type }} --target check.slam_unstable
|
|
||||||
# cmake --build build -j4 --config ${{ matrix.build_type }} --target check.partition
|
|
||||||
|
|
|
@ -35,7 +35,7 @@ using SharedFactor = std::shared_ptr<Factor>;
|
||||||
* Hybrid Factor Graph
|
* Hybrid Factor Graph
|
||||||
* Factor graph with utilities for hybrid factors.
|
* Factor graph with utilities for hybrid factors.
|
||||||
*/
|
*/
|
||||||
class HybridFactorGraph : public FactorGraph<Factor> {
|
class GTSAM_EXPORT HybridFactorGraph : public FactorGraph<Factor> {
|
||||||
public:
|
public:
|
||||||
using Base = FactorGraph<Factor>;
|
using Base = FactorGraph<Factor>;
|
||||||
using This = HybridFactorGraph; ///< this class
|
using This = HybridFactorGraph; ///< this class
|
||||||
|
|
|
@ -24,7 +24,7 @@
|
||||||
|
|
||||||
namespace gtsam {
|
namespace gtsam {
|
||||||
|
|
||||||
class HybridSmoother {
|
class GTSAM_EXPORT HybridSmoother {
|
||||||
private:
|
private:
|
||||||
HybridBayesNet hybridBayesNet_;
|
HybridBayesNet hybridBayesNet_;
|
||||||
HybridGaussianFactorGraph remainingFactorGraph_;
|
HybridGaussianFactorGraph remainingFactorGraph_;
|
||||||
|
|
|
@ -43,6 +43,7 @@
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
#include <iterator>
|
#include <iterator>
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
#include <numeric>
|
||||||
|
|
||||||
#include "Switching.h"
|
#include "Switching.h"
|
||||||
#include "TinyHybridExample.h"
|
#include "TinyHybridExample.h"
|
||||||
|
|
Loading…
Reference in New Issue