robotoc
robotoc - efficient ROBOT Optimal Control solvers
Loading...
Searching...
No Matches
ocp_benchmarker.hpp
Go to the documentation of this file.
1#ifndef ROBOTOC_UTILS_OCP_BENCHMARKER_HPP_
2#define ROBOTOC_UTILS_OCP_BENCHMARKER_HPP_
3
4#include <memory>
5#include <string>
6
7#include "Eigen/Core"
8
9
10namespace robotoc {
11namespace benchmark {
12
13template <typename OCPSolverType>
14void CPUTime(OCPSolverType& ocp_solver, const double t,
15 const Eigen::VectorXd& q, const Eigen::VectorXd& v,
16 const int num_iteration=1000);
17
18} // namespace benchmark
19} // namespace robotoc
20
22
23#endif // ROBOTOC_UTILS_OCP_BENCHMARKER_HPP_
void CPUTime(OCPSolverType &ocp_solver, const double t, const Eigen::VectorXd &q, const Eigen::VectorXd &v, const int num_iteration=1000)
Definition: ocp_benchmarker.hxx:14
Definition: constraint_component_base.hpp:17