Skip to content

Commit

Permalink
fix more tests
Browse files Browse the repository at this point in the history
  • Loading branch information
talregev committed Jul 18, 2023
1 parent 8a5daf3 commit d8def4c
Show file tree
Hide file tree
Showing 6 changed files with 29 additions and 14 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/build-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -120,11 +120,15 @@ jobs:
cmake --build build -j4 --config ${{ matrix.build_type }} --target check.inference
cmake --build build -j4 --config ${{ matrix.build_type }} --target check.linear
cmake --build build -j4 --config ${{ matrix.build_type }} --target check.navigation
cmake --build build -j4 --config ${{ matrix.build_type }} --target check.navigation2
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.sfm2
cmake --build build -j4 --config ${{ matrix.build_type }} --target check.symbolic
cmake --build build -j4 --config ${{ matrix.build_type }} --target check.symbolic2
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.nonlinear2
cmake --build build -j4 --config ${{ matrix.build_type }} --target check.slam
# Run GTSAM_UNSTABLE tests
Expand Down
26 changes: 13 additions & 13 deletions gtsam/inference/Ordering.h
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@

namespace gtsam {

class Ordering: public KeyVector {
class GTSAM_EXPORT Ordering: public KeyVector {
protected:
typedef KeyVector Base;

Expand All @@ -45,7 +45,7 @@ class Ordering: public KeyVector {
typedef std::shared_ptr<This> shared_ptr; ///< shared_ptr to this class

/// Create an empty ordering
GTSAM_EXPORT

Ordering() {
}

Expand All @@ -71,11 +71,11 @@ class Ordering: public KeyVector {
* @param keys The key vector to append to this ordering.
* @return The ordering variable with appended keys.
*/
GTSAM_EXPORT

This& operator+=(KeyVector& keys);

/// Check if key exists in ordering.
GTSAM_EXPORT

bool contains(const Key& key) const;

/**
Expand All @@ -101,7 +101,7 @@ class Ordering: public KeyVector {
}

/// Compute a fill-reducing ordering using COLAMD from a VariableIndex.
static GTSAM_EXPORT Ordering Colamd(const VariableIndex& variableIndex);
static Ordering Colamd(const VariableIndex& variableIndex);

/// Compute a fill-reducing ordering using constrained COLAMD from a factor graph (see details
/// for note on performance). This internally builds a VariableIndex so if you already have a
Expand All @@ -126,7 +126,7 @@ class Ordering: public KeyVector {
/// variables in \c constrainLast will be ordered in the same order specified in the KeyVector
/// \c constrainLast. If \c forceOrder is false, the variables in \c constrainLast will be
/// ordered after all the others, but will be rearranged by CCOLAMD to reduce fill-in as well.
static GTSAM_EXPORT Ordering ColamdConstrainedLast(
static Ordering ColamdConstrainedLast(
const VariableIndex& variableIndex, const KeyVector& constrainLast,
bool forceOrder = false);

Expand Down Expand Up @@ -154,7 +154,7 @@ class Ordering: public KeyVector {
/// KeyVector \c constrainFirst. If \c forceOrder is false, the variables in \c
/// constrainFirst will be ordered before all the others, but will be rearranged by CCOLAMD to
/// reduce fill-in as well.
static GTSAM_EXPORT Ordering ColamdConstrainedFirst(
static Ordering ColamdConstrainedFirst(
const VariableIndex& variableIndex,
const KeyVector& constrainFirst, bool forceOrder = false);

Expand Down Expand Up @@ -183,7 +183,7 @@ class Ordering: public KeyVector {
/// appear in \c groups in arbitrary order. Any variables not present in \c groups will be
/// assigned to group 0. This function simply fills the \c cmember argument to CCOLAMD with the
/// supplied indices, see the CCOLAMD documentation for more information.
static GTSAM_EXPORT Ordering ColamdConstrained(
static Ordering ColamdConstrained(
const VariableIndex& variableIndex, const FastMap<Key, int>& groups);

/// Return a natural Ordering. Typically used by iterative solvers
Expand All @@ -197,11 +197,11 @@ class Ordering: public KeyVector {

/// METIS Formatting function
template<class FACTOR_GRAPH>
static GTSAM_EXPORT void CSRFormat(std::vector<int>& xadj,
static void CSRFormat(std::vector<int>& xadj,
std::vector<int>& adj, const FACTOR_GRAPH& graph);

/// Compute an ordering determined by METIS from a VariableIndex
static GTSAM_EXPORT Ordering Metis(const MetisIndex& met);
static Ordering Metis(const MetisIndex& met);

template<class FACTOR_GRAPH>
static Ordering Metis(const FACTOR_GRAPH& graph) {
Expand Down Expand Up @@ -243,18 +243,18 @@ class Ordering: public KeyVector {
/// @name Testable
/// @{

GTSAM_EXPORT

void print(const std::string& str = "", const KeyFormatter& keyFormatter =
DefaultKeyFormatter) const;

GTSAM_EXPORT

bool equals(const Ordering& other, double tol = 1e-9) const;

/// @}

private:
/// Internal COLAMD function
static GTSAM_EXPORT Ordering ColamdConstrained(
static Ordering ColamdConstrained(
const VariableIndex& variableIndex, std::vector<int>& cmember);

#ifdef GTSAM_ENABLE_BOOST_SERIALIZATION
Expand Down
3 changes: 3 additions & 0 deletions gtsam/navigation/tests/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,7 @@ if (NOT GTSAM_ENABLE_BOOST_SERIALIZATION)
list(APPEND tests_excluded testSerializationNavigation.cpp)
endif()

list(APPEND tests_excluded testImuFactor.cpp testMagPoseFactor.cpp)

gtsamAddTestsGlob(navigation "test*.cpp" "${tests_excluded}" "${test_link_libraries}")
gtsamAddTestsGlob(navigation2 "testImuFactor.cpp testMagPoseFactor.cpp" "" "${test_link_libraries}")
3 changes: 3 additions & 0 deletions gtsam/nonlinear/tests/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,7 @@ else()
set(EXCLUDE_TESTS "")
endif()

list(APPEND EXCLUDE_TESTS testExpression.cpp)

gtsamAddTestsGlob(nonlinear "test*.cpp" "${EXCLUDE_TESTS}" "gtsam")
gtsamAddTestsGlob(nonlinear2 "testExpression.cpp" "" "gtsam")
4 changes: 3 additions & 1 deletion gtsam/sfm/tests/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
gtsamAddTestsGlob(sfm "test*.cpp" "" "gtsam")
set(tests_excluded testMFAS.cpp testBinaryMeasurement.cpp)
gtsamAddTestsGlob(sfm "test*.cpp" "${tests_excluded}" "gtsam")
gtsamAddTestsGlob(sfm2 "testBinaryMeasurement.cpp testMFAS.cpp" "" "gtsam")
3 changes: 3 additions & 0 deletions gtsam/symbolic/tests/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,7 @@ else()
set(EXCLUDE_TESTS "")
endif()

list(APPEND EXCLUDE_TESTS testSymbolicConditional.cpp)

gtsamAddTestsGlob(symbolic "test*.cpp" "${EXCLUDE_TESTS}" "gtsam")
gtsamAddTestsGlob(symbolic2 "testSymbolicConditional.cpp" "" "gtsam")

0 comments on commit d8def4c

Please sign in to comment.