pmlpp/SCsub

98 lines
3.1 KiB
Plaintext

import os
Import('env')
module_env = env.Clone()
sources = [
"register_types.cpp",
"mlpp/lin_alg/mlpp_vector.cpp",
"mlpp/lin_alg/mlpp_matrix.cpp",
"mlpp/lin_alg/mlpp_tensor3.cpp",
"mlpp/activation/activation.cpp",
"mlpp/ann/ann.cpp",
"mlpp/auto_encoder/auto_encoder.cpp",
"mlpp/bernoulli_nb/bernoulli_nb.cpp",
"mlpp/c_log_log_reg/c_log_log_reg.cpp",
"mlpp/convolutions/convolutions.cpp",
"mlpp/cost/cost.cpp",
"mlpp/data/data.cpp",
"mlpp/dual_svc/dual_svc.cpp",
"mlpp/exp_reg/exp_reg.cpp",
"mlpp/gan/gan.cpp",
"mlpp/gaussian_nb/gaussian_nb.cpp",
"mlpp/gauss_markov_checker/gauss_markov_checker.cpp",
"mlpp/hidden_layer/hidden_layer.cpp",
"mlpp/hypothesis_testing/hypothesis_testing.cpp",
"mlpp/kmeans/kmeans.cpp",
"mlpp/knn/knn.cpp",
"mlpp/lin_alg/lin_alg.cpp",
"mlpp/lin_reg/lin_reg.cpp",
"mlpp/log_reg/log_reg.cpp",
"mlpp/mann/mann.cpp",
"mlpp/mlp/mlp.cpp",
"mlpp/multinomial_nb/multinomial_nb.cpp",
"mlpp/multi_output_layer/multi_output_layer.cpp",
"mlpp/numerical_analysis/numerical_analysis.cpp",
"mlpp/outlier_finder/outlier_finder.cpp",
"mlpp/output_layer/output_layer.cpp",
"mlpp/pca/pca.cpp",
"mlpp/probit_reg/probit_reg.cpp",
"mlpp/regularization/reg.cpp",
"mlpp/softmax_net/softmax_net.cpp",
"mlpp/softmax_reg/softmax_reg.cpp",
"mlpp/stat/stat.cpp",
"mlpp/svc/svc.cpp",
"mlpp/tanh_reg/tanh_reg.cpp",
"mlpp/transforms/transforms.cpp",
"mlpp/uni_lin_reg/uni_lin_reg.cpp",
"mlpp/utilities/utilities.cpp",
"mlpp/wgan/wgan.cpp",
"mlpp/wgan/wgan_old.cpp",
"mlpp/output_layer/output_layer_old.cpp",
"mlpp/multi_output_layer/multi_output_layer_old.cpp",
"mlpp/hidden_layer/hidden_layer_old.cpp",
"mlpp/mlp/mlp_old.cpp",
"mlpp/pca/pca_old.cpp",
"mlpp/uni_lin_reg/uni_lin_reg_old.cpp",
"mlpp/outlier_finder/outlier_finder_old.cpp",
"mlpp/probit_reg/probit_reg_old.cpp",
"mlpp/svc/svc_old.cpp",
"mlpp/softmax_reg/softmax_reg_old.cpp",
"mlpp/auto_encoder/auto_encoder_old.cpp",
"mlpp/tanh_reg/tanh_reg_old.cpp",
"mlpp/softmax_net/softmax_net_old.cpp",
"mlpp/multinomial_nb/multinomial_nb_old.cpp",
"mlpp/mann/mann_old.cpp",
"mlpp/log_reg/log_reg_old.cpp",
"mlpp/lin_reg/lin_reg_old.cpp",
"mlpp/gaussian_nb/gaussian_nb_old.cpp",
"mlpp/gan/gan_old.cpp",
"mlpp/exp_reg/exp_reg_old.cpp",
"mlpp/dual_svc/dual_svc_old.cpp",
"mlpp/c_log_log_reg/c_log_log_reg_old.cpp",
"mlpp/bernoulli_nb/bernoulli_nb_old.cpp",
"mlpp/ann/ann_old.cpp",
"mlpp/numerical_analysis/numerical_analysis_old.cpp",
"mlpp/regularization/reg_old.cpp",
"mlpp/gauss_markov_checker/gauss_markov_checker_old.cpp",
"mlpp/utilities/utilities_old.cpp",
"mlpp/transforms/transforms_old.cpp",
"mlpp/stat/stat_old.cpp",
"mlpp/lin_alg/lin_alg_old.cpp",
"mlpp/hypothesis_testing/hypothesis_testing_old.cpp",
"mlpp/data/data_old.cpp",
"mlpp/cost/cost_old.cpp",
"mlpp/convolutions/convolutions_old.cpp",
"mlpp/activation/activation_old.cpp",
"test/mlpp_tests.cpp",
]
module_env.add_source_files(env.modules_sources, sources)