├── .gitignore ├── LICENSE.txt ├── README.md ├── benchmarks └── massive_spring_pendulum.py ├── bin └── jet ├── docs └── img │ └── jet_logo.png ├── jet ├── __init__.py ├── burn.py ├── compressor.py ├── config.py ├── exhaust.py ├── expander.py ├── helpers.py ├── include │ ├── armadillo.h │ └── supportlib.h ├── intake.py ├── jit.py ├── post_install │ ├── install_armadillo.py │ ├── install_dependencies.sh │ └── post_install.py ├── thirdparty │ ├── armadillo │ │ ├── ArmadilloConfig.cmake │ │ ├── ArmadilloConfigVersion.cmake │ │ ├── CMakeLists.txt │ │ ├── InstallFiles │ │ │ ├── ArmadilloConfig.cmake │ │ │ └── ArmadilloConfigVersion.cmake │ │ ├── LICENSE.txt │ │ ├── README.txt │ │ ├── armadillo_icon.png │ │ ├── armadillo_joss_2016.pdf │ │ ├── armadillo_nicta_2010.pdf │ │ ├── cmake_aux │ │ │ ├── InstallFiles │ │ │ │ ├── ArmadilloConfig.cmake.in │ │ │ │ └── ArmadilloConfigVersion.cmake.in │ │ │ └── Modules │ │ │ │ ├── ARMA_FindACML.cmake │ │ │ │ ├── ARMA_FindACMLMP.cmake │ │ │ │ ├── ARMA_FindARPACK.cmake │ │ │ │ ├── ARMA_FindATLAS.cmake │ │ │ │ ├── ARMA_FindBLAS.cmake │ │ │ │ ├── ARMA_FindLAPACK.cmake │ │ │ │ ├── ARMA_FindMKL.cmake │ │ │ │ ├── ARMA_FindOpenBLAS.cmake │ │ │ │ └── ARMA_FindSuperLU5.cmake │ │ ├── configure │ │ ├── docs.html │ │ ├── examples │ │ │ ├── Makefile.cmake │ │ │ ├── example1.cpp │ │ │ ├── example1_win64.README.txt │ │ │ ├── example1_win64.sln │ │ │ ├── example1_win64.vcxproj │ │ │ └── lib_win64 │ │ │ │ └── README.txt │ │ ├── include │ │ │ ├── armadillo │ │ │ └── armadillo_bits │ │ │ │ ├── BaseCube_bones.hpp │ │ │ │ ├── BaseCube_meat.hpp │ │ │ │ ├── Base_bones.hpp │ │ │ │ ├── Base_meat.hpp │ │ │ │ ├── Col_bones.hpp │ │ │ │ ├── Col_meat.hpp │ │ │ │ ├── Cube_bones.hpp │ │ │ │ ├── Cube_meat.hpp │ │ │ │ ├── GenCube_bones.hpp │ │ │ │ ├── GenCube_meat.hpp │ │ │ │ ├── GenSpecialiser.hpp │ │ │ │ ├── Gen_bones.hpp │ │ │ │ ├── Gen_meat.hpp │ │ │ │ ├── GlueCube_bones.hpp │ │ │ │ ├── GlueCube_meat.hpp │ │ │ │ ├── Glue_bones.hpp │ │ │ │ ├── Glue_meat.hpp │ │ │ │ ├── Mat_bones.hpp │ │ │ │ ├── Mat_meat.hpp │ │ │ │ ├── OpCube_bones.hpp │ │ │ │ ├── OpCube_meat.hpp │ │ │ │ ├── Op_bones.hpp │ │ │ │ ├── Op_meat.hpp │ │ │ │ ├── Proxy.hpp │ │ │ │ ├── ProxyCube.hpp │ │ │ │ ├── Row_bones.hpp │ │ │ │ ├── Row_meat.hpp │ │ │ │ ├── SizeCube_bones.hpp │ │ │ │ ├── SizeCube_meat.hpp │ │ │ │ ├── SizeMat_bones.hpp │ │ │ │ ├── SizeMat_meat.hpp │ │ │ │ ├── SpBase_bones.hpp │ │ │ │ ├── SpBase_meat.hpp │ │ │ │ ├── SpCol_bones.hpp │ │ │ │ ├── SpCol_meat.hpp │ │ │ │ ├── SpGlue_bones.hpp │ │ │ │ ├── SpGlue_meat.hpp │ │ │ │ ├── SpMat_bones.hpp │ │ │ │ ├── SpMat_iterators_meat.hpp │ │ │ │ ├── SpMat_meat.hpp │ │ │ │ ├── SpOp_bones.hpp │ │ │ │ ├── SpOp_meat.hpp │ │ │ │ ├── SpProxy.hpp │ │ │ │ ├── SpRow_bones.hpp │ │ │ │ ├── SpRow_meat.hpp │ │ │ │ ├── SpSubview_bones.hpp │ │ │ │ ├── SpSubview_iterators_meat.hpp │ │ │ │ ├── SpSubview_meat.hpp │ │ │ │ ├── SpValProxy_bones.hpp │ │ │ │ ├── SpValProxy_meat.hpp │ │ │ │ ├── access.hpp │ │ │ │ ├── arma_cmath.hpp │ │ │ │ ├── arma_config.hpp │ │ │ │ ├── arma_forward.hpp │ │ │ │ ├── arma_ostream_bones.hpp │ │ │ │ ├── arma_ostream_meat.hpp │ │ │ │ ├── arma_rng.hpp │ │ │ │ ├── arma_rng_cxx11.hpp │ │ │ │ ├── arma_rng_cxx98.hpp │ │ │ │ ├── arma_static_check.hpp │ │ │ │ ├── arma_str.hpp │ │ │ │ ├── arma_version.hpp │ │ │ │ ├── arrayops_bones.hpp │ │ │ │ ├── arrayops_meat.hpp │ │ │ │ ├── auxlib_bones.hpp │ │ │ │ ├── auxlib_meat.hpp │ │ │ │ ├── compiler_setup.hpp │ │ │ │ ├── compiler_setup_post.hpp │ │ │ │ ├── cond_rel_bones.hpp │ │ │ │ ├── cond_rel_meat.hpp │ │ │ │ ├── config.hpp │ │ │ │ ├── config.hpp.cmake │ │ │ │ ├── constants.hpp │ │ │ │ ├── constants_old.hpp │ │ │ │ ├── debug.hpp │ │ │ │ ├── def_arpack.hpp │ │ │ │ ├── def_atlas.hpp │ │ │ │ ├── def_blas.hpp │ │ │ │ ├── def_hdf5.hpp │ │ │ │ ├── def_lapack.hpp │ │ │ │ ├── def_superlu.hpp │ │ │ │ ├── diagmat_proxy.hpp │ │ │ │ ├── diagview_bones.hpp │ │ │ │ ├── diagview_meat.hpp │ │ │ │ ├── diskio_bones.hpp │ │ │ │ ├── diskio_meat.hpp │ │ │ │ ├── distr_param.hpp │ │ │ │ ├── eGlueCube_bones.hpp │ │ │ │ ├── eGlueCube_meat.hpp │ │ │ │ ├── eGlue_bones.hpp │ │ │ │ ├── eGlue_meat.hpp │ │ │ │ ├── eOpCube_bones.hpp │ │ │ │ ├── eOpCube_meat.hpp │ │ │ │ ├── eOp_bones.hpp │ │ │ │ ├── eOp_meat.hpp │ │ │ │ ├── eglue_core_bones.hpp │ │ │ │ ├── eglue_core_meat.hpp │ │ │ │ ├── eop_aux.hpp │ │ │ │ ├── eop_core_bones.hpp │ │ │ │ ├── eop_core_meat.hpp │ │ │ │ ├── fft_engine.hpp │ │ │ │ ├── field_bones.hpp │ │ │ │ ├── field_meat.hpp │ │ │ │ ├── fn_accu.hpp │ │ │ │ ├── fn_all.hpp │ │ │ │ ├── fn_any.hpp │ │ │ │ ├── fn_approx_equal.hpp │ │ │ │ ├── fn_as_scalar.hpp │ │ │ │ ├── fn_chol.hpp │ │ │ │ ├── fn_clamp.hpp │ │ │ │ ├── fn_cond.hpp │ │ │ │ ├── fn_conv.hpp │ │ │ │ ├── fn_conv_to.hpp │ │ │ │ ├── fn_cor.hpp │ │ │ │ ├── fn_cov.hpp │ │ │ │ ├── fn_cross.hpp │ │ │ │ ├── fn_cumprod.hpp │ │ │ │ ├── fn_cumsum.hpp │ │ │ │ ├── fn_det.hpp │ │ │ │ ├── fn_diagmat.hpp │ │ │ │ ├── fn_diagvec.hpp │ │ │ │ ├── fn_diff.hpp │ │ │ │ ├── fn_dot.hpp │ │ │ │ ├── fn_eig_gen.hpp │ │ │ │ ├── fn_eig_pair.hpp │ │ │ │ ├── fn_eig_sym.hpp │ │ │ │ ├── fn_eigs_gen.hpp │ │ │ │ ├── fn_eigs_sym.hpp │ │ │ │ ├── fn_elem.hpp │ │ │ │ ├── fn_eps.hpp │ │ │ │ ├── fn_expmat.hpp │ │ │ │ ├── fn_eye.hpp │ │ │ │ ├── fn_fft.hpp │ │ │ │ ├── fn_fft2.hpp │ │ │ │ ├── fn_find.hpp │ │ │ │ ├── fn_find_unique.hpp │ │ │ │ ├── fn_flip.hpp │ │ │ │ ├── fn_hist.hpp │ │ │ │ ├── fn_histc.hpp │ │ │ │ ├── fn_index_max.hpp │ │ │ │ ├── fn_index_min.hpp │ │ │ │ ├── fn_inplace_strans.hpp │ │ │ │ ├── fn_inplace_trans.hpp │ │ │ │ ├── fn_interp1.hpp │ │ │ │ ├── fn_inv.hpp │ │ │ │ ├── fn_join.hpp │ │ │ │ ├── fn_kmeans.hpp │ │ │ │ ├── fn_kron.hpp │ │ │ │ ├── fn_log_det.hpp │ │ │ │ ├── fn_logmat.hpp │ │ │ │ ├── fn_lu.hpp │ │ │ │ ├── fn_max.hpp │ │ │ │ ├── fn_mean.hpp │ │ │ │ ├── fn_median.hpp │ │ │ │ ├── fn_min.hpp │ │ │ │ ├── fn_misc.hpp │ │ │ │ ├── fn_n_unique.hpp │ │ │ │ ├── fn_nonzeros.hpp │ │ │ │ ├── fn_norm.hpp │ │ │ │ ├── fn_normalise.hpp │ │ │ │ ├── fn_numel.hpp │ │ │ │ ├── fn_ones.hpp │ │ │ │ ├── fn_orth_null.hpp │ │ │ │ ├── fn_pinv.hpp │ │ │ │ ├── fn_princomp.hpp │ │ │ │ ├── fn_prod.hpp │ │ │ │ ├── fn_qr.hpp │ │ │ │ ├── fn_qz.hpp │ │ │ │ ├── fn_randg.hpp │ │ │ │ ├── fn_randi.hpp │ │ │ │ ├── fn_randn.hpp │ │ │ │ ├── fn_randu.hpp │ │ │ │ ├── fn_rank.hpp │ │ │ │ ├── fn_regspace.hpp │ │ │ │ ├── fn_repmat.hpp │ │ │ │ ├── fn_reshape.hpp │ │ │ │ ├── fn_resize.hpp │ │ │ │ ├── fn_schur.hpp │ │ │ │ ├── fn_shift.hpp │ │ │ │ ├── fn_shuffle.hpp │ │ │ │ ├── fn_size.hpp │ │ │ │ ├── fn_solve.hpp │ │ │ │ ├── fn_sort.hpp │ │ │ │ ├── fn_sort_index.hpp │ │ │ │ ├── fn_speye.hpp │ │ │ │ ├── fn_spones.hpp │ │ │ │ ├── fn_sprandn.hpp │ │ │ │ ├── fn_sprandu.hpp │ │ │ │ ├── fn_spsolve.hpp │ │ │ │ ├── fn_sqrtmat.hpp │ │ │ │ ├── fn_stddev.hpp │ │ │ │ ├── fn_strans.hpp │ │ │ │ ├── fn_sum.hpp │ │ │ │ ├── fn_svd.hpp │ │ │ │ ├── fn_svds.hpp │ │ │ │ ├── fn_syl_lyap.hpp │ │ │ │ ├── fn_symmat.hpp │ │ │ │ ├── fn_toeplitz.hpp │ │ │ │ ├── fn_trace.hpp │ │ │ │ ├── fn_trans.hpp │ │ │ │ ├── fn_trapz.hpp │ │ │ │ ├── fn_trig.hpp │ │ │ │ ├── fn_trimat.hpp │ │ │ │ ├── fn_trunc_exp.hpp │ │ │ │ ├── fn_trunc_log.hpp │ │ │ │ ├── fn_unique.hpp │ │ │ │ ├── fn_var.hpp │ │ │ │ ├── fn_vectorise.hpp │ │ │ │ ├── fn_zeros.hpp │ │ │ │ ├── glue_conv_bones.hpp │ │ │ │ ├── glue_conv_meat.hpp │ │ │ │ ├── glue_cor_bones.hpp │ │ │ │ ├── glue_cor_meat.hpp │ │ │ │ ├── glue_cov_bones.hpp │ │ │ │ ├── glue_cov_meat.hpp │ │ │ │ ├── glue_cross_bones.hpp │ │ │ │ ├── glue_cross_meat.hpp │ │ │ │ ├── glue_hist_bones.hpp │ │ │ │ ├── glue_hist_meat.hpp │ │ │ │ ├── glue_histc_bones.hpp │ │ │ │ ├── glue_histc_meat.hpp │ │ │ │ ├── glue_join_bones.hpp │ │ │ │ ├── glue_join_meat.hpp │ │ │ │ ├── glue_kron_bones.hpp │ │ │ │ ├── glue_kron_meat.hpp │ │ │ │ ├── glue_max_bones.hpp │ │ │ │ ├── glue_max_meat.hpp │ │ │ │ ├── glue_min_bones.hpp │ │ │ │ ├── glue_min_meat.hpp │ │ │ │ ├── glue_mixed_bones.hpp │ │ │ │ ├── glue_mixed_meat.hpp │ │ │ │ ├── glue_relational_bones.hpp │ │ │ │ ├── glue_relational_meat.hpp │ │ │ │ ├── glue_solve_bones.hpp │ │ │ │ ├── glue_solve_meat.hpp │ │ │ │ ├── glue_times_bones.hpp │ │ │ │ ├── glue_times_meat.hpp │ │ │ │ ├── glue_toeplitz_bones.hpp │ │ │ │ ├── glue_toeplitz_meat.hpp │ │ │ │ ├── glue_trapz_bones.hpp │ │ │ │ ├── glue_trapz_meat.hpp │ │ │ │ ├── gmm_diag_bones.hpp │ │ │ │ ├── gmm_diag_meat.hpp │ │ │ │ ├── gmm_misc_bones.hpp │ │ │ │ ├── gmm_misc_meat.hpp │ │ │ │ ├── hdf5_misc.hpp │ │ │ │ ├── include_atlas.hpp │ │ │ │ ├── include_hdf5.hpp │ │ │ │ ├── include_superlu.hpp │ │ │ │ ├── injector_bones.hpp │ │ │ │ ├── injector_meat.hpp │ │ │ │ ├── memory.hpp │ │ │ │ ├── mtGlueCube_bones.hpp │ │ │ │ ├── mtGlueCube_meat.hpp │ │ │ │ ├── mtGlue_bones.hpp │ │ │ │ ├── mtGlue_meat.hpp │ │ │ │ ├── mtOpCube_bones.hpp │ │ │ │ ├── mtOpCube_meat.hpp │ │ │ │ ├── mtOp_bones.hpp │ │ │ │ ├── mtOp_meat.hpp │ │ │ │ ├── mtSpOp_bones.hpp │ │ │ │ ├── mtSpOp_meat.hpp │ │ │ │ ├── mul_gemm.hpp │ │ │ │ ├── mul_gemm_mixed.hpp │ │ │ │ ├── mul_gemv.hpp │ │ │ │ ├── mul_herk.hpp │ │ │ │ ├── mul_syrk.hpp │ │ │ │ ├── newarp_DenseGenMatProd_bones.hpp │ │ │ │ ├── newarp_DenseGenMatProd_meat.hpp │ │ │ │ ├── newarp_DoubleShiftQR_bones.hpp │ │ │ │ ├── newarp_DoubleShiftQR_meat.hpp │ │ │ │ ├── newarp_EigsSelect.hpp │ │ │ │ ├── newarp_GenEigsSolver_bones.hpp │ │ │ │ ├── newarp_GenEigsSolver_meat.hpp │ │ │ │ ├── newarp_SortEigenvalue.hpp │ │ │ │ ├── newarp_SparseGenMatProd_bones.hpp │ │ │ │ ├── newarp_SparseGenMatProd_meat.hpp │ │ │ │ ├── newarp_SymEigsSolver_bones.hpp │ │ │ │ ├── newarp_SymEigsSolver_meat.hpp │ │ │ │ ├── newarp_TridiagEigen_bones.hpp │ │ │ │ ├── newarp_TridiagEigen_meat.hpp │ │ │ │ ├── newarp_UpperHessenbergEigen_bones.hpp │ │ │ │ ├── newarp_UpperHessenbergEigen_meat.hpp │ │ │ │ ├── newarp_UpperHessenbergQR_bones.hpp │ │ │ │ ├── newarp_UpperHessenbergQR_meat.hpp │ │ │ │ ├── newarp_cx_attrib.hpp │ │ │ │ ├── op_all_bones.hpp │ │ │ │ ├── op_all_meat.hpp │ │ │ │ ├── op_any_bones.hpp │ │ │ │ ├── op_any_meat.hpp │ │ │ │ ├── op_chol_bones.hpp │ │ │ │ ├── op_chol_meat.hpp │ │ │ │ ├── op_clamp_bones.hpp │ │ │ │ ├── op_clamp_meat.hpp │ │ │ │ ├── op_cor_bones.hpp │ │ │ │ ├── op_cor_meat.hpp │ │ │ │ ├── op_cov_bones.hpp │ │ │ │ ├── op_cov_meat.hpp │ │ │ │ ├── op_cumprod_bones.hpp │ │ │ │ ├── op_cumprod_meat.hpp │ │ │ │ ├── op_cumsum_bones.hpp │ │ │ │ ├── op_cumsum_meat.hpp │ │ │ │ ├── op_cx_scalar_bones.hpp │ │ │ │ ├── op_cx_scalar_meat.hpp │ │ │ │ ├── op_diagmat_bones.hpp │ │ │ │ ├── op_diagmat_meat.hpp │ │ │ │ ├── op_diagvec_bones.hpp │ │ │ │ ├── op_diagvec_meat.hpp │ │ │ │ ├── op_diff_bones.hpp │ │ │ │ ├── op_diff_meat.hpp │ │ │ │ ├── op_dot_bones.hpp │ │ │ │ ├── op_dot_meat.hpp │ │ │ │ ├── op_dotext_bones.hpp │ │ │ │ ├── op_dotext_meat.hpp │ │ │ │ ├── op_expmat_bones.hpp │ │ │ │ ├── op_expmat_meat.hpp │ │ │ │ ├── op_fft_bones.hpp │ │ │ │ ├── op_fft_meat.hpp │ │ │ │ ├── op_find_bones.hpp │ │ │ │ ├── op_find_meat.hpp │ │ │ │ ├── op_find_unique_bones.hpp │ │ │ │ ├── op_find_unique_meat.hpp │ │ │ │ ├── op_flip_bones.hpp │ │ │ │ ├── op_flip_meat.hpp │ │ │ │ ├── op_hist_bones.hpp │ │ │ │ ├── op_hist_meat.hpp │ │ │ │ ├── op_htrans_bones.hpp │ │ │ │ ├── op_htrans_meat.hpp │ │ │ │ ├── op_index_max_bones.hpp │ │ │ │ ├── op_index_max_meat.hpp │ │ │ │ ├── op_index_min_bones.hpp │ │ │ │ ├── op_index_min_meat.hpp │ │ │ │ ├── op_inv_bones.hpp │ │ │ │ ├── op_inv_meat.hpp │ │ │ │ ├── op_logmat_bones.hpp │ │ │ │ ├── op_logmat_meat.hpp │ │ │ │ ├── op_max_bones.hpp │ │ │ │ ├── op_max_meat.hpp │ │ │ │ ├── op_mean_bones.hpp │ │ │ │ ├── op_mean_meat.hpp │ │ │ │ ├── op_median_bones.hpp │ │ │ │ ├── op_median_meat.hpp │ │ │ │ ├── op_min_bones.hpp │ │ │ │ ├── op_min_meat.hpp │ │ │ │ ├── op_misc_bones.hpp │ │ │ │ ├── op_misc_meat.hpp │ │ │ │ ├── op_nonzeros_bones.hpp │ │ │ │ ├── op_nonzeros_meat.hpp │ │ │ │ ├── op_norm_bones.hpp │ │ │ │ ├── op_norm_meat.hpp │ │ │ │ ├── op_normalise_bones.hpp │ │ │ │ ├── op_normalise_meat.hpp │ │ │ │ ├── op_orth_null_bones.hpp │ │ │ │ ├── op_orth_null_meat.hpp │ │ │ │ ├── op_pinv_bones.hpp │ │ │ │ ├── op_pinv_meat.hpp │ │ │ │ ├── op_princomp_bones.hpp │ │ │ │ ├── op_princomp_meat.hpp │ │ │ │ ├── op_prod_bones.hpp │ │ │ │ ├── op_prod_meat.hpp │ │ │ │ ├── op_relational_bones.hpp │ │ │ │ ├── op_relational_meat.hpp │ │ │ │ ├── op_repmat_bones.hpp │ │ │ │ ├── op_repmat_meat.hpp │ │ │ │ ├── op_reshape_bones.hpp │ │ │ │ ├── op_reshape_meat.hpp │ │ │ │ ├── op_resize_bones.hpp │ │ │ │ ├── op_resize_meat.hpp │ │ │ │ ├── op_shift_bones.hpp │ │ │ │ ├── op_shift_meat.hpp │ │ │ │ ├── op_shuffle_bones.hpp │ │ │ │ ├── op_shuffle_meat.hpp │ │ │ │ ├── op_sort_bones.hpp │ │ │ │ ├── op_sort_index_bones.hpp │ │ │ │ ├── op_sort_index_meat.hpp │ │ │ │ ├── op_sort_meat.hpp │ │ │ │ ├── op_sqrtmat_bones.hpp │ │ │ │ ├── op_sqrtmat_meat.hpp │ │ │ │ ├── op_stddev_bones.hpp │ │ │ │ ├── op_stddev_meat.hpp │ │ │ │ ├── op_strans_bones.hpp │ │ │ │ ├── op_strans_meat.hpp │ │ │ │ ├── op_sum_bones.hpp │ │ │ │ ├── op_sum_meat.hpp │ │ │ │ ├── op_symmat_bones.hpp │ │ │ │ ├── op_symmat_meat.hpp │ │ │ │ ├── op_toeplitz_bones.hpp │ │ │ │ ├── op_toeplitz_meat.hpp │ │ │ │ ├── op_trimat_bones.hpp │ │ │ │ ├── op_trimat_meat.hpp │ │ │ │ ├── op_unique_bones.hpp │ │ │ │ ├── op_unique_meat.hpp │ │ │ │ ├── op_var_bones.hpp │ │ │ │ ├── op_var_meat.hpp │ │ │ │ ├── op_vectorise_bones.hpp │ │ │ │ ├── op_vectorise_meat.hpp │ │ │ │ ├── operator_cube_div.hpp │ │ │ │ ├── operator_cube_minus.hpp │ │ │ │ ├── operator_cube_plus.hpp │ │ │ │ ├── operator_cube_relational.hpp │ │ │ │ ├── operator_cube_schur.hpp │ │ │ │ ├── operator_cube_times.hpp │ │ │ │ ├── operator_div.hpp │ │ │ │ ├── operator_minus.hpp │ │ │ │ ├── operator_ostream.hpp │ │ │ │ ├── operator_plus.hpp │ │ │ │ ├── operator_relational.hpp │ │ │ │ ├── operator_schur.hpp │ │ │ │ ├── operator_times.hpp │ │ │ │ ├── podarray_bones.hpp │ │ │ │ ├── podarray_meat.hpp │ │ │ │ ├── promote_type.hpp │ │ │ │ ├── restrictors.hpp │ │ │ │ ├── running_stat_bones.hpp │ │ │ │ ├── running_stat_meat.hpp │ │ │ │ ├── running_stat_vec_bones.hpp │ │ │ │ ├── running_stat_vec_meat.hpp │ │ │ │ ├── sp_auxlib_bones.hpp │ │ │ │ ├── sp_auxlib_meat.hpp │ │ │ │ ├── span.hpp │ │ │ │ ├── spdiagview_bones.hpp │ │ │ │ ├── spdiagview_meat.hpp │ │ │ │ ├── spglue_join_bones.hpp │ │ │ │ ├── spglue_join_meat.hpp │ │ │ │ ├── spglue_minus_bones.hpp │ │ │ │ ├── spglue_minus_meat.hpp │ │ │ │ ├── spglue_plus_bones.hpp │ │ │ │ ├── spglue_plus_meat.hpp │ │ │ │ ├── spglue_times_bones.hpp │ │ │ │ ├── spglue_times_meat.hpp │ │ │ │ ├── spop_diagmat_bones.hpp │ │ │ │ ├── spop_diagmat_meat.hpp │ │ │ │ ├── spop_htrans_bones.hpp │ │ │ │ ├── spop_htrans_meat.hpp │ │ │ │ ├── spop_max_bones.hpp │ │ │ │ ├── spop_max_meat.hpp │ │ │ │ ├── spop_mean_bones.hpp │ │ │ │ ├── spop_mean_meat.hpp │ │ │ │ ├── spop_min_bones.hpp │ │ │ │ ├── spop_min_meat.hpp │ │ │ │ ├── spop_misc_bones.hpp │ │ │ │ ├── spop_misc_meat.hpp │ │ │ │ ├── spop_strans_bones.hpp │ │ │ │ ├── spop_strans_meat.hpp │ │ │ │ ├── spop_sum_bones.hpp │ │ │ │ ├── spop_sum_meat.hpp │ │ │ │ ├── spop_var_bones.hpp │ │ │ │ ├── spop_var_meat.hpp │ │ │ │ ├── strip.hpp │ │ │ │ ├── subview_bones.hpp │ │ │ │ ├── subview_cube_bones.hpp │ │ │ │ ├── subview_cube_each_bones.hpp │ │ │ │ ├── subview_cube_each_meat.hpp │ │ │ │ ├── subview_cube_meat.hpp │ │ │ │ ├── subview_each_bones.hpp │ │ │ │ ├── subview_each_meat.hpp │ │ │ │ ├── subview_elem1_bones.hpp │ │ │ │ ├── subview_elem1_meat.hpp │ │ │ │ ├── subview_elem2_bones.hpp │ │ │ │ ├── subview_elem2_meat.hpp │ │ │ │ ├── subview_field_bones.hpp │ │ │ │ ├── subview_field_meat.hpp │ │ │ │ ├── subview_meat.hpp │ │ │ │ ├── traits.hpp │ │ │ │ ├── typedef_elem.hpp │ │ │ │ ├── typedef_elem_check.hpp │ │ │ │ ├── typedef_mat.hpp │ │ │ │ ├── typedef_mat_fixed.hpp │ │ │ │ ├── unwrap.hpp │ │ │ │ ├── unwrap_cube.hpp │ │ │ │ ├── unwrap_spmat.hpp │ │ │ │ ├── upgrade_val.hpp │ │ │ │ ├── wall_clock_bones.hpp │ │ │ │ ├── wall_clock_meat.hpp │ │ │ │ ├── wrapper_arpack.hpp │ │ │ │ ├── wrapper_atlas.hpp │ │ │ │ ├── wrapper_blas.hpp │ │ │ │ ├── wrapper_lapack.hpp │ │ │ │ ├── wrapper_superlu.hpp │ │ │ │ ├── xtrans_mat_bones.hpp │ │ │ │ ├── xtrans_mat_meat.hpp │ │ │ │ ├── xvec_htrans_bones.hpp │ │ │ │ └── xvec_htrans_meat.hpp │ │ ├── index.html │ │ ├── mex_interface │ │ │ ├── README.txt │ │ │ ├── armaMex.hpp │ │ │ ├── armaMex_demo.cpp │ │ │ ├── armaMex_documentation.pdf │ │ │ ├── inData.mat │ │ │ ├── readMatTest.cpp │ │ │ └── run_demo.m │ │ ├── misc │ │ │ ├── blank_footer.html │ │ │ ├── doxygen.config │ │ │ └── main.doxy │ │ ├── rcpp_armadillo_csda_2014.pdf │ │ ├── src │ │ │ └── wrapper.cpp │ │ └── tests │ │ │ ├── README.txt │ │ │ ├── attributes.cpp │ │ │ ├── bounds.cpp │ │ │ ├── catch.hpp │ │ │ ├── decomp_eig_gen.cpp │ │ │ ├── decomp_eig_sym.cpp │ │ │ ├── expr_elem.cpp │ │ │ ├── expr_misc.cpp │ │ │ ├── fn_abs.cpp │ │ │ ├── fn_accu.cpp │ │ │ ├── fn_all.cpp │ │ │ ├── fn_any.cpp │ │ │ ├── fn_as_scalar.cpp │ │ │ ├── fn_clamp.cpp │ │ │ ├── fn_cond.cpp │ │ │ ├── fn_conj.cpp │ │ │ ├── fn_conv.cpp │ │ │ ├── fn_conv_to.cpp │ │ │ ├── fn_cor.cpp │ │ │ ├── fn_cov.cpp │ │ │ ├── fn_cross.cpp │ │ │ ├── fn_cumprod.cpp │ │ │ ├── fn_cumsum.cpp │ │ │ ├── fn_det.cpp │ │ │ ├── fn_diagmat.cpp │ │ │ ├── fn_diagvec.cpp │ │ │ ├── fn_diff.cpp │ │ │ ├── fn_dot.cpp │ │ │ ├── fn_eps.cpp │ │ │ ├── fn_expmat.cpp │ │ │ ├── fn_find.cpp │ │ │ ├── fn_find_finite.cpp │ │ │ ├── fn_find_nonfinite.cpp │ │ │ ├── fn_find_unique.cpp │ │ │ ├── fn_flip.cpp │ │ │ ├── fn_interp1.cpp │ │ │ ├── fn_is_finite.cpp │ │ │ ├── fn_sum.cpp │ │ │ ├── fn_symmat.cpp │ │ │ ├── fn_trace.cpp │ │ │ ├── fn_trans.cpp │ │ │ ├── fn_vectorise.cpp │ │ │ ├── gen_linspace.cpp │ │ │ ├── gen_ones.cpp │ │ │ ├── gen_randu.cpp │ │ │ ├── gen_zeros.cpp │ │ │ ├── init_auxmem.cpp │ │ │ ├── init_fill.cpp │ │ │ ├── init_misc.cpp │ │ │ ├── instantiation.cpp │ │ │ ├── main.cpp │ │ │ ├── mat_minus.cpp │ │ │ ├── mat_mul_cx.cpp │ │ │ ├── mat_mul_real.cpp │ │ │ ├── mat_neg.cpp │ │ │ └── mat_plus.cpp │ ├── cppimport │ │ ├── LICENSE │ │ ├── README.md │ │ ├── cppimport │ │ │ ├── __init__.py │ │ │ └── import_hook.py │ │ ├── setup.py │ │ └── tests │ │ │ ├── apackage │ │ │ ├── __init__.py │ │ │ └── inner │ │ │ │ └── __init__.py │ │ │ ├── mymodule.cpp │ │ │ └── test.py │ └── pybind11 │ │ ├── .appveyor.yml │ │ ├── .travis.yml │ │ ├── CMakeLists.txt │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── MANIFEST.in │ │ ├── README.md │ │ ├── docs │ │ ├── _static │ │ │ └── theme_overrides.css │ │ ├── advanced.rst │ │ ├── basics.rst │ │ ├── benchmark.py │ │ ├── benchmark.rst │ │ ├── changelog.rst │ │ ├── classes.rst │ │ ├── compiling.rst │ │ ├── conf.py │ │ ├── faq.rst │ │ ├── index.rst │ │ ├── intro.rst │ │ ├── limitations.rst │ │ ├── pybind11-logo.png │ │ ├── pybind11_vs_boost_python1.png │ │ ├── pybind11_vs_boost_python1.svg │ │ ├── pybind11_vs_boost_python2.png │ │ ├── pybind11_vs_boost_python2.svg │ │ ├── reference.rst │ │ └── release.rst │ │ ├── example │ │ ├── CMakeLists.txt │ │ ├── eigen.cpp │ │ ├── eigen.py │ │ ├── eigen.ref │ │ ├── example.cpp │ │ ├── example.h │ │ ├── example1.cpp │ │ ├── example1.py │ │ ├── example1.ref │ │ ├── example10.cpp │ │ ├── example10.py │ │ ├── example10.ref │ │ ├── example11.cpp │ │ ├── example11.py │ │ ├── example11.ref │ │ ├── example12.cpp │ │ ├── example12.py │ │ ├── example12.ref │ │ ├── example13.cpp │ │ ├── example13.py │ │ ├── example13.ref │ │ ├── example14.cpp │ │ ├── example14.py │ │ ├── example14.ref │ │ ├── example15.cpp │ │ ├── example15.py │ │ ├── example15.ref │ │ ├── example16.cpp │ │ ├── example16.py │ │ ├── example16.ref │ │ ├── example17.cpp │ │ ├── example17.py │ │ ├── example17.ref │ │ ├── example2.cpp │ │ ├── example2.py │ │ ├── example2.ref │ │ ├── example3.cpp │ │ ├── example3.py │ │ ├── example3.ref │ │ ├── example4.cpp │ │ ├── example4.py │ │ ├── example4.ref │ │ ├── example5.cpp │ │ ├── example5.py │ │ ├── example5.ref │ │ ├── example6.cpp │ │ ├── example6.py │ │ ├── example6.ref │ │ ├── example7.cpp │ │ ├── example7.py │ │ ├── example7.ref │ │ ├── example8.cpp │ │ ├── example8.py │ │ ├── example8.ref │ │ ├── example9.cpp │ │ ├── example9.py │ │ ├── example9.ref │ │ ├── issues.cpp │ │ ├── issues.py │ │ ├── issues.ref │ │ ├── object.h │ │ └── run_test.py │ │ ├── include │ │ └── pybind11 │ │ │ ├── attr.h │ │ │ ├── cast.h │ │ │ ├── common.h │ │ │ ├── complex.h │ │ │ ├── descr.h │ │ │ ├── eigen.h │ │ │ ├── functional.h │ │ │ ├── numpy.h │ │ │ ├── operators.h │ │ │ ├── pybind11.h │ │ │ ├── pytypes.h │ │ │ ├── stl.h │ │ │ ├── stl_bind.h │ │ │ └── typeid.h │ │ ├── pybind11 │ │ ├── __init__.py │ │ └── _version.py │ │ ├── setup.cfg │ │ ├── setup.py │ │ └── tools │ │ ├── FindEigen3.cmake │ │ ├── FindPythonLibsNew.cmake │ │ └── mkdoc.py ├── utils.py └── version.py ├── setup.cfg └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/README.md -------------------------------------------------------------------------------- /benchmarks/massive_spring_pendulum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/benchmarks/massive_spring_pendulum.py -------------------------------------------------------------------------------- /bin/jet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/bin/jet -------------------------------------------------------------------------------- /docs/img/jet_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/docs/img/jet_logo.png -------------------------------------------------------------------------------- /jet/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/__init__.py -------------------------------------------------------------------------------- /jet/burn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/burn.py -------------------------------------------------------------------------------- /jet/compressor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/compressor.py -------------------------------------------------------------------------------- /jet/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/config.py -------------------------------------------------------------------------------- /jet/exhaust.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/exhaust.py -------------------------------------------------------------------------------- /jet/expander.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/expander.py -------------------------------------------------------------------------------- /jet/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/helpers.py -------------------------------------------------------------------------------- /jet/include/armadillo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/include/armadillo.h -------------------------------------------------------------------------------- /jet/include/supportlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/include/supportlib.h -------------------------------------------------------------------------------- /jet/intake.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/intake.py -------------------------------------------------------------------------------- /jet/jit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/jit.py -------------------------------------------------------------------------------- /jet/post_install/install_armadillo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/post_install/install_armadillo.py -------------------------------------------------------------------------------- /jet/post_install/install_dependencies.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/post_install/install_dependencies.sh -------------------------------------------------------------------------------- /jet/post_install/post_install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/post_install/post_install.py -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/ArmadilloConfig.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/ArmadilloConfig.cmake -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/ArmadilloConfigVersion.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/ArmadilloConfigVersion.cmake -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/CMakeLists.txt -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/InstallFiles/ArmadilloConfig.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/InstallFiles/ArmadilloConfig.cmake -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/InstallFiles/ArmadilloConfigVersion.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/InstallFiles/ArmadilloConfigVersion.cmake -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/LICENSE.txt -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/README.txt -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/armadillo_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/armadillo_icon.png -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/armadillo_joss_2016.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/armadillo_joss_2016.pdf -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/armadillo_nicta_2010.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/armadillo_nicta_2010.pdf -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/cmake_aux/InstallFiles/ArmadilloConfig.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/cmake_aux/InstallFiles/ArmadilloConfig.cmake.in -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/cmake_aux/InstallFiles/ArmadilloConfigVersion.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/cmake_aux/InstallFiles/ArmadilloConfigVersion.cmake.in -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/cmake_aux/Modules/ARMA_FindACML.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/cmake_aux/Modules/ARMA_FindACML.cmake -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/cmake_aux/Modules/ARMA_FindACMLMP.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/cmake_aux/Modules/ARMA_FindACMLMP.cmake -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/cmake_aux/Modules/ARMA_FindARPACK.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/cmake_aux/Modules/ARMA_FindARPACK.cmake -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/cmake_aux/Modules/ARMA_FindATLAS.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/cmake_aux/Modules/ARMA_FindATLAS.cmake -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/cmake_aux/Modules/ARMA_FindBLAS.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/cmake_aux/Modules/ARMA_FindBLAS.cmake -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/cmake_aux/Modules/ARMA_FindLAPACK.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/cmake_aux/Modules/ARMA_FindLAPACK.cmake -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/cmake_aux/Modules/ARMA_FindMKL.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/cmake_aux/Modules/ARMA_FindMKL.cmake -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/cmake_aux/Modules/ARMA_FindOpenBLAS.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/cmake_aux/Modules/ARMA_FindOpenBLAS.cmake -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/cmake_aux/Modules/ARMA_FindSuperLU5.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/cmake_aux/Modules/ARMA_FindSuperLU5.cmake -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/configure -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/docs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/docs.html -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/examples/Makefile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/examples/Makefile.cmake -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/examples/example1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/examples/example1.cpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/examples/example1_win64.README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/examples/example1_win64.README.txt -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/examples/example1_win64.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/examples/example1_win64.sln -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/examples/example1_win64.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/examples/example1_win64.vcxproj -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/examples/lib_win64/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/examples/lib_win64/README.txt -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/BaseCube_bones.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/BaseCube_bones.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/BaseCube_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/BaseCube_meat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/Base_bones.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/Base_bones.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/Base_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/Base_meat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/Col_bones.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/Col_bones.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/Col_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/Col_meat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/Cube_bones.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/Cube_bones.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/Cube_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/Cube_meat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/GenCube_bones.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/GenCube_bones.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/GenCube_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/GenCube_meat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/GenSpecialiser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/GenSpecialiser.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/Gen_bones.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/Gen_bones.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/Gen_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/Gen_meat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/GlueCube_bones.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/GlueCube_bones.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/GlueCube_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/GlueCube_meat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/Glue_bones.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/Glue_bones.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/Glue_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/Glue_meat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/Mat_bones.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/Mat_bones.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/Mat_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/Mat_meat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/OpCube_bones.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/OpCube_bones.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/OpCube_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/OpCube_meat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/Op_bones.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/Op_bones.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/Op_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/Op_meat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/Proxy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/Proxy.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/ProxyCube.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/ProxyCube.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/Row_bones.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/Row_bones.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/Row_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/Row_meat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/SizeCube_bones.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/SizeCube_bones.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/SizeCube_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/SizeCube_meat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/SizeMat_bones.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/SizeMat_bones.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/SizeMat_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/SizeMat_meat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/SpBase_bones.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/SpBase_bones.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/SpBase_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/SpBase_meat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/SpCol_bones.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/SpCol_bones.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/SpCol_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/SpCol_meat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/SpGlue_bones.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/SpGlue_bones.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/SpGlue_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/SpGlue_meat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/SpMat_bones.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/SpMat_bones.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/SpMat_iterators_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/SpMat_iterators_meat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/SpMat_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/SpMat_meat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/SpOp_bones.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/SpOp_bones.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/SpOp_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/SpOp_meat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/SpProxy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/SpProxy.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/SpRow_bones.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/SpRow_bones.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/SpRow_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/SpRow_meat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/SpSubview_bones.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/SpSubview_bones.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/SpSubview_iterators_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/SpSubview_iterators_meat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/SpSubview_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/SpSubview_meat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/SpValProxy_bones.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/SpValProxy_bones.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/SpValProxy_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/SpValProxy_meat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/access.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/access.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/arma_cmath.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/arma_cmath.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/arma_config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/arma_config.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/arma_forward.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/arma_forward.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/arma_ostream_bones.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/arma_ostream_bones.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/arma_ostream_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/arma_ostream_meat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/arma_rng.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/arma_rng.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/arma_rng_cxx11.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/arma_rng_cxx11.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/arma_rng_cxx98.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/arma_rng_cxx98.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/arma_static_check.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/arma_static_check.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/arma_str.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/arma_str.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/arma_version.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/arma_version.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/arrayops_bones.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/arrayops_bones.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/arrayops_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/arrayops_meat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/auxlib_bones.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/auxlib_bones.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/auxlib_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/auxlib_meat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/compiler_setup.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/compiler_setup.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/compiler_setup_post.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/compiler_setup_post.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/cond_rel_bones.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/cond_rel_bones.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/cond_rel_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/cond_rel_meat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/config.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/config.hpp.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/config.hpp.cmake -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/constants.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/constants.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/constants_old.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/constants_old.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/debug.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/debug.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/def_arpack.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/def_arpack.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/def_atlas.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/def_atlas.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/def_blas.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/def_blas.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/def_hdf5.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/def_hdf5.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/def_lapack.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/def_lapack.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/def_superlu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/def_superlu.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/diagmat_proxy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/diagmat_proxy.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/diagview_bones.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/diagview_bones.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/diagview_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/diagview_meat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/diskio_bones.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/diskio_bones.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/diskio_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/diskio_meat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/distr_param.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/distr_param.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/eGlueCube_bones.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/eGlueCube_bones.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/eGlueCube_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/eGlueCube_meat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/eGlue_bones.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/eGlue_bones.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/eGlue_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/eGlue_meat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/eOpCube_bones.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/eOpCube_bones.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/eOpCube_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/eOpCube_meat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/eOp_bones.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/eOp_bones.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/eOp_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/eOp_meat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/eglue_core_bones.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/eglue_core_bones.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/eglue_core_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/eglue_core_meat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/eop_aux.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/eop_aux.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/eop_core_bones.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/eop_core_bones.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/eop_core_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/eop_core_meat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/fft_engine.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/fft_engine.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/field_bones.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/field_bones.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/field_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/field_meat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/fn_accu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/fn_accu.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/fn_all.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/fn_all.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/fn_any.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/fn_any.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/fn_approx_equal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/fn_approx_equal.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/fn_as_scalar.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/fn_as_scalar.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/fn_chol.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/fn_chol.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/fn_clamp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/fn_clamp.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/fn_cond.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/fn_cond.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/fn_conv.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/fn_conv.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/fn_conv_to.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/fn_conv_to.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/fn_cor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/fn_cor.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/fn_cov.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/fn_cov.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/fn_cross.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/fn_cross.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/fn_cumprod.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/fn_cumprod.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/fn_cumsum.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/fn_cumsum.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/fn_det.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/fn_det.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/fn_diagmat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/fn_diagmat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/fn_diagvec.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/fn_diagvec.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/fn_diff.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/fn_diff.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/fn_dot.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/fn_dot.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/fn_eig_gen.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/fn_eig_gen.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/fn_eig_pair.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/fn_eig_pair.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/fn_eig_sym.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/fn_eig_sym.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/fn_eigs_gen.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/fn_eigs_gen.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/fn_eigs_sym.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/fn_eigs_sym.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/fn_elem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/fn_elem.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/fn_eps.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/fn_eps.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/fn_expmat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/fn_expmat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/fn_eye.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/fn_eye.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/fn_fft.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/fn_fft.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/fn_fft2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/fn_fft2.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/fn_find.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/fn_find.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/fn_find_unique.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/fn_find_unique.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/fn_flip.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/fn_flip.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/fn_hist.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/fn_hist.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/fn_histc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/fn_histc.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/fn_index_max.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/fn_index_max.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/fn_index_min.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/fn_index_min.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/fn_inplace_strans.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/fn_inplace_strans.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/fn_inplace_trans.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/fn_inplace_trans.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/fn_interp1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/fn_interp1.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/fn_inv.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/fn_inv.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/fn_join.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/fn_join.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/fn_kmeans.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/fn_kmeans.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/fn_kron.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/fn_kron.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/fn_log_det.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/fn_log_det.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/fn_logmat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/fn_logmat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/fn_lu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/fn_lu.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/fn_max.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/fn_max.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/fn_mean.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/fn_mean.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/fn_median.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/fn_median.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/fn_min.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/fn_min.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/fn_misc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/fn_misc.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/fn_n_unique.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/fn_n_unique.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/fn_nonzeros.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/fn_nonzeros.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/fn_norm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/fn_norm.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/fn_normalise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/fn_normalise.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/fn_numel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/fn_numel.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/fn_ones.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/fn_ones.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/fn_orth_null.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/fn_orth_null.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/fn_pinv.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/fn_pinv.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/fn_princomp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/fn_princomp.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/fn_prod.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/fn_prod.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/fn_qr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/fn_qr.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/fn_qz.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/fn_qz.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/fn_randg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/fn_randg.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/fn_randi.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/fn_randi.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/fn_randn.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/fn_randn.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/fn_randu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/fn_randu.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/fn_rank.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/fn_rank.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/fn_regspace.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/fn_regspace.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/fn_repmat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/fn_repmat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/fn_reshape.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/fn_reshape.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/fn_resize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/fn_resize.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/fn_schur.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/fn_schur.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/fn_shift.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/fn_shift.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/fn_shuffle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/fn_shuffle.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/fn_size.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/fn_size.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/fn_solve.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/fn_solve.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/fn_sort.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/fn_sort.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/fn_sort_index.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/fn_sort_index.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/fn_speye.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/fn_speye.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/fn_spones.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/fn_spones.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/fn_sprandn.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/fn_sprandn.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/fn_sprandu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/fn_sprandu.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/fn_spsolve.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/fn_spsolve.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/fn_sqrtmat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/fn_sqrtmat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/fn_stddev.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/fn_stddev.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/fn_strans.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/fn_strans.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/fn_sum.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/fn_sum.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/fn_svd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/fn_svd.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/fn_svds.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/fn_svds.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/fn_syl_lyap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/fn_syl_lyap.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/fn_symmat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/fn_symmat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/fn_toeplitz.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/fn_toeplitz.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/fn_trace.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/fn_trace.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/fn_trans.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/fn_trans.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/fn_trapz.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/fn_trapz.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/fn_trig.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/fn_trig.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/fn_trimat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/fn_trimat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/fn_trunc_exp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/fn_trunc_exp.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/fn_trunc_log.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/fn_trunc_log.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/fn_unique.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/fn_unique.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/fn_var.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/fn_var.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/fn_vectorise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/fn_vectorise.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/fn_zeros.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/fn_zeros.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/glue_conv_bones.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/glue_conv_bones.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/glue_conv_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/glue_conv_meat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/glue_cor_bones.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/glue_cor_bones.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/glue_cor_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/glue_cor_meat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/glue_cov_bones.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/glue_cov_bones.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/glue_cov_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/glue_cov_meat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/glue_cross_bones.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/glue_cross_bones.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/glue_cross_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/glue_cross_meat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/glue_hist_bones.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/glue_hist_bones.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/glue_hist_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/glue_hist_meat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/glue_histc_bones.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/glue_histc_bones.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/glue_histc_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/glue_histc_meat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/glue_join_bones.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/glue_join_bones.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/glue_join_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/glue_join_meat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/glue_kron_bones.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/glue_kron_bones.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/glue_kron_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/glue_kron_meat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/glue_max_bones.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/glue_max_bones.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/glue_max_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/glue_max_meat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/glue_min_bones.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/glue_min_bones.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/glue_min_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/glue_min_meat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/glue_mixed_bones.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/glue_mixed_bones.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/glue_mixed_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/glue_mixed_meat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/glue_relational_bones.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/glue_relational_bones.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/glue_relational_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/glue_relational_meat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/glue_solve_bones.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/glue_solve_bones.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/glue_solve_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/glue_solve_meat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/glue_times_bones.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/glue_times_bones.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/glue_times_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/glue_times_meat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/glue_toeplitz_bones.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/glue_toeplitz_bones.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/glue_toeplitz_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/glue_toeplitz_meat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/glue_trapz_bones.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/glue_trapz_bones.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/glue_trapz_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/glue_trapz_meat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/gmm_diag_bones.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/gmm_diag_bones.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/gmm_diag_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/gmm_diag_meat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/gmm_misc_bones.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/gmm_misc_bones.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/gmm_misc_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/gmm_misc_meat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/hdf5_misc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/hdf5_misc.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/include_atlas.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/include_atlas.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/include_hdf5.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/include_hdf5.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/include_superlu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/include_superlu.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/injector_bones.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/injector_bones.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/injector_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/injector_meat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/memory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/memory.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/mtGlueCube_bones.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/mtGlueCube_bones.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/mtGlueCube_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/mtGlueCube_meat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/mtGlue_bones.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/mtGlue_bones.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/mtGlue_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/mtGlue_meat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/mtOpCube_bones.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/mtOpCube_bones.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/mtOpCube_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/mtOpCube_meat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/mtOp_bones.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/mtOp_bones.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/mtOp_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/mtOp_meat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/mtSpOp_bones.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/mtSpOp_bones.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/mtSpOp_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/mtSpOp_meat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/mul_gemm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/mul_gemm.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/mul_gemm_mixed.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/mul_gemm_mixed.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/mul_gemv.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/mul_gemv.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/mul_herk.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/mul_herk.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/mul_syrk.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/mul_syrk.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/newarp_DenseGenMatProd_bones.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/newarp_DenseGenMatProd_bones.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/newarp_DenseGenMatProd_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/newarp_DenseGenMatProd_meat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/newarp_DoubleShiftQR_bones.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/newarp_DoubleShiftQR_bones.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/newarp_DoubleShiftQR_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/newarp_DoubleShiftQR_meat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/newarp_EigsSelect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/newarp_EigsSelect.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/newarp_GenEigsSolver_bones.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/newarp_GenEigsSolver_bones.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/newarp_GenEigsSolver_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/newarp_GenEigsSolver_meat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/newarp_SortEigenvalue.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/newarp_SortEigenvalue.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/newarp_SparseGenMatProd_bones.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/newarp_SparseGenMatProd_bones.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/newarp_SparseGenMatProd_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/newarp_SparseGenMatProd_meat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/newarp_SymEigsSolver_bones.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/newarp_SymEigsSolver_bones.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/newarp_SymEigsSolver_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/newarp_SymEigsSolver_meat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/newarp_TridiagEigen_bones.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/newarp_TridiagEigen_bones.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/newarp_TridiagEigen_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/newarp_TridiagEigen_meat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/newarp_UpperHessenbergEigen_bones.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/newarp_UpperHessenbergEigen_bones.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/newarp_UpperHessenbergEigen_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/newarp_UpperHessenbergEigen_meat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/newarp_UpperHessenbergQR_bones.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/newarp_UpperHessenbergQR_bones.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/newarp_UpperHessenbergQR_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/newarp_UpperHessenbergQR_meat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/newarp_cx_attrib.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/newarp_cx_attrib.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/op_all_bones.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/op_all_bones.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/op_all_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/op_all_meat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/op_any_bones.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/op_any_bones.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/op_any_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/op_any_meat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/op_chol_bones.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/op_chol_bones.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/op_chol_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/op_chol_meat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/op_clamp_bones.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/op_clamp_bones.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/op_clamp_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/op_clamp_meat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/op_cor_bones.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/op_cor_bones.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/op_cor_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/op_cor_meat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/op_cov_bones.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/op_cov_bones.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/op_cov_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/op_cov_meat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/op_cumprod_bones.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/op_cumprod_bones.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/op_cumprod_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/op_cumprod_meat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/op_cumsum_bones.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/op_cumsum_bones.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/op_cumsum_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/op_cumsum_meat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/op_cx_scalar_bones.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/op_cx_scalar_bones.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/op_cx_scalar_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/op_cx_scalar_meat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/op_diagmat_bones.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/op_diagmat_bones.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/op_diagmat_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/op_diagmat_meat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/op_diagvec_bones.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/op_diagvec_bones.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/op_diagvec_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/op_diagvec_meat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/op_diff_bones.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/op_diff_bones.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/op_diff_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/op_diff_meat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/op_dot_bones.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/op_dot_bones.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/op_dot_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/op_dot_meat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/op_dotext_bones.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/op_dotext_bones.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/op_dotext_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/op_dotext_meat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/op_expmat_bones.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/op_expmat_bones.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/op_expmat_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/op_expmat_meat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/op_fft_bones.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/op_fft_bones.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/op_fft_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/op_fft_meat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/op_find_bones.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/op_find_bones.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/op_find_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/op_find_meat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/op_find_unique_bones.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/op_find_unique_bones.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/op_find_unique_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/op_find_unique_meat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/op_flip_bones.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/op_flip_bones.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/op_flip_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/op_flip_meat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/op_hist_bones.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/op_hist_bones.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/op_hist_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/op_hist_meat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/op_htrans_bones.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/op_htrans_bones.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/op_htrans_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/op_htrans_meat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/op_index_max_bones.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/op_index_max_bones.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/op_index_max_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/op_index_max_meat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/op_index_min_bones.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/op_index_min_bones.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/op_index_min_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/op_index_min_meat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/op_inv_bones.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/op_inv_bones.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/op_inv_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/op_inv_meat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/op_logmat_bones.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/op_logmat_bones.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/op_logmat_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/op_logmat_meat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/op_max_bones.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/op_max_bones.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/op_max_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/op_max_meat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/op_mean_bones.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/op_mean_bones.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/op_mean_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/op_mean_meat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/op_median_bones.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/op_median_bones.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/op_median_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/op_median_meat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/op_min_bones.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/op_min_bones.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/op_min_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/op_min_meat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/op_misc_bones.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/op_misc_bones.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/op_misc_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/op_misc_meat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/op_nonzeros_bones.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/op_nonzeros_bones.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/op_nonzeros_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/op_nonzeros_meat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/op_norm_bones.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/op_norm_bones.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/op_norm_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/op_norm_meat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/op_normalise_bones.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/op_normalise_bones.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/op_normalise_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/op_normalise_meat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/op_orth_null_bones.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/op_orth_null_bones.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/op_orth_null_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/op_orth_null_meat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/op_pinv_bones.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/op_pinv_bones.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/op_pinv_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/op_pinv_meat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/op_princomp_bones.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/op_princomp_bones.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/op_princomp_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/op_princomp_meat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/op_prod_bones.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/op_prod_bones.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/op_prod_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/op_prod_meat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/op_relational_bones.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/op_relational_bones.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/op_relational_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/op_relational_meat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/op_repmat_bones.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/op_repmat_bones.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/op_repmat_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/op_repmat_meat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/op_reshape_bones.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/op_reshape_bones.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/op_reshape_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/op_reshape_meat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/op_resize_bones.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/op_resize_bones.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/op_resize_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/op_resize_meat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/op_shift_bones.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/op_shift_bones.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/op_shift_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/op_shift_meat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/op_shuffle_bones.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/op_shuffle_bones.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/op_shuffle_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/op_shuffle_meat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/op_sort_bones.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/op_sort_bones.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/op_sort_index_bones.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/op_sort_index_bones.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/op_sort_index_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/op_sort_index_meat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/op_sort_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/op_sort_meat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/op_sqrtmat_bones.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/op_sqrtmat_bones.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/op_sqrtmat_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/op_sqrtmat_meat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/op_stddev_bones.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/op_stddev_bones.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/op_stddev_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/op_stddev_meat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/op_strans_bones.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/op_strans_bones.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/op_strans_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/op_strans_meat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/op_sum_bones.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/op_sum_bones.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/op_sum_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/op_sum_meat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/op_symmat_bones.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/op_symmat_bones.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/op_symmat_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/op_symmat_meat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/op_toeplitz_bones.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/op_toeplitz_bones.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/op_toeplitz_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/op_toeplitz_meat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/op_trimat_bones.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/op_trimat_bones.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/op_trimat_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/op_trimat_meat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/op_unique_bones.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/op_unique_bones.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/op_unique_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/op_unique_meat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/op_var_bones.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/op_var_bones.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/op_var_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/op_var_meat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/op_vectorise_bones.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/op_vectorise_bones.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/op_vectorise_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/op_vectorise_meat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/operator_cube_div.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/operator_cube_div.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/operator_cube_minus.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/operator_cube_minus.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/operator_cube_plus.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/operator_cube_plus.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/operator_cube_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/operator_cube_relational.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/operator_cube_schur.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/operator_cube_schur.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/operator_cube_times.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/operator_cube_times.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/operator_div.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/operator_div.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/operator_minus.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/operator_minus.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/operator_ostream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/operator_ostream.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/operator_plus.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/operator_plus.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/operator_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/operator_relational.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/operator_schur.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/operator_schur.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/operator_times.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/operator_times.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/podarray_bones.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/podarray_bones.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/podarray_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/podarray_meat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/promote_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/promote_type.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/restrictors.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/restrictors.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/running_stat_bones.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/running_stat_bones.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/running_stat_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/running_stat_meat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/running_stat_vec_bones.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/running_stat_vec_bones.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/running_stat_vec_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/running_stat_vec_meat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/sp_auxlib_bones.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/sp_auxlib_bones.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/sp_auxlib_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/sp_auxlib_meat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/span.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/span.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/spdiagview_bones.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/spdiagview_bones.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/spdiagview_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/spdiagview_meat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/spglue_join_bones.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/spglue_join_bones.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/spglue_join_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/spglue_join_meat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/spglue_minus_bones.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/spglue_minus_bones.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/spglue_minus_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/spglue_minus_meat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/spglue_plus_bones.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/spglue_plus_bones.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/spglue_plus_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/spglue_plus_meat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/spglue_times_bones.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/spglue_times_bones.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/spglue_times_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/spglue_times_meat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/spop_diagmat_bones.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/spop_diagmat_bones.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/spop_diagmat_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/spop_diagmat_meat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/spop_htrans_bones.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/spop_htrans_bones.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/spop_htrans_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/spop_htrans_meat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/spop_max_bones.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/spop_max_bones.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/spop_max_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/spop_max_meat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/spop_mean_bones.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/spop_mean_bones.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/spop_mean_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/spop_mean_meat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/spop_min_bones.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/spop_min_bones.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/spop_min_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/spop_min_meat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/spop_misc_bones.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/spop_misc_bones.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/spop_misc_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/spop_misc_meat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/spop_strans_bones.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/spop_strans_bones.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/spop_strans_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/spop_strans_meat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/spop_sum_bones.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/spop_sum_bones.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/spop_sum_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/spop_sum_meat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/spop_var_bones.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/spop_var_bones.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/spop_var_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/spop_var_meat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/strip.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/strip.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/subview_bones.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/subview_bones.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/subview_cube_bones.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/subview_cube_bones.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/subview_cube_each_bones.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/subview_cube_each_bones.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/subview_cube_each_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/subview_cube_each_meat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/subview_cube_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/subview_cube_meat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/subview_each_bones.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/subview_each_bones.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/subview_each_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/subview_each_meat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/subview_elem1_bones.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/subview_elem1_bones.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/subview_elem1_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/subview_elem1_meat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/subview_elem2_bones.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/subview_elem2_bones.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/subview_elem2_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/subview_elem2_meat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/subview_field_bones.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/subview_field_bones.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/subview_field_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/subview_field_meat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/subview_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/subview_meat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/traits.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/typedef_elem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/typedef_elem.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/typedef_elem_check.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/typedef_elem_check.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/typedef_mat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/typedef_mat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/typedef_mat_fixed.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/typedef_mat_fixed.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/unwrap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/unwrap.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/unwrap_cube.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/unwrap_cube.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/unwrap_spmat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/unwrap_spmat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/upgrade_val.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/upgrade_val.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/wall_clock_bones.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/wall_clock_bones.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/wall_clock_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/wall_clock_meat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/wrapper_arpack.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/wrapper_arpack.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/wrapper_atlas.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/wrapper_atlas.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/wrapper_blas.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/wrapper_blas.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/wrapper_lapack.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/wrapper_lapack.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/wrapper_superlu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/wrapper_superlu.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/xtrans_mat_bones.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/xtrans_mat_bones.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/xtrans_mat_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/xtrans_mat_meat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/xvec_htrans_bones.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/xvec_htrans_bones.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/include/armadillo_bits/xvec_htrans_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/include/armadillo_bits/xvec_htrans_meat.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/index.html -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/mex_interface/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/mex_interface/README.txt -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/mex_interface/armaMex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/mex_interface/armaMex.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/mex_interface/armaMex_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/mex_interface/armaMex_demo.cpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/mex_interface/armaMex_documentation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/mex_interface/armaMex_documentation.pdf -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/mex_interface/inData.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/mex_interface/inData.mat -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/mex_interface/readMatTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/mex_interface/readMatTest.cpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/mex_interface/run_demo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/mex_interface/run_demo.m -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/misc/blank_footer.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/misc/doxygen.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/misc/doxygen.config -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/misc/main.doxy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/misc/main.doxy -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/rcpp_armadillo_csda_2014.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/rcpp_armadillo_csda_2014.pdf -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/src/wrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/src/wrapper.cpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/tests/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/tests/README.txt -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/tests/attributes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/tests/attributes.cpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/tests/bounds.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/tests/bounds.cpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/tests/catch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/tests/catch.hpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/tests/decomp_eig_gen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/tests/decomp_eig_gen.cpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/tests/decomp_eig_sym.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/tests/decomp_eig_sym.cpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/tests/expr_elem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/tests/expr_elem.cpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/tests/expr_misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/tests/expr_misc.cpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/tests/fn_abs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/tests/fn_abs.cpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/tests/fn_accu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/tests/fn_accu.cpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/tests/fn_all.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/tests/fn_all.cpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/tests/fn_any.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/tests/fn_any.cpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/tests/fn_as_scalar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/tests/fn_as_scalar.cpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/tests/fn_clamp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/tests/fn_clamp.cpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/tests/fn_cond.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/tests/fn_cond.cpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/tests/fn_conj.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/tests/fn_conj.cpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/tests/fn_conv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/tests/fn_conv.cpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/tests/fn_conv_to.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/tests/fn_conv_to.cpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/tests/fn_cor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/tests/fn_cor.cpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/tests/fn_cov.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/tests/fn_cov.cpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/tests/fn_cross.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/tests/fn_cross.cpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/tests/fn_cumprod.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/tests/fn_cumprod.cpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/tests/fn_cumsum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/tests/fn_cumsum.cpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/tests/fn_det.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/tests/fn_det.cpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/tests/fn_diagmat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/tests/fn_diagmat.cpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/tests/fn_diagvec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/tests/fn_diagvec.cpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/tests/fn_diff.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/tests/fn_diff.cpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/tests/fn_dot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/tests/fn_dot.cpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/tests/fn_eps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/tests/fn_eps.cpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/tests/fn_expmat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/tests/fn_expmat.cpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/tests/fn_find.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/tests/fn_find.cpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/tests/fn_find_finite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/tests/fn_find_finite.cpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/tests/fn_find_nonfinite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/tests/fn_find_nonfinite.cpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/tests/fn_find_unique.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/tests/fn_find_unique.cpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/tests/fn_flip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/tests/fn_flip.cpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/tests/fn_interp1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/tests/fn_interp1.cpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/tests/fn_is_finite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/tests/fn_is_finite.cpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/tests/fn_sum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/tests/fn_sum.cpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/tests/fn_symmat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/tests/fn_symmat.cpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/tests/fn_trace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/tests/fn_trace.cpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/tests/fn_trans.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/tests/fn_trans.cpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/tests/fn_vectorise.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/tests/fn_vectorise.cpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/tests/gen_linspace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/tests/gen_linspace.cpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/tests/gen_ones.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/tests/gen_ones.cpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/tests/gen_randu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/tests/gen_randu.cpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/tests/gen_zeros.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/tests/gen_zeros.cpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/tests/init_auxmem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/tests/init_auxmem.cpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/tests/init_fill.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/tests/init_fill.cpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/tests/init_misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/tests/init_misc.cpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/tests/instantiation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/tests/instantiation.cpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/tests/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/tests/main.cpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/tests/mat_minus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/tests/mat_minus.cpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/tests/mat_mul_cx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/tests/mat_mul_cx.cpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/tests/mat_mul_real.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/tests/mat_mul_real.cpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/tests/mat_neg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/tests/mat_neg.cpp -------------------------------------------------------------------------------- /jet/thirdparty/armadillo/tests/mat_plus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/armadillo/tests/mat_plus.cpp -------------------------------------------------------------------------------- /jet/thirdparty/cppimport/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/cppimport/LICENSE -------------------------------------------------------------------------------- /jet/thirdparty/cppimport/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/cppimport/README.md -------------------------------------------------------------------------------- /jet/thirdparty/cppimport/cppimport/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/cppimport/cppimport/__init__.py -------------------------------------------------------------------------------- /jet/thirdparty/cppimport/cppimport/import_hook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/cppimport/cppimport/import_hook.py -------------------------------------------------------------------------------- /jet/thirdparty/cppimport/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/cppimport/setup.py -------------------------------------------------------------------------------- /jet/thirdparty/cppimport/tests/apackage/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /jet/thirdparty/cppimport/tests/apackage/inner/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /jet/thirdparty/cppimport/tests/mymodule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/cppimport/tests/mymodule.cpp -------------------------------------------------------------------------------- /jet/thirdparty/cppimport/tests/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/cppimport/tests/test.py -------------------------------------------------------------------------------- /jet/thirdparty/pybind11/.appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/pybind11/.appveyor.yml -------------------------------------------------------------------------------- /jet/thirdparty/pybind11/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/pybind11/.travis.yml -------------------------------------------------------------------------------- /jet/thirdparty/pybind11/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/pybind11/CMakeLists.txt -------------------------------------------------------------------------------- /jet/thirdparty/pybind11/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/pybind11/CONTRIBUTING.md -------------------------------------------------------------------------------- /jet/thirdparty/pybind11/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/pybind11/LICENSE -------------------------------------------------------------------------------- /jet/thirdparty/pybind11/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/pybind11/MANIFEST.in -------------------------------------------------------------------------------- /jet/thirdparty/pybind11/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/pybind11/README.md -------------------------------------------------------------------------------- /jet/thirdparty/pybind11/docs/_static/theme_overrides.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/pybind11/docs/_static/theme_overrides.css -------------------------------------------------------------------------------- /jet/thirdparty/pybind11/docs/advanced.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/pybind11/docs/advanced.rst -------------------------------------------------------------------------------- /jet/thirdparty/pybind11/docs/basics.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/pybind11/docs/basics.rst -------------------------------------------------------------------------------- /jet/thirdparty/pybind11/docs/benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/pybind11/docs/benchmark.py -------------------------------------------------------------------------------- /jet/thirdparty/pybind11/docs/benchmark.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/pybind11/docs/benchmark.rst -------------------------------------------------------------------------------- /jet/thirdparty/pybind11/docs/changelog.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/pybind11/docs/changelog.rst -------------------------------------------------------------------------------- /jet/thirdparty/pybind11/docs/classes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/pybind11/docs/classes.rst -------------------------------------------------------------------------------- /jet/thirdparty/pybind11/docs/compiling.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/pybind11/docs/compiling.rst -------------------------------------------------------------------------------- /jet/thirdparty/pybind11/docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/pybind11/docs/conf.py -------------------------------------------------------------------------------- /jet/thirdparty/pybind11/docs/faq.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/pybind11/docs/faq.rst -------------------------------------------------------------------------------- /jet/thirdparty/pybind11/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/pybind11/docs/index.rst -------------------------------------------------------------------------------- /jet/thirdparty/pybind11/docs/intro.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/pybind11/docs/intro.rst -------------------------------------------------------------------------------- /jet/thirdparty/pybind11/docs/limitations.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/pybind11/docs/limitations.rst -------------------------------------------------------------------------------- /jet/thirdparty/pybind11/docs/pybind11-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/pybind11/docs/pybind11-logo.png -------------------------------------------------------------------------------- /jet/thirdparty/pybind11/docs/pybind11_vs_boost_python1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/pybind11/docs/pybind11_vs_boost_python1.png -------------------------------------------------------------------------------- /jet/thirdparty/pybind11/docs/pybind11_vs_boost_python1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/pybind11/docs/pybind11_vs_boost_python1.svg -------------------------------------------------------------------------------- /jet/thirdparty/pybind11/docs/pybind11_vs_boost_python2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/pybind11/docs/pybind11_vs_boost_python2.png -------------------------------------------------------------------------------- /jet/thirdparty/pybind11/docs/pybind11_vs_boost_python2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/pybind11/docs/pybind11_vs_boost_python2.svg -------------------------------------------------------------------------------- /jet/thirdparty/pybind11/docs/reference.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/pybind11/docs/reference.rst -------------------------------------------------------------------------------- /jet/thirdparty/pybind11/docs/release.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/pybind11/docs/release.rst -------------------------------------------------------------------------------- /jet/thirdparty/pybind11/example/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/pybind11/example/CMakeLists.txt -------------------------------------------------------------------------------- /jet/thirdparty/pybind11/example/eigen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/pybind11/example/eigen.cpp -------------------------------------------------------------------------------- /jet/thirdparty/pybind11/example/eigen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/pybind11/example/eigen.py -------------------------------------------------------------------------------- /jet/thirdparty/pybind11/example/eigen.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/pybind11/example/eigen.ref -------------------------------------------------------------------------------- /jet/thirdparty/pybind11/example/example.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/pybind11/example/example.cpp -------------------------------------------------------------------------------- /jet/thirdparty/pybind11/example/example.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/pybind11/example/example.h -------------------------------------------------------------------------------- /jet/thirdparty/pybind11/example/example1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/pybind11/example/example1.cpp -------------------------------------------------------------------------------- /jet/thirdparty/pybind11/example/example1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/pybind11/example/example1.py -------------------------------------------------------------------------------- /jet/thirdparty/pybind11/example/example1.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/pybind11/example/example1.ref -------------------------------------------------------------------------------- /jet/thirdparty/pybind11/example/example10.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/pybind11/example/example10.cpp -------------------------------------------------------------------------------- /jet/thirdparty/pybind11/example/example10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/pybind11/example/example10.py -------------------------------------------------------------------------------- /jet/thirdparty/pybind11/example/example10.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/pybind11/example/example10.ref -------------------------------------------------------------------------------- /jet/thirdparty/pybind11/example/example11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/pybind11/example/example11.cpp -------------------------------------------------------------------------------- /jet/thirdparty/pybind11/example/example11.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/pybind11/example/example11.py -------------------------------------------------------------------------------- /jet/thirdparty/pybind11/example/example11.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/pybind11/example/example11.ref -------------------------------------------------------------------------------- /jet/thirdparty/pybind11/example/example12.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/pybind11/example/example12.cpp -------------------------------------------------------------------------------- /jet/thirdparty/pybind11/example/example12.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/pybind11/example/example12.py -------------------------------------------------------------------------------- /jet/thirdparty/pybind11/example/example12.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/pybind11/example/example12.ref -------------------------------------------------------------------------------- /jet/thirdparty/pybind11/example/example13.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/pybind11/example/example13.cpp -------------------------------------------------------------------------------- /jet/thirdparty/pybind11/example/example13.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/pybind11/example/example13.py -------------------------------------------------------------------------------- /jet/thirdparty/pybind11/example/example13.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/pybind11/example/example13.ref -------------------------------------------------------------------------------- /jet/thirdparty/pybind11/example/example14.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/pybind11/example/example14.cpp -------------------------------------------------------------------------------- /jet/thirdparty/pybind11/example/example14.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/pybind11/example/example14.py -------------------------------------------------------------------------------- /jet/thirdparty/pybind11/example/example14.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/pybind11/example/example14.ref -------------------------------------------------------------------------------- /jet/thirdparty/pybind11/example/example15.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/pybind11/example/example15.cpp -------------------------------------------------------------------------------- /jet/thirdparty/pybind11/example/example15.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/pybind11/example/example15.py -------------------------------------------------------------------------------- /jet/thirdparty/pybind11/example/example15.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/pybind11/example/example15.ref -------------------------------------------------------------------------------- /jet/thirdparty/pybind11/example/example16.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/pybind11/example/example16.cpp -------------------------------------------------------------------------------- /jet/thirdparty/pybind11/example/example16.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/pybind11/example/example16.py -------------------------------------------------------------------------------- /jet/thirdparty/pybind11/example/example16.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/pybind11/example/example16.ref -------------------------------------------------------------------------------- /jet/thirdparty/pybind11/example/example17.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/pybind11/example/example17.cpp -------------------------------------------------------------------------------- /jet/thirdparty/pybind11/example/example17.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/pybind11/example/example17.py -------------------------------------------------------------------------------- /jet/thirdparty/pybind11/example/example17.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/pybind11/example/example17.ref -------------------------------------------------------------------------------- /jet/thirdparty/pybind11/example/example2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/pybind11/example/example2.cpp -------------------------------------------------------------------------------- /jet/thirdparty/pybind11/example/example2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/pybind11/example/example2.py -------------------------------------------------------------------------------- /jet/thirdparty/pybind11/example/example2.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/pybind11/example/example2.ref -------------------------------------------------------------------------------- /jet/thirdparty/pybind11/example/example3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/pybind11/example/example3.cpp -------------------------------------------------------------------------------- /jet/thirdparty/pybind11/example/example3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/pybind11/example/example3.py -------------------------------------------------------------------------------- /jet/thirdparty/pybind11/example/example3.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/pybind11/example/example3.ref -------------------------------------------------------------------------------- /jet/thirdparty/pybind11/example/example4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/pybind11/example/example4.cpp -------------------------------------------------------------------------------- /jet/thirdparty/pybind11/example/example4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/pybind11/example/example4.py -------------------------------------------------------------------------------- /jet/thirdparty/pybind11/example/example4.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/pybind11/example/example4.ref -------------------------------------------------------------------------------- /jet/thirdparty/pybind11/example/example5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/pybind11/example/example5.cpp -------------------------------------------------------------------------------- /jet/thirdparty/pybind11/example/example5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/pybind11/example/example5.py -------------------------------------------------------------------------------- /jet/thirdparty/pybind11/example/example5.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/pybind11/example/example5.ref -------------------------------------------------------------------------------- /jet/thirdparty/pybind11/example/example6.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/pybind11/example/example6.cpp -------------------------------------------------------------------------------- /jet/thirdparty/pybind11/example/example6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/pybind11/example/example6.py -------------------------------------------------------------------------------- /jet/thirdparty/pybind11/example/example6.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/pybind11/example/example6.ref -------------------------------------------------------------------------------- /jet/thirdparty/pybind11/example/example7.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/pybind11/example/example7.cpp -------------------------------------------------------------------------------- /jet/thirdparty/pybind11/example/example7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/pybind11/example/example7.py -------------------------------------------------------------------------------- /jet/thirdparty/pybind11/example/example7.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/pybind11/example/example7.ref -------------------------------------------------------------------------------- /jet/thirdparty/pybind11/example/example8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/pybind11/example/example8.cpp -------------------------------------------------------------------------------- /jet/thirdparty/pybind11/example/example8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/pybind11/example/example8.py -------------------------------------------------------------------------------- /jet/thirdparty/pybind11/example/example8.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/pybind11/example/example8.ref -------------------------------------------------------------------------------- /jet/thirdparty/pybind11/example/example9.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/pybind11/example/example9.cpp -------------------------------------------------------------------------------- /jet/thirdparty/pybind11/example/example9.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/pybind11/example/example9.py -------------------------------------------------------------------------------- /jet/thirdparty/pybind11/example/example9.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/pybind11/example/example9.ref -------------------------------------------------------------------------------- /jet/thirdparty/pybind11/example/issues.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/pybind11/example/issues.cpp -------------------------------------------------------------------------------- /jet/thirdparty/pybind11/example/issues.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/pybind11/example/issues.py -------------------------------------------------------------------------------- /jet/thirdparty/pybind11/example/issues.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/pybind11/example/issues.ref -------------------------------------------------------------------------------- /jet/thirdparty/pybind11/example/object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/pybind11/example/object.h -------------------------------------------------------------------------------- /jet/thirdparty/pybind11/example/run_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/pybind11/example/run_test.py -------------------------------------------------------------------------------- /jet/thirdparty/pybind11/include/pybind11/attr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/pybind11/include/pybind11/attr.h -------------------------------------------------------------------------------- /jet/thirdparty/pybind11/include/pybind11/cast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/pybind11/include/pybind11/cast.h -------------------------------------------------------------------------------- /jet/thirdparty/pybind11/include/pybind11/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/pybind11/include/pybind11/common.h -------------------------------------------------------------------------------- /jet/thirdparty/pybind11/include/pybind11/complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/pybind11/include/pybind11/complex.h -------------------------------------------------------------------------------- /jet/thirdparty/pybind11/include/pybind11/descr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/pybind11/include/pybind11/descr.h -------------------------------------------------------------------------------- /jet/thirdparty/pybind11/include/pybind11/eigen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/pybind11/include/pybind11/eigen.h -------------------------------------------------------------------------------- /jet/thirdparty/pybind11/include/pybind11/functional.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/pybind11/include/pybind11/functional.h -------------------------------------------------------------------------------- /jet/thirdparty/pybind11/include/pybind11/numpy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/pybind11/include/pybind11/numpy.h -------------------------------------------------------------------------------- /jet/thirdparty/pybind11/include/pybind11/operators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/pybind11/include/pybind11/operators.h -------------------------------------------------------------------------------- /jet/thirdparty/pybind11/include/pybind11/pybind11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/pybind11/include/pybind11/pybind11.h -------------------------------------------------------------------------------- /jet/thirdparty/pybind11/include/pybind11/pytypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/pybind11/include/pybind11/pytypes.h -------------------------------------------------------------------------------- /jet/thirdparty/pybind11/include/pybind11/stl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/pybind11/include/pybind11/stl.h -------------------------------------------------------------------------------- /jet/thirdparty/pybind11/include/pybind11/stl_bind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/pybind11/include/pybind11/stl_bind.h -------------------------------------------------------------------------------- /jet/thirdparty/pybind11/include/pybind11/typeid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/pybind11/include/pybind11/typeid.h -------------------------------------------------------------------------------- /jet/thirdparty/pybind11/pybind11/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/pybind11/pybind11/__init__.py -------------------------------------------------------------------------------- /jet/thirdparty/pybind11/pybind11/_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/pybind11/pybind11/_version.py -------------------------------------------------------------------------------- /jet/thirdparty/pybind11/setup.cfg: -------------------------------------------------------------------------------- 1 | [bdist_wheel] 2 | universal=1 3 | -------------------------------------------------------------------------------- /jet/thirdparty/pybind11/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/pybind11/setup.py -------------------------------------------------------------------------------- /jet/thirdparty/pybind11/tools/FindEigen3.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/pybind11/tools/FindEigen3.cmake -------------------------------------------------------------------------------- /jet/thirdparty/pybind11/tools/FindPythonLibsNew.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/pybind11/tools/FindPythonLibsNew.cmake -------------------------------------------------------------------------------- /jet/thirdparty/pybind11/tools/mkdoc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/thirdparty/pybind11/tools/mkdoc.py -------------------------------------------------------------------------------- /jet/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/jet/utils.py -------------------------------------------------------------------------------- /jet/version.py: -------------------------------------------------------------------------------- 1 | __version__ = '1.3.15' 2 | -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfv/pyjet/HEAD/setup.py --------------------------------------------------------------------------------