Commit c888d4c 1 parent bb3ff0b commit c888d4c Copy full SHA for c888d4c
File tree 1 file changed +4
-4
lines changed
common/osqp_interface/include/osqp_interface
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -42,11 +42,11 @@ struct OSQP_INTERFACE_PUBLIC CSC_Matrix
42
42
{
43
43
os << " CSC_Matrix: {\n " ;
44
44
os << " \t m_vals: [" ;
45
-
45
+
46
46
// Iterator-based loop for m_vals
47
47
for (auto it = std::begin (matrix.m_vals ); it != std::end (matrix.m_vals ); ++it) {
48
- os << *it; // Print the current element (dereference iterator)
49
- if (std::next (it) != std::end (matrix.m_vals )) { // Check if not the last element
48
+ os << *it; // Print the current element (dereference iterator)
49
+ if (std::next (it) != std::end (matrix.m_vals )) { // Check if not the last element
50
50
os << " , " ;
51
51
}
52
52
}
@@ -74,7 +74,7 @@ struct OSQP_INTERFACE_PUBLIC CSC_Matrix
74
74
75
75
os << " }\n " ;
76
76
return os;
77
- }
77
+ }
78
78
};
79
79
80
80
// / \brief Calculate CSC matrix from Eigen matrix
You can’t perform that action at this time.
0 commit comments