We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e600467 commit cbe4b8cCopy full SHA for cbe4b8c
src/lib.rs
@@ -1902,9 +1902,9 @@ impl QPpolyTrajPlanner {
1902
fn prepare_qp_problem(
1903
&self,
1904
) -> (
1905
- CscMatrix,
+ CscMatrix<'_>,
1906
DVector<f64>,
1907
1908
1909
1910
) {
@@ -2006,7 +2006,7 @@ impl QPpolyTrajPlanner {
2006
/// * `a` - The dense matrix to be converted.
2007
/// # Returns
2008
/// * The sparse matrix in CSC format.
2009
- fn convert_dense_to_sparse(&self, a: &DMatrix<f64>) -> CscMatrix {
+ fn convert_dense_to_sparse(&self, a: &DMatrix<f64>) -> CscMatrix<'_> {
2010
let (rows, cols) = a.shape();
2011
2012
let column_major_iter: Vec<f64> = a
0 commit comments