From 866486ef374e7daa421128c1af3fc6d2edaeac21 Mon Sep 17 00:00:00 2001 From: Johan Larsson Date: Mon, 11 Dec 2023 08:37:15 +0100 Subject: [PATCH] chore: remove commented out duplicate code --- src/main.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/main.cpp b/src/main.cpp index 36a6dce..c30ba5d 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -60,7 +60,6 @@ fit_slope_sparse(const Eigen::SparseMatrix& x, PYBIND11_MODULE(_sortedl1, m) { - // m.def("fit_slope_dense", &fit_slope_dense); m.def("fit_slope_dense", &fit_slope_dense); m.def("fit_slope_sparse", &fit_slope_sparse); }