File: gtest_bundle_large.cpp

package info (click to toggle)
manif 0.0.5-6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,576 kB
  • sloc: cpp: 11,789; ansic: 8,774; python: 2,158; sh: 24; makefile: 23; xml: 21
file content (21 lines) | stat: -rw-r--r-- 387 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#include <gtest/gtest.h>

#include "manif/manif.h"

#include "../common_tester.h"

using namespace manif;

using GroupC = Bundle<double, R2, SO2, SE2, SO3, SE3>;
using GroupD = Bundle<double, SE2, R7, SO3, R2, R2>;

MANIF_TEST(GroupC);
MANIF_TEST(GroupD);

MANIF_TEST_MAP(GroupC);
MANIF_TEST_MAP(GroupD);

MANIF_TEST_JACOBIANS(GroupC);
MANIF_TEST_JACOBIANS(GroupD);

MANIF_RUN_ALL_TEST;