Merge pull request #1566 from talregev/TalR/fix/windows_tests
commit
ea57cd2e5d
|
@ -118,16 +118,16 @@ jobs:
|
||||||
cmake --build build -j4 --config ${{ matrix.build_type }} --target check.sam
|
cmake --build build -j4 --config ${{ matrix.build_type }} --target check.sam
|
||||||
cmake --build build -j4 --config ${{ matrix.build_type }} --target check.sfm
|
cmake --build build -j4 --config ${{ matrix.build_type }} --target check.sfm
|
||||||
cmake --build build -j4 --config ${{ matrix.build_type }} --target check.symbolic
|
cmake --build build -j4 --config ${{ matrix.build_type }} --target check.symbolic
|
||||||
# cmake --build build -j4 --config ${{ matrix.build_type }} --target check.hybrid
|
cmake --build build -j4 --config ${{ matrix.build_type }} --target check.hybrid
|
||||||
# cmake --build build -j4 --config ${{ matrix.build_type }} --target check.nonlinear
|
cmake --build build -j4 --config ${{ matrix.build_type }} --target check.nonlinear
|
||||||
# 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