Attempts at fixing CI gcc/windows

release/4.3a0
Frank Dellaert 2023-01-08 22:41:29 -08:00
parent 9a6b0ddaa0
commit c486472ca1
2 changed files with 7 additions and 7 deletions

View File

@ -39,6 +39,9 @@ namespace gtsam {
using Base::Base; // inherit constructors
/** Default constructor */
Errors() = default;
/** break V into pieces according to its start indices */
Errors(const VectorValues&V);

View File

@ -138,13 +138,10 @@ namespace gtsam {
SymbolicBayesTree __asiaBayesTree() {
SymbolicBayesTree result;
result.insertRoot(LeafClique(KeyVector{_E_, _L_, _B_}, 3));
result.addClique(LeafClique(KeyVector{_S_, _B_, _L_}, 1),
result.roots().front());
result.addClique(LeafClique(KeyVector{_T_, _E_, _L_}, 1),
result.roots().front());
result.addClique(LeafClique(KeyVector{_X_, _E_}, 1),
result.roots().front());
result.insertRoot(LeafClique({_E_, _L_, _B_}, 3));
result.addClique(LeafClique({_S_, _B_, _L_}, 1), result.roots().front());
result.addClique(LeafClique({_T_, _E_, _L_}, 1), result.roots().front());
result.addClique(LeafClique({_X_, _E_}, 1), result.roots().front());
return result;
}