Sort lines.

This commit is contained in:
Sebastian Brodehl
2018-01-16 22:38:12 +01:00
parent 7b1ce7c209
commit 5ef3e9d89a
2 changed files with 20 additions and 20 deletions
+6 -6
View File
@@ -21,11 +21,11 @@ endmacro ()
# Recurse into each method mlpack provides.
set(DIRS
preprocess
# mvu # Note: this implementation of MVU does not work. See #189.
adaboost
approx_kfn
amf
ann
approx_kfn
block_krylov_svd
cf
dbscan
@@ -39,24 +39,25 @@ set(DIRS
hoeffding_trees
kernel_pca
kmeans
mean_shift
lars
linear_regression
local_coordinate_coding
logistic_regression
lsh
# mvu # Note: this implementation of MVU does not work. See #189.
matrix_completion
mean_shift
naive_bayes
nca
neighbor_search
nmf
nystroem_method
pca
perceptron
preprocess
quic_svd
radical
randomized_svd
random_forest
randomized_svd
range_search
rann
regularized_svd
@@ -65,7 +66,6 @@ set(DIRS
sparse_autoencoder
sparse_coding
sparse_svm
nystroem_method
)
foreach(dir ${DIRS})
+14 -14
View File
@@ -1,27 +1,27 @@
# mlpack test executable.
add_executable(mlpack_test
activation_functions_test.cpp
adaboost_test.cpp
adam_test.cpp
ada_delta_test.cpp
ada_grad_test.cpp
adaboost_test.cpp
adam_test.cpp
akfn_test.cpp
aknn_test.cpp
ann_layer_test.cpp
armadillo_svd_test.cpp
arma_extend_test.cpp
armadillo_svd_test.cpp
async_learning_test.cpp
aug_lagrangian_test.cpp
augmented_rnns_tasks_test.cpp
binarize_test.cpp
block_krylov_svd_test.cpp
cf_test.cpp
cli_binding_test.cpp
cli_test.cpp
cmaes_test.cpp
cli_binding_test.cpp
cne_test.cpp
convolutional_network_test.cpp
convolution_test.cpp
convolutional_network_test.cpp
cosine_tree_test.cpp
cv_test.cpp
dbscan_test.cpp
@@ -55,14 +55,17 @@ add_executable(mlpack_test
lars_test.cpp
lbfgs_test.cpp
lin_alg_test.cpp
linear_regression_test.cpp
line_search_test.cpp
linear_regression_test.cpp
load_save_test.cpp
local_coordinate_coding_test.cpp
logistic_regression_test.cpp
log_test.cpp
logistic_regression_test.cpp
lrsdp_test.cpp
lsh_test.cpp
main_tests/emst_test.cpp
main_tests/linear_regression_test.cpp
main_tests/pca_test.cpp
math_test.cpp
matrix_completion_test.cpp
maximal_inputs_test.cpp
@@ -79,9 +82,9 @@ add_executable(mlpack_test
parallel_sgd_test.cpp
pca_test.cpp
perceptron_test.cpp
python_binding_test.cpp
prefixedoutstream_test.cpp
proximal_test.cpp
python_binding_test.cpp
q_learning_test.cpp
qdafn_test.cpp
quic_svd_test.cpp
@@ -98,12 +101,12 @@ add_executable(mlpack_test
sa_test.cpp
scd_test.cpp
sdp_primal_dual_test.cpp
serialization.hpp
serialization.cpp
serialization.hpp
serialization_test.cpp
sgdr_test.cpp
sgd_test.cpp
sfinae_test.cpp
sgd_test.cpp
sgdr_test.cpp
smorms3_test.cpp
snapshot_ensembles.cpp
softmax_regression_test.cpp
@@ -123,9 +126,6 @@ add_executable(mlpack_test
ub_tree_test.cpp
union_find_test.cpp
vantage_point_tree_test.cpp
main_tests/emst_test.cpp
main_tests/linear_regression_test.cpp
main_tests/pca_test.cpp
)
# Link dependencies of test executable.