robotoc
robotoc - efficient ROBOT Optimal Control solvers
Loading...
Searching...
No Matches
kkt_matrix.hpp
Go to the documentation of this file.
1#ifndef ROBOTOC_KKT_MATRIX_HPP_
2#define ROBOTOC_KKT_MATRIX_HPP_
3
4#include <iostream>
5
8
9
10namespace robotoc {
11
17
18std::ostream& operator<<(std::ostream& os, const KKTMatrix& kkt_matrix);
19
20} // namespace robotoc
21
22#endif // ROBOTOC_KKT_MATRIX_HPP_
Definition: constraint_component_base.hpp:17
std::ostream & operator<<(std::ostream &os, const Direction &d)
aligned_vector< SplitKKTMatrix > KKTMatrix
The KKT matrix of the optimal control problem.
Definition: kkt_matrix.hpp:16
std::vector< T, Eigen::aligned_allocator< T > > aligned_vector
std vector with Eigen::aligned_allocator.
Definition: aligned_vector.hpp:14