copp 0.2.2

Convex-objective path parameterization for robotic trajectory planning.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Test purpose: verify that the C++ facade can call into Rust and read the
// crate version string. This is the smallest end-to-end bridge smoke test.

#include <iostream>

#include <copp/copp.hpp>

int main()
{
    if (copp::version().empty())
    {
        std::cerr << "empty C++ facade version\n";
        return 1;
    }

    return 0;
}