From cfc18adf062225f30dd7fd4c7e4879746ce60892 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ricardo=20Monta=C3=B1ana?= Date: Tue, 13 Dec 2022 17:18:38 +0100 Subject: [PATCH] Fix c++ sample --- samples/sample.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/samples/sample.cpp b/samples/sample.cpp index c0c357c..d838bb9 100644 --- a/samples/sample.cpp +++ b/samples/sample.cpp @@ -50,9 +50,5 @@ int main(int argc, char** argv) cout << item << endl; } } - mdlp::indices_t indices = test.sortIndices(X[0]); - for (auto item : indices) { - cout << setw(3) << item << " " << X[0][item] << " " << y[item] << endl; - } return 0; }