├── .github ├── dependabot.yml └── workflows │ ├── linux.yml │ ├── macos.yml │ └── windows.yml ├── .gitignore ├── .gitlab-ci.yml ├── AMD ├── Demo │ ├── Makefile │ ├── amd_demo.c │ ├── amd_demo.out │ ├── amd_demo2.c │ ├── amd_demo2.out │ ├── amd_f77cross.f │ ├── amd_f77cross.out │ ├── amd_f77demo.f │ ├── amd_f77demo.out │ ├── amd_f77simple.f │ ├── amd_f77simple.out │ ├── amd_f77wrapper.c │ ├── amd_l_demo.c │ ├── amd_l_demo.out │ ├── amd_simple.c │ └── amd_simple.out ├── Doc │ ├── AMD_UserGuide.bib │ ├── AMD_UserGuide.pdf │ ├── AMD_UserGuide.tex │ ├── ChangeLog │ ├── License.txt │ ├── Makefile │ └── lesser.txt ├── Include │ ├── amd.h │ └── amd_internal.h ├── Lib │ └── Makefile ├── MATLAB │ ├── Contents.m │ ├── amd2.m │ ├── amd_demo.m │ ├── amd_demo.m.out │ ├── amd_install.m │ ├── amd_make.m │ ├── amd_mex.c │ └── can_24 ├── Makefile ├── README.txt └── Source │ ├── amd.f │ ├── amd_1.c │ ├── amd_2.c │ ├── amd_aat.c │ ├── amd_control.c │ ├── amd_defaults.c │ ├── amd_dump.c │ ├── amd_global.c │ ├── amd_info.c │ ├── amd_order.c │ ├── amd_post_tree.c │ ├── amd_postorder.c │ ├── amd_preprocess.c │ ├── amd_valid.c │ └── amdbar.f ├── BTF ├── Doc │ ├── ChangeLog │ ├── License.txt │ └── lesser.txt ├── Include │ ├── btf.h │ └── btf_internal.h ├── Lib │ └── Makefile ├── MATLAB │ ├── Contents.m │ ├── Test │ │ ├── btf_test.m │ │ ├── checkbtf.m │ │ ├── test1.m │ │ ├── test2.m │ │ ├── test3.m │ │ ├── test4.m │ │ ├── test5.m │ │ └── test6.m │ ├── btf.c │ ├── btf.m │ ├── btf_demo.m │ ├── btf_install.m │ ├── btf_make.m │ ├── drawbtf.m │ ├── maxtrans.c │ ├── maxtrans.m │ ├── strongcomp.c │ └── strongcomp.m ├── Makefile ├── README.txt └── Source │ ├── btf_maxtrans.c │ ├── btf_order.c │ └── btf_strongcomp.c ├── CAMD ├── Demo │ ├── Makefile │ ├── camd_demo.c │ ├── camd_demo.out │ ├── camd_demo2.c │ ├── camd_demo2.out │ ├── camd_l_demo.c │ ├── camd_l_demo.out │ ├── camd_simple.c │ └── camd_simple.out ├── Doc │ ├── CAMD_UserGuide.bib │ ├── CAMD_UserGuide.pdf │ ├── CAMD_UserGuide.tex │ ├── ChangeLog │ ├── License.txt │ ├── Makefile │ ├── camd.sed │ ├── cdiff │ ├── docdiff │ └── lesser.txt ├── Include │ ├── camd.h │ └── camd_internal.h ├── Lib │ └── Makefile ├── MATLAB │ ├── Contents.m │ ├── camd.m │ ├── camd_demo.m │ ├── camd_demo.m.out │ ├── camd_make.m │ ├── camd_mex.c │ └── can_24 ├── Makefile ├── README.txt └── Source │ ├── camd_1.c │ ├── camd_2.c │ ├── camd_aat.c │ ├── camd_control.c │ ├── camd_defaults.c │ ├── camd_dump.c │ ├── camd_global.c │ ├── camd_info.c │ ├── camd_order.c │ ├── camd_postorder.c │ ├── camd_preprocess.c │ └── camd_valid.c ├── CCOLAMD ├── Demo │ ├── Makefile │ ├── ccolamd_example.c │ ├── ccolamd_example.out │ ├── ccolamd_l_example.c │ └── ccolamd_l_example.out ├── Doc │ ├── ChangeLog │ ├── License.txt │ └── lesser.txt ├── Include │ └── ccolamd.h ├── Lib │ └── Makefile ├── MATLAB │ ├── Contents.m │ ├── ccolamd.m │ ├── ccolamd_demo.m │ ├── ccolamd_install.m │ ├── ccolamd_make.m │ ├── ccolamd_test.m │ ├── ccolamdmex.c │ ├── ccolamdtestmex.c │ ├── ccolamdtestmex.m │ ├── csymamd.m │ ├── csymamdmex.c │ ├── csymamdtestmex.c │ ├── csymamdtestmex.m │ └── luflops.m ├── Makefile ├── README.txt └── Source │ └── ccolamd.c ├── CHOLMOD ├── Check │ ├── cholmod_check.c │ ├── cholmod_read.c │ ├── cholmod_write.c │ └── lesser.txt ├── Cholesky │ ├── cholmod_amd.c │ ├── cholmod_analyze.c │ ├── cholmod_colamd.c │ ├── cholmod_etree.c │ ├── cholmod_factorize.c │ ├── cholmod_postorder.c │ ├── cholmod_rcond.c │ ├── cholmod_resymbol.c │ ├── cholmod_rowcolcounts.c │ ├── cholmod_rowfac.c │ ├── cholmod_solve.c │ ├── cholmod_spsolve.c │ ├── lesser.txt │ ├── t_cholmod_lsolve.c │ ├── t_cholmod_ltsolve.c │ ├── t_cholmod_rowfac.c │ └── t_cholmod_solve.c ├── Core │ ├── cholmod_aat.c │ ├── cholmod_add.c │ ├── cholmod_band.c │ ├── cholmod_change_factor.c │ ├── cholmod_common.c │ ├── cholmod_complex.c │ ├── cholmod_copy.c │ ├── cholmod_dense.c │ ├── cholmod_error.c │ ├── cholmod_factor.c │ ├── cholmod_memory.c │ ├── cholmod_sparse.c │ ├── cholmod_transpose.c │ ├── cholmod_triplet.c │ ├── cholmod_version.c │ ├── lesser.txt │ ├── t_cholmod_change_factor.c │ ├── t_cholmod_dense.c │ ├── t_cholmod_transpose.c │ └── t_cholmod_triplet.c ├── Demo │ ├── Makefile │ ├── Matrix │ │ ├── 0.tri │ │ ├── bcsstk01.rsa │ │ ├── bcsstk01.tri │ │ ├── bcsstk02.rsa │ │ ├── bcsstk02.tri │ │ ├── c.mtx │ │ ├── c.tri │ │ ├── can___24.mtx │ │ ├── d.tri │ │ ├── empty.tri │ │ ├── lp_afiro.rra │ │ ├── lp_afiro.tri │ │ ├── mangle1.mtx │ │ ├── mangle2.mtx │ │ ├── mangle3.mtx │ │ ├── mangle4.mtx │ │ ├── mangle5.tri │ │ ├── mangle6.tri │ │ ├── mangle7.tri │ │ ├── mangle8.tri │ │ ├── n5 │ │ ├── one.tri │ │ ├── pts5ldd03.mtx │ │ ├── two.tri │ │ └── up.tri │ ├── README.txt │ ├── cholmod_demo.c │ ├── cholmod_demo.h │ ├── cholmod_l_demo.c │ ├── cholmod_simple.c │ ├── gpl.txt │ ├── gpu.sh │ ├── lperf.m │ ├── reade.f │ ├── readhb.f │ └── readhb2.f ├── Doc │ ├── CHOLMOD_UserGuide.pdf │ ├── CHOLMOD_UserGuide.tex │ ├── ChangeLog │ ├── IA3_2014_Workshop_Rennich_Stosic_Davis_preprint.pdf │ ├── License.txt │ ├── Makefile │ ├── UserGuide.bib │ ├── footer.tex │ ├── getmproto │ ├── getproto │ ├── header.tex │ ├── mfile.awk │ ├── mfooter.tex │ ├── mheader.tex │ └── rule.awk ├── GPU │ ├── cholmod_gpu.c │ ├── cholmod_gpu_kernels.c │ ├── cholmod_gpu_kernels.cu │ └── t_cholmod_gpu.c ├── Include │ ├── README.txt │ ├── cholmod.h │ ├── cholmod_blas.h │ ├── cholmod_camd.h │ ├── cholmod_check.h │ ├── cholmod_cholesky.h │ ├── cholmod_complexity.h │ ├── cholmod_config.h.cmake.in │ ├── cholmod_core.h │ ├── cholmod_function.h │ ├── cholmod_gpu.h │ ├── cholmod_gpu_kernels.h │ ├── cholmod_internal.h │ ├── cholmod_io64.h │ ├── cholmod_matrixops.h │ ├── cholmod_modify.h │ ├── cholmod_partition.h │ ├── cholmod_supernodal.h │ └── cholmod_template.h ├── Lib │ └── Makefile ├── MATLAB │ ├── Contents.m │ ├── README.txt │ ├── Test │ │ ├── Contents.m │ │ ├── GB_spones_mex.c │ │ ├── cholmod_test.m │ │ ├── dg.m │ │ ├── ltest.m │ │ ├── ltest2.m │ │ ├── lxtest.m │ │ ├── n2.m │ │ ├── nn.m │ │ ├── test0.m │ │ ├── test1.m │ │ ├── test10.m │ │ ├── test11.m │ │ ├── test11results.m │ │ ├── test12.m │ │ ├── test13.m │ │ ├── test14.m │ │ ├── test15.m │ │ ├── test16.m │ │ ├── test17.m │ │ ├── test18.m │ │ ├── test19.m │ │ ├── test2.m │ │ ├── test20.m │ │ ├── test21.m │ │ ├── test22.m │ │ ├── test23.m │ │ ├── test24.m │ │ ├── test25.m │ │ ├── test26.m │ │ ├── test27.m │ │ ├── test28.m │ │ ├── test29.m │ │ ├── test3.m │ │ ├── test4.m │ │ ├── test5.m │ │ ├── test6.m │ │ ├── test7.m │ │ ├── test8.m │ │ ├── test9.m │ │ ├── testmm.m │ │ └── testsolve.m │ ├── Windows │ │ ├── README.txt │ │ ├── rand48.c │ │ └── strings.h │ ├── analyze.c │ ├── analyze.m │ ├── bisect.c │ ├── bisect.m │ ├── chol2.c │ ├── chol2.m │ ├── cholmod2.c │ ├── cholmod2.m │ ├── cholmod_demo.m │ ├── cholmod_install.m │ ├── cholmod_make.m │ ├── cholmod_matlab.c │ ├── cholmod_matlab.h │ ├── cholmod_updown_demo.m │ ├── etree2.c │ ├── etree2.m │ ├── get_symmetry.m │ ├── gpl.txt │ ├── graph_demo.m │ ├── lchol.c │ ├── lchol.m │ ├── ldl_normest.m │ ├── ldlchol.c │ ├── ldlchol.m │ ├── ldlrowmod.c │ ├── ldlrowmod.m │ ├── ldlsolve.c │ ├── ldlsolve.m │ ├── ldlsplit.m │ ├── ldlupdate.c │ ├── ldlupdate.m │ ├── lsubsolve.c │ ├── lxbpattern.c │ ├── metis.c │ ├── metis.m │ ├── mread.c │ ├── mread.m │ ├── mwrite.c │ ├── mwrite.m │ ├── nesdis.c │ ├── nesdis.m │ ├── resymbol.c │ ├── resymbol.m │ ├── sdmult.c │ ├── sdmult.m │ ├── septree.c │ ├── septree.m │ ├── sparse2.c │ ├── sparse2.m │ ├── spsym.c │ ├── spsym.m │ ├── symbfact2.c │ └── symbfact2.m ├── Makefile ├── MatrixOps │ ├── cholmod_drop.c │ ├── cholmod_horzcat.c │ ├── cholmod_norm.c │ ├── cholmod_scale.c │ ├── cholmod_sdmult.c │ ├── cholmod_ssmult.c │ ├── cholmod_submatrix.c │ ├── cholmod_symmetry.c │ ├── cholmod_vertcat.c │ ├── gpl.txt │ └── t_cholmod_sdmult.c ├── Modify │ ├── cholmod_rowadd.c │ ├── cholmod_rowdel.c │ ├── cholmod_updown.c │ ├── gpl.txt │ ├── t_cholmod_updown.c │ └── t_cholmod_updown_numkr.c ├── Partition │ ├── cholmod_camd.c │ ├── cholmod_ccolamd.c │ ├── cholmod_csymamd.c │ ├── cholmod_metis.c │ ├── cholmod_nesdis.c │ └── lesser.txt ├── README.txt ├── Supernodal │ ├── cholmod_super_numeric.c │ ├── cholmod_super_solve.c │ ├── cholmod_super_symbolic.c │ ├── gpl.txt │ ├── t_cholmod_super_numeric.c │ └── t_cholmod_super_solve.c ├── Tcov │ ├── Make.inc │ ├── Makefile │ ├── Matrix │ │ ├── 0 │ │ ├── 4 │ │ ├── 5 │ │ ├── 0_1 │ │ ├── 1_0 │ │ ├── 1e99 │ │ ├── 2.tri │ │ ├── 20lo │ │ ├── 2_3 │ │ ├── 2diag.tri │ │ ├── 2lo.tri │ │ ├── 2up.tri │ │ ├── 3_2 │ │ ├── 3b │ │ ├── 3by0.mtx │ │ ├── 3singular │ │ ├── 4lo │ │ ├── 5by50 │ │ ├── C9840 │ │ ├── a1 │ │ ├── a2 │ │ ├── afiro │ │ ├── c10 │ │ ├── c30lo │ │ ├── c30up │ │ ├── c3singular │ │ ├── c5lo │ │ ├── c5up │ │ ├── c5up2 │ │ ├── cha │ │ ├── cha.mtx │ │ ├── cpi │ │ ├── crud1 │ │ ├── crud2 │ │ ├── cs.mtx │ │ ├── csa.mtx │ │ ├── cza │ │ ├── cza.mtx │ │ ├── diag │ │ ├── ex5lo │ │ ├── fullcha.mtx │ │ ├── fullcrud.mtx │ │ ├── fullcrud1.mtx │ │ ├── fullcrud2.mtx │ │ ├── fullcsa.mtx │ │ ├── fullcza.mtx │ │ ├── fullrsa.mtx │ │ ├── fullrza.mtx │ │ ├── galenet │ │ ├── huge.tri │ │ ├── ibm32 │ │ ├── itest2 │ │ ├── itest6 │ │ ├── k01up │ │ ├── mega.tri │ │ ├── one │ │ ├── pi │ │ ├── plskz362.mtx │ │ ├── r5lo │ │ ├── r5lo2 │ │ ├── r5up │ │ ├── r5up2 │ │ ├── rza.mtx │ │ ├── tri │ │ ├── tribig │ │ ├── z10 │ │ ├── z30lo │ │ ├── z30up │ │ ├── z3singular │ │ ├── z5lo │ │ ├── z5up │ │ ├── z5up2 │ │ └── zero │ ├── README.txt │ ├── amdtest.c │ ├── aug.c │ ├── camdtest.c │ ├── cctest.c │ ├── cm.c │ ├── cm.h │ ├── cmread.c │ ├── comments.txt │ ├── cov.awk │ ├── covall │ ├── cover │ ├── covs │ ├── ctest.c │ ├── gcovs │ ├── go │ ├── gpl.txt │ ├── huge.c │ ├── leak.c │ ├── lpdemo.c │ ├── memory.c │ ├── null.c │ ├── null2.c │ ├── raw_factor.c │ ├── solve.c │ ├── test_ops.c │ └── unpack.c └── Valgrind │ ├── Make.inc │ ├── Makefile │ ├── Matrix │ ├── README.txt │ ├── amdtest.c │ ├── aug.c │ ├── camdtest.c │ ├── cctest.c │ ├── cm.c │ ├── cm.h │ ├── cmread.c │ ├── comments.txt │ ├── ctest.c │ ├── gpl.txt │ ├── huge.c │ ├── leak.c │ ├── lpdemo.c │ ├── memory.c │ ├── null.c │ ├── null2.c │ ├── raw_factor.c │ ├── solve.c │ ├── suppress │ ├── test_ops.c │ ├── tmp │ └── .gitignore │ └── unpack.c ├── CITATION.bib ├── CMakeLists.txt ├── CODE_OF_CONDUCT.md ├── COLAMD ├── Demo │ ├── Makefile │ ├── colamd_example.c │ ├── colamd_example.out │ ├── colamd_l_example.c │ └── colamd_l_example.out ├── Doc │ ├── ChangeLog │ ├── License.txt │ └── lesser.txt ├── Include │ └── colamd.h ├── Lib │ └── Makefile ├── MATLAB │ ├── Contents.m │ ├── colamd2.m │ ├── colamd_demo.m │ ├── colamd_install.m │ ├── colamd_make.m │ ├── colamd_test.m │ ├── colamdmex.c │ ├── colamdtestmex.c │ ├── luflops.m │ ├── symamd2.m │ ├── symamdmex.c │ └── symamdtestmex.c ├── Makefile ├── README.txt └── Source │ └── colamd.c ├── CONTRIBUTING.md ├── CONTRIBUTOR-LICENSE.txt ├── CSparse ├── Demo │ ├── Makefile │ ├── README.txt │ ├── cs_demo.c │ ├── cs_demo.h │ ├── cs_demo.out │ ├── cs_demo1.c │ ├── cs_demo2.c │ └── cs_demo3.c ├── Doc │ ├── ChangeLog │ ├── License.txt │ └── lesser.txt ├── Include │ └── cs.h ├── Lib │ └── Makefile ├── MATLAB │ ├── CSparse │ │ ├── Contents.m │ │ ├── README.txt │ │ ├── ccspy.m │ │ ├── cs_add.m │ │ ├── cs_add_mex.c │ │ ├── cs_amd.m │ │ ├── cs_amd_mex.c │ │ ├── cs_chol.m │ │ ├── cs_chol_mex.c │ │ ├── cs_cholsol.m │ │ ├── cs_cholsol_mex.c │ │ ├── cs_counts.m │ │ ├── cs_counts_mex.c │ │ ├── cs_dmperm.m │ │ ├── cs_dmperm_mex.c │ │ ├── cs_dmsol.m │ │ ├── cs_dmspy.m │ │ ├── cs_droptol.m │ │ ├── cs_droptol_mex.c │ │ ├── cs_esep.m │ │ ├── cs_etree.m │ │ ├── cs_etree_mex.c │ │ ├── cs_gaxpy.m │ │ ├── cs_gaxpy_mex.c │ │ ├── cs_lsolve.m │ │ ├── cs_lsolve_mex.c │ │ ├── cs_ltsolve.m │ │ ├── cs_ltsolve_mex.c │ │ ├── cs_lu.m │ │ ├── cs_lu_mex.c │ │ ├── cs_lusol.m │ │ ├── cs_lusol_mex.c │ │ ├── cs_make.m │ │ ├── cs_mex.c │ │ ├── cs_mex.h │ │ ├── cs_multiply.m │ │ ├── cs_multiply_mex.c │ │ ├── cs_must_compile.m │ │ ├── cs_nd.m │ │ ├── cs_nsep.m │ │ ├── cs_permute.m │ │ ├── cs_permute_mex.c │ │ ├── cs_print.m │ │ ├── cs_print_mex.c │ │ ├── cs_qleft.m │ │ ├── cs_qr.m │ │ ├── cs_qr_mex.c │ │ ├── cs_qright.m │ │ ├── cs_qrsol.m │ │ ├── cs_qrsol_mex.c │ │ ├── cs_randperm.m │ │ ├── cs_randperm_mex.c │ │ ├── cs_scc.m │ │ ├── cs_scc2.m │ │ ├── cs_scc_mex.c │ │ ├── cs_sep.m │ │ ├── cs_sparse.m │ │ ├── cs_sparse_mex.c │ │ ├── cs_sqr.m │ │ ├── cs_sqr_mex.c │ │ ├── cs_symperm.m │ │ ├── cs_symperm_mex.c │ │ ├── cs_thumb_mex.c │ │ ├── cs_transpose.m │ │ ├── cs_transpose_mex.c │ │ ├── cs_updown.m │ │ ├── cs_updown_mex.c │ │ ├── cs_usolve.m │ │ ├── cs_usolve_mex.c │ │ ├── cs_utsolve.m │ │ ├── cs_utsolve_mex.c │ │ ├── cspy.m │ │ └── private │ │ │ ├── drawbox.m │ │ │ └── drawboxes.m │ ├── Demo │ │ ├── Contents.m │ │ ├── README.txt │ │ ├── cs_demo.m │ │ ├── cs_demo1.m │ │ ├── cs_demo2.m │ │ ├── cs_demo3.m │ │ └── private │ │ │ ├── demo2.m │ │ │ ├── demo3.m │ │ │ ├── ex2.m │ │ │ ├── ex3.m │ │ │ ├── ex_1.m │ │ │ ├── frand.m │ │ │ ├── get_problem.m │ │ │ ├── is_sym.m │ │ │ ├── mesh2d1.m │ │ │ ├── mesh2d2.m │ │ │ ├── mesh3d1.m │ │ │ ├── mesh3d2.m │ │ │ ├── print_order.m │ │ │ ├── print_resid.m │ │ │ └── rhs.m │ ├── README.txt │ ├── Test │ │ ├── Contents.m │ │ ├── README.txt │ │ ├── another_colormap.m │ │ ├── check_if_same.m │ │ ├── chol_downdate.m │ │ ├── chol_example.m │ │ ├── chol_left.m │ │ ├── chol_left2.m │ │ ├── chol_right.m │ │ ├── chol_super.m │ │ ├── chol_up.m │ │ ├── chol_update.m │ │ ├── chol_updown.m │ │ ├── choldn.m │ │ ├── cholup.m │ │ ├── cholupdown.m │ │ ├── cond1est.m │ │ ├── cs_fiedler.m │ │ ├── cs_frand.m │ │ ├── cs_frand_mex.c │ │ ├── cs_ipvec.m │ │ ├── cs_ipvec_mex.c │ │ ├── cs_maxtransr.m │ │ ├── cs_maxtransr_mex.c │ │ ├── cs_pvec.m │ │ ├── cs_pvec_mex.c │ │ ├── cs_q1.m │ │ ├── cs_reach.m │ │ ├── cs_reach_mex.c │ │ ├── cs_reachr.m │ │ ├── cs_reachr_mex.c │ │ ├── cs_rowcnt.m │ │ ├── cs_rowcnt_mex.c │ │ ├── cs_sparse2.m │ │ ├── cs_sparse2_mex.c │ │ ├── cs_test_make.m │ │ ├── cspy_test.m │ │ ├── dmperm_test.m │ │ ├── dmspy_test.m │ │ ├── etree_sample.m │ │ ├── givens2.m │ │ ├── gqr3.m │ │ ├── happly.m │ │ ├── hmake1.m │ │ ├── house.m │ │ ├── lu_left.m │ │ ├── lu_right.m │ │ ├── lu_rightp.m │ │ ├── lu_rightpr.m │ │ ├── lu_rightr.m │ │ ├── mynormest1.m │ │ ├── myqr.m │ │ ├── norm1est.m │ │ ├── qr2.m │ │ ├── qr_givens.m │ │ ├── qr_givens_full.m │ │ ├── qr_left.m │ │ ├── qr_right.m │ │ ├── sample_colormap.m │ │ ├── signum.m │ │ ├── sqr_example.m │ │ ├── test1.m │ │ ├── test10.m │ │ ├── test11.m │ │ ├── test12.m │ │ ├── test13.m │ │ ├── test14.m │ │ ├── test15.m │ │ ├── test16.m │ │ ├── test17.m │ │ ├── test18.m │ │ ├── test19.m │ │ ├── test2.m │ │ ├── test20.m │ │ ├── test21.m │ │ ├── test22.m │ │ ├── test23.m │ │ ├── test24.m │ │ ├── test25.m │ │ ├── test26.m │ │ ├── test27.m │ │ ├── test28.m │ │ ├── test3.m │ │ ├── test4.m │ │ ├── test5.m │ │ ├── test6.m │ │ ├── test7.m │ │ ├── test8.m │ │ ├── test9.m │ │ ├── test_qr.m │ │ ├── test_qr1.m │ │ ├── test_qrsol.m │ │ ├── test_randperms.m │ │ ├── test_sep.m │ │ ├── testall.m │ │ └── testh.m │ ├── cs_install.m │ └── ssget │ │ ├── Contents.m │ │ ├── Doc │ │ ├── ChangeLog │ │ ├── License.txt │ │ ├── MatrixMarket.pdf │ │ ├── hb.pdf │ │ ├── nep.pdf │ │ └── rb.pdf │ │ ├── MM │ │ └── .gitignore │ │ ├── Makefile │ │ ├── RB │ │ └── .gitignore │ │ ├── README.txt │ │ ├── UFget.m │ │ ├── UFkinds.m │ │ ├── files │ │ ├── ss_index.mat │ │ ├── ss_listing.txt │ │ ├── ssget_java.png │ │ └── ssstats.csv │ │ ├── mat │ │ └── .gitignore │ │ ├── ssget.m │ │ ├── ssget_defaults.m │ │ ├── ssget_example.m │ │ ├── ssget_lookup.m │ │ ├── ssgrep.m │ │ ├── ssgui.jar │ │ ├── ssgui.java │ │ ├── sshelp.html │ │ ├── sskinds.m │ │ ├── sssvd.m │ │ ├── ssweb.m │ │ └── svd │ │ └── .gitignore ├── Makefile ├── Matrix │ ├── ash219 │ ├── bcsstk01 │ ├── bcsstk16 │ ├── fs_183_1 │ ├── ibm32a │ ├── ibm32b │ ├── lp_afiro │ ├── mbeacxc │ ├── t1 │ └── west0067 ├── README.txt ├── Source │ ├── README.txt │ ├── cs_add.c │ ├── cs_amd.c │ ├── cs_chol.c │ ├── cs_cholsol.c │ ├── cs_compress.c │ ├── cs_counts.c │ ├── cs_cumsum.c │ ├── cs_dfs.c │ ├── cs_dmperm.c │ ├── cs_droptol.c │ ├── cs_dropzeros.c │ ├── cs_dupl.c │ ├── cs_entry.c │ ├── cs_ereach.c │ ├── cs_etree.c │ ├── cs_fkeep.c │ ├── cs_gaxpy.c │ ├── cs_happly.c │ ├── cs_house.c │ ├── cs_ipvec.c │ ├── cs_leaf.c │ ├── cs_load.c │ ├── cs_lsolve.c │ ├── cs_ltsolve.c │ ├── cs_lu.c │ ├── cs_lusol.c │ ├── cs_malloc.c │ ├── cs_maxtrans.c │ ├── cs_multiply.c │ ├── cs_norm.c │ ├── cs_permute.c │ ├── cs_pinv.c │ ├── cs_post.c │ ├── cs_print.c │ ├── cs_pvec.c │ ├── cs_qr.c │ ├── cs_qrsol.c │ ├── cs_randperm.c │ ├── cs_reach.c │ ├── cs_scatter.c │ ├── cs_scc.c │ ├── cs_schol.c │ ├── cs_spsolve.c │ ├── cs_sqr.c │ ├── cs_symperm.c │ ├── cs_tdfs.c │ ├── cs_transpose.c │ ├── cs_updown.c │ ├── cs_usolve.c │ ├── cs_util.c │ └── cs_utsolve.c └── Tcov │ ├── Makefile │ ├── README.txt │ ├── cov.awk │ ├── covall │ ├── covall.linux │ ├── covall.sol │ ├── cover │ ├── covs │ ├── cstcov_malloc_test.c │ ├── cstcov_malloc_test.h │ ├── cstcov_test.c │ ├── gcovs │ ├── nil │ └── zero ├── CSparse_to_CXSparse ├── CXSparse ├── CMakeLists.txt ├── Demo │ ├── Makefile │ ├── README.txt │ ├── cs_ci_demo.c │ ├── cs_ci_demo.h │ ├── cs_ci_demo1.c │ ├── cs_ci_demo2.c │ ├── cs_ci_demo3.c │ ├── cs_cl_demo.c │ ├── cs_cl_demo.h │ ├── cs_cl_demo1.c │ ├── cs_cl_demo2.c │ ├── cs_cl_demo3.c │ ├── cs_demo.c │ ├── cs_demo.h │ ├── cs_demo.out │ ├── cs_demo1.c │ ├── cs_demo2.c │ ├── cs_demo3.c │ ├── cs_di_demo.c │ ├── cs_di_demo.h │ ├── cs_di_demo1.c │ ├── cs_di_demo2.c │ ├── cs_di_demo3.c │ ├── cs_dl_demo.c │ ├── cs_dl_demo.h │ ├── cs_dl_demo1.c │ ├── cs_dl_demo2.c │ ├── cs_dl_demo3.c │ ├── cs_idemo.c │ └── cs_ldemo.c ├── Doc │ ├── ChangeLog │ ├── License.txt │ └── lesser.txt ├── Include │ └── cs.h ├── Lib │ └── Makefile ├── MATLAB │ ├── CSparse │ │ ├── Contents.m │ │ ├── README.txt │ │ ├── ccspy.m │ │ ├── cs_add.m │ │ ├── cs_add_mex.c │ │ ├── cs_amd.m │ │ ├── cs_amd_mex.c │ │ ├── cs_chol.m │ │ ├── cs_chol_mex.c │ │ ├── cs_cholsol.m │ │ ├── cs_cholsol_mex.c │ │ ├── cs_counts.m │ │ ├── cs_counts_mex.c │ │ ├── cs_dmperm.m │ │ ├── cs_dmperm_mex.c │ │ ├── cs_dmsol.m │ │ ├── cs_dmspy.m │ │ ├── cs_droptol.m │ │ ├── cs_droptol_mex.c │ │ ├── cs_esep.m │ │ ├── cs_etree.m │ │ ├── cs_etree_mex.c │ │ ├── cs_gaxpy.m │ │ ├── cs_gaxpy_mex.c │ │ ├── cs_lsolve.m │ │ ├── cs_lsolve_mex.c │ │ ├── cs_ltsolve.m │ │ ├── cs_ltsolve_mex.c │ │ ├── cs_lu.m │ │ ├── cs_lu_mex.c │ │ ├── cs_lusol.m │ │ ├── cs_lusol_mex.c │ │ ├── cs_make.m │ │ ├── cs_mex.c │ │ ├── cs_mex.h │ │ ├── cs_multiply.m │ │ ├── cs_multiply_mex.c │ │ ├── cs_must_compile.m │ │ ├── cs_nd.m │ │ ├── cs_nsep.m │ │ ├── cs_permute.m │ │ ├── cs_permute_mex.c │ │ ├── cs_print.m │ │ ├── cs_print_mex.c │ │ ├── cs_qleft.m │ │ ├── cs_qr.m │ │ ├── cs_qr_mex.c │ │ ├── cs_qright.m │ │ ├── cs_qrsol.m │ │ ├── cs_qrsol_mex.c │ │ ├── cs_randperm.m │ │ ├── cs_randperm_mex.c │ │ ├── cs_scc.m │ │ ├── cs_scc2.m │ │ ├── cs_scc_mex.c │ │ ├── cs_sep.m │ │ ├── cs_sparse.m │ │ ├── cs_sparse_mex.c │ │ ├── cs_sqr.m │ │ ├── cs_sqr_mex.c │ │ ├── cs_symperm.m │ │ ├── cs_symperm_mex.c │ │ ├── cs_thumb_mex.c │ │ ├── cs_transpose.m │ │ ├── cs_transpose_mex.c │ │ ├── cs_updown.m │ │ ├── cs_updown_mex.c │ │ ├── cs_usolve.m │ │ ├── cs_usolve_mex.c │ │ ├── cs_utsolve.m │ │ ├── cs_utsolve_mex.c │ │ ├── cspy.m │ │ └── private │ │ │ ├── cs_make_helper.m │ │ │ ├── drawbox.m │ │ │ └── drawboxes.m │ ├── Demo │ │ ├── Contents.m │ │ ├── README.txt │ │ ├── cs_demo.m │ │ ├── cs_demo1.m │ │ ├── cs_demo2.m │ │ ├── cs_demo3.m │ │ └── private │ │ │ ├── demo2.m │ │ │ ├── demo3.m │ │ │ ├── ex2.m │ │ │ ├── ex3.m │ │ │ ├── ex_1.m │ │ │ ├── frand.m │ │ │ ├── get_problem.m │ │ │ ├── is_sym.m │ │ │ ├── mesh2d1.m │ │ │ ├── mesh2d2.m │ │ │ ├── mesh3d1.m │ │ │ ├── mesh3d2.m │ │ │ ├── print_order.m │ │ │ ├── print_resid.m │ │ │ └── rhs.m │ ├── README.txt │ ├── Test │ │ ├── Contents.m │ │ ├── README.txt │ │ ├── another_colormap.m │ │ ├── check_if_same.m │ │ ├── chol_downdate.m │ │ ├── chol_example.m │ │ ├── chol_left.m │ │ ├── chol_left2.m │ │ ├── chol_right.m │ │ ├── chol_super.m │ │ ├── chol_up.m │ │ ├── chol_update.m │ │ ├── chol_updown.m │ │ ├── chol_updown2.m │ │ ├── choldn.m │ │ ├── cholup.m │ │ ├── cholupdown.m │ │ ├── cond1est.m │ │ ├── cs_fiedler.m │ │ ├── cs_frand.m │ │ ├── cs_frand_mex.c │ │ ├── cs_ipvec.m │ │ ├── cs_ipvec_mex.c │ │ ├── cs_maxtransr.m │ │ ├── cs_maxtransr_mex.c │ │ ├── cs_pvec.m │ │ ├── cs_pvec_mex.c │ │ ├── cs_q1.m │ │ ├── cs_reach.m │ │ ├── cs_reach_mex.c │ │ ├── cs_reachr.m │ │ ├── cs_reachr_mex.c │ │ ├── cs_rowcnt.m │ │ ├── cs_rowcnt_mex.c │ │ ├── cs_sparse2.m │ │ ├── cs_sparse2_mex.c │ │ ├── cs_test_make.m │ │ ├── cspy_test.m │ │ ├── dmperm_test.m │ │ ├── dmspy_test.m │ │ ├── etree_sample.m │ │ ├── givens2.m │ │ ├── gqr3.m │ │ ├── happly.m │ │ ├── hmake1.m │ │ ├── house.m │ │ ├── lu_left.m │ │ ├── lu_right.m │ │ ├── lu_rightp.m │ │ ├── lu_rightpr.m │ │ ├── lu_rightr.m │ │ ├── mynormest1.m │ │ ├── myqr.m │ │ ├── norm1est.m │ │ ├── qr2.m │ │ ├── qr_givens.m │ │ ├── qr_givens_full.m │ │ ├── qr_left.m │ │ ├── qr_right.m │ │ ├── sample_colormap.m │ │ ├── signum.m │ │ ├── sqr_example.m │ │ ├── test1.m │ │ ├── test10.m │ │ ├── test11.m │ │ ├── test12.m │ │ ├── test13.m │ │ ├── test14.m │ │ ├── test15.m │ │ ├── test16.m │ │ ├── test17.m │ │ ├── test18.m │ │ ├── test19.m │ │ ├── test2.m │ │ ├── test20.m │ │ ├── test21.m │ │ ├── test22.m │ │ ├── test23.m │ │ ├── test24.m │ │ ├── test25.m │ │ ├── test26.m │ │ ├── test27.m │ │ ├── test28.m │ │ ├── test3.m │ │ ├── test4.m │ │ ├── test5.m │ │ ├── test6.m │ │ ├── test7.m │ │ ├── test8.m │ │ ├── test9.m │ │ ├── test_qr.m │ │ ├── test_qr1.m │ │ ├── test_qrsol.m │ │ ├── test_randperms.m │ │ ├── test_sep.m │ │ ├── testall.m │ │ └── testh.m │ ├── cs_install.m │ └── ssget │ │ ├── Contents.m │ │ ├── Doc │ │ ├── ChangeLog │ │ ├── License.txt │ │ ├── MatrixMarket.pdf │ │ ├── hb.pdf │ │ ├── nep.pdf │ │ └── rb.pdf │ │ ├── MM │ │ └── .gitignore │ │ ├── Makefile │ │ ├── RB │ │ └── .gitignore │ │ ├── README.txt │ │ ├── UFget.m │ │ ├── UFkinds.m │ │ ├── files │ │ ├── ss_index.mat │ │ ├── ss_listing.txt │ │ ├── ssget_java.png │ │ └── ssstats.csv │ │ ├── mat │ │ └── .gitignore │ │ ├── ssget.m │ │ ├── ssget_defaults.m │ │ ├── ssget_example.m │ │ ├── ssget_lookup.m │ │ ├── ssgrep.m │ │ ├── ssgui.jar │ │ ├── ssgui.java │ │ ├── sshelp.html │ │ ├── sskinds.m │ │ ├── sssvd.m │ │ ├── ssweb.m │ │ └── svd │ │ └── .gitignore ├── Makefile ├── Matrix │ ├── ash219 │ ├── bcsstk01 │ ├── bcsstk16 │ ├── c4 │ ├── c_ibm32a │ ├── c_ibm32b │ ├── c_mbeacxc │ ├── c_west0067 │ ├── fs_183_1 │ ├── ibm32a │ ├── ibm32b │ ├── lp_afiro │ ├── mbeacxc │ ├── mhd1280b │ ├── neumann │ ├── qc324 │ ├── t1 │ ├── t2 │ ├── t3 │ ├── t4 │ ├── west0067 │ └── young1c ├── README.txt ├── Source │ ├── README.txt │ ├── cs_add.c │ ├── cs_amd.c │ ├── cs_chol.c │ ├── cs_cholsol.c │ ├── cs_compress.c │ ├── cs_convert.c │ ├── cs_counts.c │ ├── cs_cumsum.c │ ├── cs_dfs.c │ ├── cs_dmperm.c │ ├── cs_droptol.c │ ├── cs_dropzeros.c │ ├── cs_dupl.c │ ├── cs_entry.c │ ├── cs_ereach.c │ ├── cs_etree.c │ ├── cs_fkeep.c │ ├── cs_gaxpy.c │ ├── cs_happly.c │ ├── cs_house.c │ ├── cs_ipvec.c │ ├── cs_leaf.c │ ├── cs_load.c │ ├── cs_lsolve.c │ ├── cs_ltsolve.c │ ├── cs_lu.c │ ├── cs_lusol.c │ ├── cs_malloc.c │ ├── cs_maxtrans.c │ ├── cs_multiply.c │ ├── cs_norm.c │ ├── cs_permute.c │ ├── cs_pinv.c │ ├── cs_post.c │ ├── cs_print.c │ ├── cs_pvec.c │ ├── cs_qr.c │ ├── cs_qrsol.c │ ├── cs_randperm.c │ ├── cs_reach.c │ ├── cs_scatter.c │ ├── cs_scc.c │ ├── cs_schol.c │ ├── cs_spsolve.c │ ├── cs_sqr.c │ ├── cs_symperm.c │ ├── cs_tdfs.c │ ├── cs_transpose.c │ ├── cs_updown.c │ ├── cs_usolve.c │ ├── cs_util.c │ └── cs_utsolve.c ├── Tcov │ ├── Makefile │ ├── README.txt │ ├── cov.awk │ ├── covall │ ├── covall.linux │ ├── covall.sol │ ├── cover │ ├── covs │ ├── cstcov_malloc_test.c │ ├── cstcov_malloc_test.h │ ├── cstcov_test.c │ ├── czero │ ├── gcovs │ ├── nil │ └── zero └── cxsparse-config.cmake.in ├── CXSparse_newfiles ├── Demo │ ├── Makefile │ ├── README.txt │ ├── cs_idemo.c │ └── cs_ldemo.c ├── Doc │ └── License.txt ├── Include │ └── cs.h ├── Lib │ └── Makefile ├── MATLAB │ ├── CSparse │ │ ├── Contents.m │ │ ├── README.txt │ │ ├── cs_add_mex.c │ │ ├── cs_amd_mex.c │ │ ├── cs_chol_mex.c │ │ ├── cs_cholsol_mex.c │ │ ├── cs_counts_mex.c │ │ ├── cs_dmperm_mex.c │ │ ├── cs_droptol_mex.c │ │ ├── cs_esep.m │ │ ├── cs_etree_mex.c │ │ ├── cs_gaxpy_mex.c │ │ ├── cs_lsolve_mex.c │ │ ├── cs_ltsolve_mex.c │ │ ├── cs_lu_mex.c │ │ ├── cs_lusol_mex.c │ │ ├── cs_make.m │ │ ├── cs_mex.c │ │ ├── cs_mex.h │ │ ├── cs_multiply_mex.c │ │ ├── cs_permute_mex.c │ │ ├── cs_print_mex.c │ │ ├── cs_qr_mex.c │ │ ├── cs_qrsol_mex.c │ │ ├── cs_randperm_mex.c │ │ ├── cs_scc_mex.c │ │ ├── cs_sparse_mex.c │ │ ├── cs_sqr_mex.c │ │ ├── cs_symperm_mex.c │ │ ├── cs_thumb_mex.c │ │ ├── cs_transpose.m │ │ ├── cs_transpose_mex.c │ │ ├── cs_updown_mex.c │ │ ├── cs_usolve_mex.c │ │ ├── cs_utsolve_mex.c │ │ └── private │ │ │ └── cs_make_helper.m │ ├── Demo │ │ ├── Contents.m │ │ ├── README.txt │ │ └── cs_demo.m │ ├── README.txt │ ├── Test │ │ ├── Contents.m │ │ ├── README.txt │ │ ├── chol_updown2.m │ │ ├── cholupdown.m │ │ ├── cs_fiedler.m │ │ ├── cs_frand_mex.c │ │ ├── cs_ipvec_mex.c │ │ ├── cs_maxtransr_mex.c │ │ ├── cs_pvec_mex.c │ │ ├── cs_reach_mex.c │ │ ├── cs_reachr_mex.c │ │ ├── cs_rowcnt_mex.c │ │ ├── cs_sparse2_mex.c │ │ ├── cs_test_make.m │ │ ├── house.m │ │ ├── norm1est.m │ │ ├── test1.m │ │ ├── test10.m │ │ ├── test11.m │ │ ├── test12.m │ │ ├── test13.m │ │ ├── test14.m │ │ ├── test15.m │ │ ├── test16.m │ │ ├── test17.m │ │ ├── test18.m │ │ ├── test19.m │ │ ├── test2.m │ │ ├── test20.m │ │ ├── test21.m │ │ ├── test22.m │ │ ├── test23.m │ │ ├── test24.m │ │ ├── test25.m │ │ ├── test26.m │ │ ├── test27.m │ │ ├── test28.m │ │ ├── test3.m │ │ ├── test4.m │ │ ├── test5.m │ │ ├── test6.m │ │ ├── test7.m │ │ ├── test8.m │ │ ├── test9.m │ │ ├── testall.m │ │ └── testh.m │ └── cs_install.m ├── Makefile ├── Matrix │ ├── c4 │ ├── c_ibm32a │ ├── c_ibm32b │ ├── c_mbeacxc │ ├── c_west0067 │ ├── mhd1280b │ ├── neumann │ ├── qc324 │ ├── t2 │ ├── t3 │ ├── t4 │ └── young1c ├── README.txt ├── Source │ ├── README.txt │ ├── cs_convert.c │ ├── cs_house.c │ ├── cs_load.c │ ├── cs_print.c │ └── cs_updown.c └── Tcov │ ├── Makefile │ ├── README.txt │ ├── cstcov_malloc_test.c │ ├── cstcov_malloc_test.h │ └── czero ├── ChangeLog ├── Contents.m ├── GPUQREngine ├── Demo │ ├── Makefile │ ├── README.txt │ └── gpuqrengine_demo.cpp ├── Doc │ ├── ChangeLog │ ├── License.txt │ └── gpl.txt ├── Include │ ├── GPUQREngine.hpp │ ├── GPUQREngine_BucketList.hpp │ ├── GPUQREngine_Common.hpp │ ├── GPUQREngine_Front.hpp │ ├── GPUQREngine_FrontState.hpp │ ├── GPUQREngine_GraphVizHelper.hpp │ ├── GPUQREngine_Internal.hpp │ ├── GPUQREngine_LLBundle.hpp │ ├── GPUQREngine_SEntry.hpp │ ├── GPUQREngine_Scheduler.hpp │ ├── GPUQREngine_SparseMeta.hpp │ ├── GPUQREngine_Stats.hpp │ ├── GPUQREngine_TaskDescriptor.hpp │ ├── GPUQREngine_Timing.hpp │ └── Kernel │ │ ├── Apply │ │ ├── block_apply.cu │ │ ├── block_apply_1.cu │ │ ├── block_apply_1_by_1.cu │ │ ├── block_apply_2.cu │ │ ├── block_apply_2_by_1.cu │ │ ├── block_apply_3.cu │ │ ├── block_apply_3_by_1.cu │ │ ├── block_apply_chunk.cu │ │ ├── cevta_tile.cu │ │ ├── params_apply.hpp │ │ └── pipelined_rearrange.cu │ │ ├── Assemble │ │ ├── packAssemble.cu │ │ └── sAssemble.cu │ │ ├── Factorize │ │ ├── factorize_3_by_1.cu │ │ ├── factorize_vt.cu │ │ ├── factorize_vt_1_by_1.cu │ │ ├── factorize_vt_1_by_1_edge.cu │ │ ├── factorize_vt_2_by_1.cu │ │ ├── factorize_vt_2_by_1_edge.cu │ │ ├── factorize_vt_3_by_1.cu │ │ └── factorize_vt_3_by_1_edge.cu │ │ ├── qrKernel.cu │ │ ├── sharedMemory.hpp │ │ └── uberKernel.cu ├── Lib │ └── Makefile ├── Makefile ├── README.txt └── Source │ ├── BucketList │ ├── BucketList.cpp │ ├── BucketList_AdvanceBundles.cpp │ ├── BucketList_CreateBundles.cpp │ ├── BucketList_FillWorkQueue.cpp │ ├── BucketList_GrowBundles.cpp │ ├── BucketList_Manage.cpp │ └── BucketList_PostProcessing.cpp │ ├── GPUQREngine_ExpertDense.cpp │ ├── GPUQREngine_ExpertSparse.cpp │ ├── GPUQREngine_GraphVizHelper.cpp │ ├── GPUQREngine_Internal.cpp │ ├── GPUQREngine_UberKernel.cu │ ├── LLBundle │ ├── LLBundle.cpp │ ├── LLBundle_AddTiles.cpp │ ├── LLBundle_Advance.cpp │ ├── LLBundle_GPUPack.cpp │ ├── LLBundle_PipelinedRearrange.cpp │ └── LLBundle_UpdateSecondMinIndex.cpp │ ├── Scheduler │ ├── Scheduler.cpp │ ├── Scheduler_FillWorkQueue.cpp │ ├── Scheduler_Front.cpp │ ├── Scheduler_LaunchKernel.cpp │ ├── Scheduler_PostProcess.cpp │ ├── Scheduler_Render.cpp │ ├── Scheduler_TransferData.cpp │ └── ssgpu_maxQueueSize.cpp │ └── TaskDescriptor │ └── TaskDescriptor_flops.cpp ├── GraphBLAS ├── .gitignore ├── CITATION.bib ├── CMakeLists.txt ├── CONTRIBUTOR-LICENSE.txt ├── CUDA │ ├── .gitignore │ ├── CMakeLists.txt │ ├── GB_AxB_dot3_cuda.cpp │ ├── GB_AxB_dot3_cuda_branch.cpp │ ├── GB_Operator.h │ ├── GB_callback.hpp │ ├── GB_cuda.h │ ├── GB_cuda_atomics.cuh │ ├── GB_cuda_buckets.h │ ├── GB_cuda_cumsum.cu │ ├── GB_cuda_error.h │ ├── GB_cuda_get_device_count.cu │ ├── GB_cuda_get_device_properties.cu │ ├── GB_cuda_init.c │ ├── GB_cuda_kernel.h │ ├── GB_cuda_mxm_factory.hpp │ ├── GB_cuda_reduce_factory.hpp │ ├── GB_cuda_type_bits.c │ ├── GB_cuda_type_wrap.hpp │ ├── GB_cuda_warmup.cu │ ├── GB_index.h │ ├── GB_int64_multiply.c │ ├── GB_jit_cache.cu │ ├── GB_jit_cache.h │ ├── GB_jit_launcher.cu │ ├── GB_jit_launcher.h │ ├── GB_matrix.h │ ├── GB_opaque.h │ ├── GB_partition.h │ ├── GB_reduce_to_scalar_cuda.cpp │ ├── GB_reduce_to_scalar_cuda_branch.cpp │ ├── GB_stringify.h │ ├── GB_stringify_binop.c │ ├── GB_stringify_ewise.c │ ├── GB_stringify_identity.c │ ├── GB_stringify_mask.c │ ├── GB_stringify_monoid.c │ ├── GB_stringify_mxm.c │ ├── GB_stringify_opcode.c │ ├── GB_stringify_reduce.c │ ├── GB_stringify_sparsity.c │ ├── GB_stringify_terminal.c │ ├── License.txt │ ├── Makefile.jitFactory │ ├── Makefile_new │ ├── TODO.c │ ├── dot.c.example │ ├── jitFactory.hpp │ ├── jitify.hpp │ ├── local_cub │ │ ├── agent │ │ │ ├── agent_histogram.cuh │ │ │ ├── agent_radix_sort_downsweep.cuh │ │ │ ├── agent_radix_sort_upsweep.cuh │ │ │ ├── agent_reduce.cuh │ │ │ ├── agent_reduce_by_key.cuh │ │ │ ├── agent_rle.cuh │ │ │ ├── agent_scan.cuh │ │ │ ├── agent_segment_fixup.cuh │ │ │ ├── agent_select_if.cuh │ │ │ ├── agent_spmv_orig.cuh │ │ │ └── single_pass_scan_operators.cuh │ │ ├── block │ │ │ ├── block_adjacent_difference.cuh │ │ │ ├── block_discontinuity.cuh │ │ │ ├── block_exchange.cuh │ │ │ ├── block_histogram.cuh │ │ │ ├── block_load.cuh │ │ │ ├── block_radix_rank.cuh │ │ │ ├── block_radix_sort.cuh │ │ │ ├── block_raking_layout.cuh │ │ │ ├── block_reduce.cuh │ │ │ ├── block_scan.cuh │ │ │ ├── block_shuffle.cuh │ │ │ ├── block_store.cuh │ │ │ └── specializations │ │ │ │ ├── block_histogram_atomic.cuh │ │ │ │ ├── block_histogram_sort.cuh │ │ │ │ ├── block_reduce_raking.cuh │ │ │ │ ├── block_reduce_raking_commutative_only.cuh │ │ │ │ ├── block_reduce_warp_reductions.cuh │ │ │ │ ├── block_scan_raking.cuh │ │ │ │ ├── block_scan_warp_scans.cuh │ │ │ │ ├── block_scan_warp_scans2.cuh │ │ │ │ └── block_scan_warp_scans3.cuh │ │ ├── cub.cuh │ │ ├── device │ │ │ ├── device_histogram.cuh │ │ │ ├── device_partition.cuh │ │ │ ├── device_radix_sort.cuh │ │ │ ├── device_reduce.cuh │ │ │ ├── device_run_length_encode.cuh │ │ │ ├── device_scan.cuh │ │ │ ├── device_segmented_radix_sort.cuh │ │ │ ├── device_segmented_reduce.cuh │ │ │ ├── device_select.cuh │ │ │ ├── device_spmv.cuh │ │ │ └── dispatch │ │ │ │ ├── dispatch_histogram.cuh │ │ │ │ ├── dispatch_radix_sort.cuh │ │ │ │ ├── dispatch_reduce.cuh │ │ │ │ ├── dispatch_reduce_by_key.cuh │ │ │ │ ├── dispatch_rle.cuh │ │ │ │ ├── dispatch_scan.cuh │ │ │ │ ├── dispatch_select_if.cuh │ │ │ │ └── dispatch_spmv_orig.cuh │ │ ├── grid │ │ │ ├── grid_barrier.cuh │ │ │ ├── grid_even_share.cuh │ │ │ ├── grid_mapping.cuh │ │ │ └── grid_queue.cuh │ │ ├── host │ │ │ └── mutex.cuh │ │ ├── iterator │ │ │ ├── arg_index_input_iterator.cuh │ │ │ ├── cache_modified_input_iterator.cuh │ │ │ ├── cache_modified_output_iterator.cuh │ │ │ ├── constant_input_iterator.cuh │ │ │ ├── counting_input_iterator.cuh │ │ │ ├── discard_output_iterator.cuh │ │ │ ├── tex_obj_input_iterator.cuh │ │ │ ├── tex_ref_input_iterator.cuh │ │ │ └── transform_input_iterator.cuh │ │ ├── thread │ │ │ ├── thread_load.cuh │ │ │ ├── thread_operators.cuh │ │ │ ├── thread_reduce.cuh │ │ │ ├── thread_scan.cuh │ │ │ ├── thread_search.cuh │ │ │ └── thread_store.cuh │ │ ├── util_allocator.cuh │ │ ├── util_arch.cuh │ │ ├── util_debug.cuh │ │ ├── util_device.cuh │ │ ├── util_macro.cuh │ │ ├── util_namespace.cuh │ │ ├── util_ptx.cuh │ │ ├── util_type.cuh │ │ └── warp │ │ │ ├── specializations │ │ │ ├── warp_reduce_shfl.cuh │ │ │ ├── warp_reduce_smem.cuh │ │ │ ├── warp_scan_shfl.cuh │ │ │ └── warp_scan_smem.cuh │ │ │ ├── warp_reduce.cuh │ │ │ └── warp_scan.cuh │ ├── stringify.cpp │ ├── templates │ │ ├── GB_jit_AxB_dense_phase1.cuh │ │ ├── GB_jit_AxB_dot3_phase3_dndn.cuh │ │ ├── GB_jit_AxB_dot3_phase3_mp.cuh │ │ ├── GB_jit_AxB_dot3_phase3_spdn.cuh │ │ ├── GB_jit_AxB_dot3_phase3_vsvs.cuh │ │ ├── GB_jit_AxB_phase1.cuh │ │ ├── GB_jit_AxB_phase2.cuh │ │ ├── GB_jit_AxB_phase2end.cuh │ │ ├── GB_jit_atomics.cuh │ │ ├── GB_jit_reduceNonZombiesWarp.cuh │ │ ├── GB_jit_reduceUnrolled.cu │ │ ├── GB_nnz.h │ │ ├── GB_nnz_full_template.c │ │ ├── GB_nnz_held_template.c │ │ ├── GB_nnz_max_template.c │ │ ├── GB_nnz_template.c │ │ ├── reduceWarp.cu │ │ └── stdbool.h │ └── test │ │ ├── AxB_dot3_cuda_tests.cpp │ │ ├── GpuTimer.h │ │ ├── Makefile │ │ ├── cuda_tests_template.cpp │ │ ├── dataFactory.hpp │ │ ├── gen_test_data.ipynb │ │ ├── graphblascuda_test │ │ ├── jitTestFactory.hpp │ │ ├── problem_spec.hpp │ │ ├── run_tests.cpp │ │ ├── semiringFactory.hpp │ │ ├── testGen_cmake.py │ │ ├── test_data.hpp │ │ ├── test_jitify.cpp │ │ └── test_utility.hpp ├── Config │ ├── GraphBLAS.h.in │ ├── GraphBLAS_API_version.tex.in │ ├── GraphBLAS_version.tex.in │ └── README.md.in ├── Demo │ ├── DO_NOT_BENCHMARK.txt │ ├── InProgress │ │ └── gpu_reduce_demo.c │ ├── Include │ │ ├── graphblas_demos.h │ │ ├── simple_rand.h │ │ └── usercomplex.h │ ├── Matrix │ │ ├── 2blocks │ │ ├── ash219 │ │ ├── bcsstk01 │ │ ├── cover.mtx │ │ ├── eye3 │ │ ├── fs_183_1 │ │ ├── huge │ │ ├── ibm32a │ │ ├── ibm32b │ │ ├── lp_afiro │ │ ├── mbeacxc │ │ ├── t1 │ │ ├── t2 │ │ └── west0067 │ ├── Output │ │ ├── complex_demo_out.m │ │ ├── import_demo.out │ │ ├── openmp_demo.out │ │ ├── simple_demo.out │ │ └── wildtype_demo.out │ ├── Program │ │ ├── complex_demo.c │ │ ├── import_demo.c │ │ ├── kron_demo.c │ │ ├── openmp_demo.c │ │ ├── reduce_demo.c │ │ ├── simple_demo.c │ │ ├── wathen_demo.c │ │ └── wildtype_demo.c │ ├── README.txt │ ├── Source │ │ ├── get_matrix.c │ │ ├── import_test.c │ │ ├── isequal.c │ │ ├── random_matrix.c │ │ ├── read_matrix.c │ │ ├── simple_rand.c │ │ ├── usercomplex.c │ │ └── wathen.c │ ├── demo │ ├── vdemo │ └── wdemo ├── Doc │ ├── CONTRIBUTOR-LICENSE.txt │ ├── CSC20_OpenMP_GraphBLAS.pdf │ ├── ChangeLog │ ├── Davis_HPEC18.pdf │ ├── GraphBLAS_API_C_2.0.0.pdf │ ├── GraphBLAS_API_C_v13.pdf │ ├── GraphBLAS_API_version.tex │ ├── GraphBLAS_UserGuide.bib │ ├── GraphBLAS_UserGuide.pdf │ ├── GraphBLAS_UserGuide.tex │ ├── GraphBLAS_version.tex │ ├── HPEC19.pdf │ ├── HPEC20_Python_and_MATLAB.pdf │ ├── Makefile │ ├── README_Doc.txt │ ├── The_GraphBLAS_in_Julia_and_Python_the_PageRank_and_Triangle_Centralities.pdf │ ├── annotate.bst │ ├── lagraph-grapl19.pdf │ ├── toms_graphblas.pdf │ └── toms_parallel_grb2.pdf ├── GraphBLAS │ ├── @GrB │ │ ├── GrB.m │ │ ├── MATLAB_vs_GrB.m │ │ ├── abs.m │ │ ├── acos.m │ │ ├── acosh.m │ │ ├── acot.m │ │ ├── acoth.m │ │ ├── acsc.m │ │ ├── acsch.m │ │ ├── all.m │ │ ├── amd.m │ │ ├── and.m │ │ ├── angle.m │ │ ├── any.m │ │ ├── apply.m │ │ ├── apply2.m │ │ ├── argmax.m │ │ ├── argmin.m │ │ ├── argsort.m │ │ ├── asec.m │ │ ├── asech.m │ │ ├── asin.m │ │ ├── asinh.m │ │ ├── assert.m │ │ ├── assign.m │ │ ├── atan.m │ │ ├── atan2.m │ │ ├── atanh.m │ │ ├── bandwidth.m │ │ ├── bfs.m │ │ ├── binopinfo.m │ │ ├── bitand.m │ │ ├── bitcmp.m │ │ ├── bitget.m │ │ ├── bitor.m │ │ ├── bitset.m │ │ ├── bitshift.m │ │ ├── bitxor.m │ │ ├── build.m │ │ ├── burble.m │ │ ├── cat.m │ │ ├── cbrt.m │ │ ├── ceil.m │ │ ├── cell2mat.m │ │ ├── chunk.m │ │ ├── clear.m │ │ ├── colamd.m │ │ ├── compact.m │ │ ├── complex.m │ │ ├── conj.m │ │ ├── cos.m │ │ ├── cosh.m │ │ ├── cot.m │ │ ├── coth.m │ │ ├── csc.m │ │ ├── csch.m │ │ ├── ctranspose.m │ │ ├── descriptorinfo.m │ │ ├── deserialize.m │ │ ├── diag.m │ │ ├── digraph.m │ │ ├── disp.m │ │ ├── display.m │ │ ├── dmperm.m │ │ ├── dnn.m │ │ ├── double.m │ │ ├── eadd.m │ │ ├── eig.m │ │ ├── empty.m │ │ ├── emult.m │ │ ├── end.m │ │ ├── entries.m │ │ ├── eps.m │ │ ├── eq.m │ │ ├── erf.m │ │ ├── erfc.m │ │ ├── etree.m │ │ ├── eunion.m │ │ ├── exp.m │ │ ├── expand.m │ │ ├── expm1.m │ │ ├── extract.m │ │ ├── extracttuples.m │ │ ├── eye.m │ │ ├── false.m │ │ ├── finalize.m │ │ ├── find.m │ │ ├── fix.m │ │ ├── flip.m │ │ ├── floor.m │ │ ├── format.m │ │ ├── fprintf.m │ │ ├── full.m │ │ ├── gamma.m │ │ ├── gammaln.m │ │ ├── ge.m │ │ ├── graph.m │ │ ├── gt.m │ │ ├── horzcat.m │ │ ├── hypot.m │ │ ├── imag.m │ │ ├── incidence.m │ │ ├── init.m │ │ ├── int16.m │ │ ├── int32.m │ │ ├── int64.m │ │ ├── int8.m │ │ ├── isa.m │ │ ├── isbanded.m │ │ ├── isbycol.m │ │ ├── isbyrow.m │ │ ├── isdiag.m │ │ ├── isempty.m │ │ ├── isequal.m │ │ ├── isfinite.m │ │ ├── isfloat.m │ │ ├── isfull.m │ │ ├── ishermitian.m │ │ ├── isinf.m │ │ ├── isinteger.m │ │ ├── islogical.m │ │ ├── ismatrix.m │ │ ├── isnan.m │ │ ├── isnumeric.m │ │ ├── isreal.m │ │ ├── isscalar.m │ │ ├── issigned.m │ │ ├── issparse.m │ │ ├── issymmetric.m │ │ ├── istril.m │ │ ├── istriu.m │ │ ├── isvector.m │ │ ├── kron.m │ │ ├── kronecker.m │ │ ├── ktruss.m │ │ ├── laplacian.m │ │ ├── ldivide.m │ │ ├── le.m │ │ ├── length.m │ │ ├── load.m │ │ ├── log.m │ │ ├── log10.m │ │ ├── log1p.m │ │ ├── log2.m │ │ ├── logical.m │ │ ├── lt.m │ │ ├── mat2cell.m │ │ ├── max.m │ │ ├── min.m │ │ ├── minus.m │ │ ├── mis.m │ │ ├── mldivide.m │ │ ├── monoidinfo.m │ │ ├── mpower.m │ │ ├── mrdivide.m │ │ ├── mtimes.m │ │ ├── mxm.m │ │ ├── ne.m │ │ ├── nnz.m │ │ ├── nonz.m │ │ ├── nonzeros.m │ │ ├── norm.m │ │ ├── normdiff.m │ │ ├── not.m │ │ ├── num2cell.m │ │ ├── numel.m │ │ ├── nzmax.m │ │ ├── offdiag.m │ │ ├── ones.m │ │ ├── optype.m │ │ ├── or.m │ │ ├── pagerank.m │ │ ├── plus.m │ │ ├── pow2.m │ │ ├── power.m │ │ ├── private │ │ │ ├── Makefile │ │ │ ├── gb_1d_to_2d.m │ │ │ ├── gb_2d_to_1d.m │ │ │ ├── gb_abs.m │ │ │ ├── gb_bitwise.m │ │ │ ├── gb_check_imag_zero.m │ │ │ ├── gb_contains.m │ │ │ ├── gb_eadd.m │ │ │ ├── gb_emult.m │ │ │ ├── gb_entries.m │ │ │ ├── gb_eunion.m │ │ │ ├── gb_expand.m │ │ │ ├── gb_fmt.m │ │ │ ├── gb_get_2scalars.m │ │ │ ├── gb_get_scalar.m │ │ │ ├── gb_index.m │ │ │ ├── gb_index1.m │ │ │ ├── gb_isfloat.m │ │ │ ├── gb_isfull.m │ │ │ ├── gb_isscalar.m │ │ │ ├── gb_issigned.m │ │ │ ├── gb_issymmetric.m │ │ │ ├── gb_isvector.m │ │ │ ├── gb_max1.m │ │ │ ├── gb_max2.m │ │ │ ├── gb_max3.m │ │ │ ├── gb_maxall.m │ │ │ ├── gb_maxbycol.m │ │ │ ├── gb_maxbyrow.m │ │ │ ├── gb_min1.m │ │ │ ├── gb_min2.m │ │ │ ├── gb_min3.m │ │ │ ├── gb_minall.m │ │ │ ├── gb_minbycol.m │ │ │ ├── gb_minbyrow.m │ │ │ ├── gb_mpower.m │ │ │ ├── gb_nnz.m │ │ │ ├── gb_numel.m │ │ │ ├── gb_parse_args.m │ │ │ ├── gb_parse_dimensions.m │ │ │ ├── gb_power.m │ │ │ ├── gb_printf_helper.m │ │ │ ├── gb_prod.m │ │ │ ├── gb_random.m │ │ │ ├── gb_scalar.m │ │ │ ├── gb_scalar_to_full.m │ │ │ ├── gb_speye.m │ │ │ ├── gb_spones.m │ │ │ ├── gb_sum.m │ │ │ ├── gb_trig.m │ │ │ ├── gbapply.m │ │ │ ├── gbapply2.m │ │ │ ├── gbargminmax.m │ │ │ ├── gbargsort.m │ │ │ ├── gbassign.m │ │ │ ├── gbbandwidth.m │ │ │ ├── gbbinopinfo.m │ │ │ ├── gbbuild.m │ │ │ ├── gbbuiltin.m │ │ │ ├── gbburble.m │ │ │ ├── gbchunk.m │ │ │ ├── gbdescriptorinfo.m │ │ │ ├── gbdisp.m │ │ │ ├── gbeadd.m │ │ │ ├── gbemult.m │ │ │ ├── gbeunion.m │ │ │ ├── gbextract.m │ │ │ ├── gbextracttuples.m │ │ │ ├── gbextractvalues.m │ │ │ ├── gbformat.m │ │ │ ├── gbfull.m │ │ │ ├── gbisequal.m │ │ │ ├── gbkronecker.m │ │ │ ├── gblogassign.m │ │ │ ├── gblogextract.m │ │ │ ├── gbmake.m │ │ │ ├── gbmonoidinfo.m │ │ │ ├── gbmxm.m │ │ │ ├── gbnew.m │ │ │ ├── gbnvals.m │ │ │ ├── gbreduce.m │ │ │ ├── gbselect.m │ │ │ ├── gbselectopinfo.m │ │ │ ├── gbsemiringinfo.m │ │ │ ├── gbsetup.m │ │ │ ├── gbsize.m │ │ │ ├── gbsubassign.m │ │ │ ├── gbthreads.m │ │ │ ├── gbtrans.m │ │ │ ├── gbtype.m │ │ │ ├── gbunopinfo.m │ │ │ ├── gbvreduce.m │ │ │ ├── mexfunctions │ │ │ │ ├── gbapply.c │ │ │ │ ├── gbapply2.c │ │ │ │ ├── gbargminmax.c │ │ │ │ ├── gbargsort.c │ │ │ │ ├── gbassign.c │ │ │ │ ├── gbbandwidth.c │ │ │ │ ├── gbbinopinfo.c │ │ │ │ ├── gbbuild.c │ │ │ │ ├── gbbuiltin.c │ │ │ │ ├── gbburble.c │ │ │ │ ├── gbcat.c │ │ │ │ ├── gbchunk.c │ │ │ │ ├── gbdegree.c │ │ │ │ ├── gbdescriptorinfo.c │ │ │ │ ├── gbdeserialize.c │ │ │ │ ├── gbdisp.c │ │ │ │ ├── gbeadd.c │ │ │ │ ├── gbemult.c │ │ │ │ ├── gbeunion.c │ │ │ │ ├── gbextract.c │ │ │ │ ├── gbextracttuples.c │ │ │ │ ├── gbextractvalues.c │ │ │ │ ├── gbformat.c │ │ │ │ ├── gbfull.c │ │ │ │ ├── gbisequal.c │ │ │ │ ├── gbkronecker.c │ │ │ │ ├── gblogassign.c │ │ │ │ ├── gblogextract.c │ │ │ │ ├── gbmdiag.c │ │ │ │ ├── gbmonoidinfo.c │ │ │ │ ├── gbmtimes.c │ │ │ │ ├── gbmxm.c │ │ │ │ ├── gbnew.c │ │ │ │ ├── gbnorm.c │ │ │ │ ├── gbnormdiff.c │ │ │ │ ├── gbnvals.c │ │ │ │ ├── gboptype.c │ │ │ │ ├── gbreduce.c │ │ │ │ ├── gbreshape.c │ │ │ │ ├── gbselect.c │ │ │ │ ├── gbselectopinfo.c │ │ │ │ ├── gbsemiringinfo.c │ │ │ │ ├── gbserialize.c │ │ │ │ ├── gbsetup.c │ │ │ │ ├── gbsize.c │ │ │ │ ├── gbsplit.c │ │ │ │ ├── gbsubassign.c │ │ │ │ ├── gbthreads.c │ │ │ │ ├── gbtrans.c │ │ │ │ ├── gbtype.c │ │ │ │ ├── gbunopinfo.c │ │ │ │ ├── gbvdiag.c │ │ │ │ ├── gbver.c │ │ │ │ ├── gbversion.c │ │ │ │ └── gbvreduce.c │ │ │ └── util │ │ │ │ ├── gb_abort.c │ │ │ │ ├── gb_assign.c │ │ │ │ ├── gb_binop_to_monoid.c │ │ │ │ ├── gb_by_col.c │ │ │ │ ├── gb_default_format.c │ │ │ │ ├── gb_default_type.c │ │ │ │ ├── gb_error.c │ │ │ │ ├── gb_expand_to_full.c │ │ │ │ ├── gb_export.c │ │ │ │ ├── gb_export_to_mxfull.c │ │ │ │ ├── gb_export_to_mxsparse.c │ │ │ │ ├── gb_export_to_mxstruct.c │ │ │ │ ├── gb_find_dot.c │ │ │ │ ├── gb_first_binop.c │ │ │ │ ├── gb_flush.c │ │ │ │ ├── gb_get_deep.c │ │ │ │ ├── gb_get_format.c │ │ │ │ ├── gb_get_mxargs.c │ │ │ │ ├── gb_get_shallow.c │ │ │ │ ├── gb_get_sparsity.c │ │ │ │ ├── gb_interface.h │ │ │ │ ├── gb_is_all.c │ │ │ │ ├── gb_is_equal.c │ │ │ │ ├── gb_is_float.c │ │ │ │ ├── gb_is_integer.c │ │ │ │ ├── gb_is_vector.c │ │ │ │ ├── gb_mxarray_is_empty.c │ │ │ │ ├── gb_mxarray_is_scalar.c │ │ │ │ ├── gb_mxarray_to_descriptor.c │ │ │ │ ├── gb_mxarray_to_list.c │ │ │ │ ├── gb_mxarray_type.c │ │ │ │ ├── gb_mxcell_to_index.c │ │ │ │ ├── gb_mxclass_to_mxstring.c │ │ │ │ ├── gb_mxfree.c │ │ │ │ ├── gb_mxget_uint64_scalar.c │ │ │ │ ├── gb_mxstring_to_binop.c │ │ │ │ ├── gb_mxstring_to_binop_or_idxunop.c │ │ │ │ ├── gb_mxstring_to_format.c │ │ │ │ ├── gb_mxstring_to_monoid.c │ │ │ │ ├── gb_mxstring_to_selectop.c │ │ │ │ ├── gb_mxstring_to_semiring.c │ │ │ │ ├── gb_mxstring_to_string.c │ │ │ │ ├── gb_mxstring_to_type.c │ │ │ │ ├── gb_mxstring_to_unop.c │ │ │ │ ├── gb_new.c │ │ │ │ ├── gb_norm.c │ │ │ │ ├── gb_norm_kind.c │ │ │ │ ├── gb_round_op.c │ │ │ │ ├── gb_semiring.c │ │ │ │ ├── gb_string_and_type_to_binop_or_idxunop.c │ │ │ │ ├── gb_string_and_type_to_unop.c │ │ │ │ ├── gb_string_to_binop_or_idxunop.c │ │ │ │ ├── gb_string_to_monoid.c │ │ │ │ ├── gb_string_to_selectop.c │ │ │ │ ├── gb_string_to_semiring.c │ │ │ │ ├── gb_string_to_type.c │ │ │ │ ├── gb_string_to_unop.c │ │ │ │ ├── gb_type_to_mxstring.c │ │ │ │ ├── gb_typecast.c │ │ │ │ └── gb_usage.c │ │ ├── prod.m │ │ ├── prune.m │ │ ├── random.m │ │ ├── rdivide.m │ │ ├── real.m │ │ ├── reduce.m │ │ ├── repmat.m │ │ ├── reshape.m │ │ ├── round.m │ │ ├── save.m │ │ ├── sec.m │ │ ├── sech.m │ │ ├── select.m │ │ ├── selectopinfo.m │ │ ├── semiringinfo.m │ │ ├── serialize.m │ │ ├── sign.m │ │ ├── sin.m │ │ ├── single.m │ │ ├── sinh.m │ │ ├── size.m │ │ ├── sparse.m │ │ ├── speye.m │ │ ├── spfun.m │ │ ├── spones.m │ │ ├── sprand.m │ │ ├── sprandn.m │ │ ├── sprandsym.m │ │ ├── sprintf.m │ │ ├── sqrt.m │ │ ├── struct.m │ │ ├── subassign.m │ │ ├── subsasgn.m │ │ ├── subsindex.m │ │ ├── subsref.m │ │ ├── sum.m │ │ ├── symamd.m │ │ ├── symrcm.m │ │ ├── tan.m │ │ ├── tanh.m │ │ ├── threads.m │ │ ├── times.m │ │ ├── trans.m │ │ ├── transpose.m │ │ ├── tricount.m │ │ ├── tril.m │ │ ├── triu.m │ │ ├── true.m │ │ ├── type.m │ │ ├── uint16.m │ │ ├── uint32.m │ │ ├── uint64.m │ │ ├── uint8.m │ │ ├── uminus.m │ │ ├── unopinfo.m │ │ ├── uplus.m │ │ ├── ver.m │ │ ├── version.m │ │ ├── vertcat.m │ │ ├── vreduce.m │ │ ├── xor.m │ │ └── zeros.m │ ├── CMakeLists.txt │ ├── Contents.m │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── build │ │ └── .gitignore │ ├── demo │ │ ├── Contents.m │ │ ├── benchmark │ │ │ ├── dobench2.m │ │ │ ├── dobench_methods.m │ │ │ ├── dobench_results.txt │ │ │ ├── dolegend.m │ │ │ ├── long_enough.m │ │ │ └── summary.m │ │ ├── bfs_builtin.m │ │ ├── cats_demo.m │ │ ├── cats_output.txt │ │ ├── demo_nproc.m │ │ ├── demo_octave.m │ │ ├── demo_whoami.m │ │ ├── dnn_builtin.m │ │ ├── dnn_builtin2gb.m │ │ ├── dnn_run.m │ │ ├── gbdemo.m │ │ ├── gbdemo2.m │ │ ├── graphblas_demo.m │ │ ├── graphblas_demo2.m │ │ ├── html │ │ │ ├── README.txt │ │ │ ├── graphblas_demo.html │ │ │ └── graphblas_demo2.html │ │ ├── mxm_demo.m │ │ ├── mxm_demo_DGX_Station.txt │ │ ├── mxm_demo_DellXPS13.txt │ │ ├── tmask.m │ │ └── tmask_diary.txt │ ├── rename │ │ ├── GB_rename.h │ │ ├── Makefile │ │ ├── README.txt │ │ └── rename.awk │ └── test │ │ ├── Contents.m │ │ ├── README.md │ │ ├── gb_contains.m │ │ ├── gb_octave.m │ │ ├── gbtest.m │ │ ├── gbtest0.m │ │ ├── gbtest00.m │ │ ├── gbtest1.m │ │ ├── gbtest10.m │ │ ├── gbtest100.m │ │ ├── gbtest101.m │ │ ├── gbtest102.m │ │ ├── gbtest103.m │ │ ├── gbtest104.m │ │ ├── gbtest105.m │ │ ├── gbtest106.m │ │ ├── gbtest107.m │ │ ├── gbtest108.m │ │ ├── gbtest109.m │ │ ├── gbtest11.m │ │ ├── gbtest110.m │ │ ├── gbtest111.m │ │ ├── gbtest112.m │ │ ├── gbtest113.m │ │ ├── gbtest114.m │ │ ├── gbtest115.m │ │ ├── gbtest116.m │ │ ├── gbtest117.m │ │ ├── gbtest118.m │ │ ├── gbtest119.m │ │ ├── gbtest12.m │ │ ├── gbtest120.m │ │ ├── gbtest121.m │ │ ├── gbtest122.m │ │ ├── gbtest13.m │ │ ├── gbtest14.m │ │ ├── gbtest15.m │ │ ├── gbtest16.m │ │ ├── gbtest17.m │ │ ├── gbtest18.m │ │ ├── gbtest19.m │ │ ├── gbtest2.m │ │ ├── gbtest20.m │ │ ├── gbtest21.m │ │ ├── gbtest22.m │ │ ├── gbtest23.m │ │ ├── gbtest24.m │ │ ├── gbtest25.m │ │ ├── gbtest26.m │ │ ├── gbtest27.m │ │ ├── gbtest28.m │ │ ├── gbtest29.m │ │ ├── gbtest3.m │ │ ├── gbtest30.m │ │ ├── gbtest31.m │ │ ├── gbtest32.m │ │ ├── gbtest33.m │ │ ├── gbtest34.m │ │ ├── gbtest35.m │ │ ├── gbtest36.m │ │ ├── gbtest37.m │ │ ├── gbtest38.m │ │ ├── gbtest39.m │ │ ├── gbtest4.m │ │ ├── gbtest40.m │ │ ├── gbtest41.m │ │ ├── gbtest42.m │ │ ├── gbtest43.m │ │ ├── gbtest44.m │ │ ├── gbtest45.m │ │ ├── gbtest46.m │ │ ├── gbtest47.m │ │ ├── gbtest48.m │ │ ├── gbtest49.m │ │ ├── gbtest5.m │ │ ├── gbtest50.m │ │ ├── gbtest51.m │ │ ├── gbtest52.m │ │ ├── gbtest53.m │ │ ├── gbtest54.m │ │ ├── gbtest55.m │ │ ├── gbtest56.m │ │ ├── gbtest57.m │ │ ├── gbtest58.m │ │ ├── gbtest59.m │ │ ├── gbtest6.m │ │ ├── gbtest60.m │ │ ├── gbtest61.m │ │ ├── gbtest62.m │ │ ├── gbtest63.m │ │ ├── gbtest64.m │ │ ├── gbtest65.m │ │ ├── gbtest66.m │ │ ├── gbtest67.m │ │ ├── gbtest68.m │ │ ├── gbtest69.m │ │ ├── gbtest7.m │ │ ├── gbtest70.m │ │ ├── gbtest71.m │ │ ├── gbtest72.m │ │ ├── gbtest73.m │ │ ├── gbtest74.m │ │ ├── gbtest75.m │ │ ├── gbtest76.m │ │ ├── gbtest77.m │ │ ├── gbtest78.m │ │ ├── gbtest79.m │ │ ├── gbtest8.m │ │ ├── gbtest80.m │ │ ├── gbtest81.m │ │ ├── gbtest82.m │ │ ├── gbtest83.m │ │ ├── gbtest84.m │ │ ├── gbtest85.m │ │ ├── gbtest86.m │ │ ├── gbtest87.m │ │ ├── gbtest88.m │ │ ├── gbtest89.m │ │ ├── gbtest9.m │ │ ├── gbtest90.m │ │ ├── gbtest91.m │ │ ├── gbtest92.m │ │ ├── gbtest93.m │ │ ├── gbtest94.m │ │ ├── gbtest95.m │ │ ├── gbtest96.m │ │ ├── gbtest97.m │ │ ├── gbtest98.m │ │ ├── gbtest99.m │ │ ├── gbtest_binops.m │ │ ├── gbtest_cast.m │ │ ├── gbtest_complex.m │ │ ├── gbtest_eq.m │ │ ├── gbtest_err.m │ │ ├── gbtest_perf1.m │ │ ├── gbtest_perf2.m │ │ ├── gbtest_types.m │ │ ├── gbtestv3.mat │ │ ├── matrix │ │ ├── 2blocks │ │ ├── ash219 │ │ ├── bcsstk01 │ │ ├── bcsstk16 │ │ ├── cover.mtx │ │ ├── eye3 │ │ ├── fs_183_1 │ │ ├── huge │ │ ├── ibm32a │ │ ├── ibm32b │ │ ├── lp_afiro │ │ ├── mbeacxc │ │ ├── t1 │ │ ├── t2 │ │ └── west0067 │ │ ├── tcov │ │ ├── Contents.m │ │ ├── Makefile │ │ ├── gbcov.m │ │ ├── gbcov_edit.m │ │ ├── gbcov_util.c │ │ ├── gbcovmake.m │ │ ├── gbcovshow.m │ │ └── tmp │ │ │ └── .gitignore │ │ └── west0479_correct.mat ├── Include │ └── GraphBLAS.h ├── LICENSE ├── Makefile ├── README.md ├── Source │ ├── Contents.m │ ├── GB.h │ ├── GB_AxB_colscale.c │ ├── GB_AxB_dot.c │ ├── GB_AxB_dot2.c │ ├── GB_AxB_dot2_control.c │ ├── GB_AxB_dot3.c │ ├── GB_AxB_dot3_one_slice.c │ ├── GB_AxB_dot3_slice.c │ ├── GB_AxB_dot4.c │ ├── GB_AxB_meta.c │ ├── GB_AxB_meta_adotb_control.c │ ├── GB_AxB_rowscale.c │ ├── GB_AxB_saxpy.c │ ├── GB_AxB_saxpy.h │ ├── GB_AxB_saxpy3.c │ ├── GB_AxB_saxpy3.h │ ├── GB_AxB_saxpy3_cumsum.c │ ├── GB_AxB_saxpy3_flopcount.c │ ├── GB_AxB_saxpy3_generic_first.c │ ├── GB_AxB_saxpy3_generic_firsti32.c │ ├── GB_AxB_saxpy3_generic_firsti64.c │ ├── GB_AxB_saxpy3_generic_firstj32.c │ ├── GB_AxB_saxpy3_generic_firstj64.c │ ├── GB_AxB_saxpy3_generic_flipped.c │ ├── GB_AxB_saxpy3_generic_second.c │ ├── GB_AxB_saxpy3_generic_secondj32.c │ ├── GB_AxB_saxpy3_generic_secondj64.c │ ├── GB_AxB_saxpy3_generic_unflipped.c │ ├── GB_AxB_saxpy3_slice_balanced.c │ ├── GB_AxB_saxpy3_slice_quick.c │ ├── GB_AxB_saxpy3_sym_bh.c │ ├── GB_AxB_saxpy3_sym_bs.c │ ├── GB_AxB_saxpy3_sym_fh.c │ ├── GB_AxB_saxpy3_sym_fs.c │ ├── GB_AxB_saxpy3_sym_hb.c │ ├── GB_AxB_saxpy3_sym_hf.c │ ├── GB_AxB_saxpy3_sym_hh.c │ ├── GB_AxB_saxpy3_sym_hs.c │ ├── GB_AxB_saxpy3_sym_mbb.c │ ├── GB_AxB_saxpy3_sym_mbf.c │ ├── GB_AxB_saxpy3_sym_mbh.c │ ├── GB_AxB_saxpy3_sym_mbs.c │ ├── GB_AxB_saxpy3_sym_mfb.c │ ├── GB_AxB_saxpy3_sym_mff.c │ ├── GB_AxB_saxpy3_sym_mfh.c │ ├── GB_AxB_saxpy3_sym_mfs.c │ ├── GB_AxB_saxpy3_sym_mhb.c │ ├── GB_AxB_saxpy3_sym_mhf.c │ ├── GB_AxB_saxpy3_sym_mhh.c │ ├── GB_AxB_saxpy3_sym_mhs.c │ ├── GB_AxB_saxpy3_sym_msb.c │ ├── GB_AxB_saxpy3_sym_msf.c │ ├── GB_AxB_saxpy3_sym_msh.c │ ├── GB_AxB_saxpy3_sym_mss.c │ ├── GB_AxB_saxpy3_sym_nbh.c │ ├── GB_AxB_saxpy3_sym_nbs.c │ ├── GB_AxB_saxpy3_sym_nfh.c │ ├── GB_AxB_saxpy3_sym_nfs.c │ ├── GB_AxB_saxpy3_sym_nhb.c │ ├── GB_AxB_saxpy3_sym_nhf.c │ ├── GB_AxB_saxpy3_sym_nhh.c │ ├── GB_AxB_saxpy3_sym_nhs.c │ ├── GB_AxB_saxpy3_sym_nsb.c │ ├── GB_AxB_saxpy3_sym_nsf.c │ ├── GB_AxB_saxpy3_sym_nsh.c │ ├── GB_AxB_saxpy3_sym_nss.c │ ├── GB_AxB_saxpy3_sym_sb.c │ ├── GB_AxB_saxpy3_sym_sf.c │ ├── GB_AxB_saxpy3_sym_sh.c │ ├── GB_AxB_saxpy3_sym_ss.c │ ├── GB_AxB_saxpy3_symbolic.c │ ├── GB_AxB_saxpy4.c │ ├── GB_AxB_saxpy4_tasks.c │ ├── GB_AxB_saxpy5.c │ ├── GB_AxB_saxpy_generic.c │ ├── GB_AxB_saxpy_generic.h │ ├── GB_AxB_saxpy_sparsity.c │ ├── GB_AxB_semiring_builtin.c │ ├── GB_BinaryOp_check.c │ ├── GB_BinaryOp_compatible.c │ ├── GB_Descriptor_check.c │ ├── GB_Descriptor_get.c │ ├── GB_Descriptor_get.h │ ├── GB_Element.h │ ├── GB_Global.c │ ├── GB_Global.h │ ├── GB_I_inverse.c │ ├── GB_IndexUnaryOp_check.c │ ├── GB_Iterator_attach.c │ ├── GB_Iterator_rc_bitmap_next.c │ ├── GB_Iterator_rc_seek.c │ ├── GB_Mask_compatible.c │ ├── GB_Matrix_check.c │ ├── GB_Matrix_diag.c │ ├── GB_Matrix_free.c │ ├── GB_Matrix_new.c │ ├── GB_Monoid_check.c │ ├── GB_Monoid_new.c │ ├── GB_Monoid_new.h │ ├── GB_Op_free.c │ ├── GB_Operator_check.c │ ├── GB_Pending.h │ ├── GB_Pending_alloc.c │ ├── GB_Pending_free.c │ ├── GB_Pending_n.c │ ├── GB_Pending_n.h │ ├── GB_Pending_realloc.c │ ├── GB_Scalar_check.c │ ├── GB_Scalar_reduce.c │ ├── GB_Scalar_wrap.c │ ├── GB_SelectOp_check.c │ ├── GB_SelectOp_new.c │ ├── GB_Semiring_check.c │ ├── GB_Semiring_new.c │ ├── GB_Semiring_new.h │ ├── GB_Type_check.c │ ├── GB_Type_compatible.c │ ├── GB_UnaryOp_check.c │ ├── GB_Vector_check.c │ ├── GB_Vector_diag.c │ ├── GB_accum_mask.c │ ├── GB_accum_mask.h │ ├── GB_add.c │ ├── GB_add.h │ ├── GB_add_phase0.c │ ├── GB_add_phase1.c │ ├── GB_add_phase2.c │ ├── GB_add_sparsity.c │ ├── GB_aliased.c │ ├── GB_aliased.h │ ├── GB_apply.c │ ├── GB_apply.h │ ├── GB_apply_op.c │ ├── GB_assert.h │ ├── GB_assign.c │ ├── GB_assign.h │ ├── GB_assign_prep.c │ ├── GB_assign_scalar.c │ ├── GB_assign_zombie.h │ ├── GB_assign_zombie1.c │ ├── GB_assign_zombie2.c │ ├── GB_assign_zombie3.c │ ├── GB_assign_zombie4.c │ ├── GB_assign_zombie5.c │ ├── GB_atomics.h │ ├── GB_binary_search.h │ ├── GB_binop.h │ ├── GB_binop_builtin.c │ ├── GB_binop_new.c │ ├── GB_binop_pattern.c │ ├── GB_binop_rename.c │ ├── GB_binop_to_monoid.c │ ├── GB_bitmap_AxB_saxpy.c │ ├── GB_bitmap_AxB_saxpy.h │ ├── GB_bitmap_AxB_saxpy_generic_first.c │ ├── GB_bitmap_AxB_saxpy_generic_firsti32.c │ ├── GB_bitmap_AxB_saxpy_generic_firsti64.c │ ├── GB_bitmap_AxB_saxpy_generic_firstj32.c │ ├── GB_bitmap_AxB_saxpy_generic_firstj64.c │ ├── GB_bitmap_AxB_saxpy_generic_flipped.c │ ├── GB_bitmap_AxB_saxpy_generic_second.c │ ├── GB_bitmap_AxB_saxpy_generic_secondj32.c │ ├── GB_bitmap_AxB_saxpy_generic_secondj64.c │ ├── GB_bitmap_AxB_saxpy_generic_unflipped.c │ ├── GB_bitmap_M_scatter.c │ ├── GB_bitmap_M_scatter_whole.c │ ├── GB_bitmap_assign.c │ ├── GB_bitmap_assign.h │ ├── GB_bitmap_assign_M_accum.c │ ├── GB_bitmap_assign_M_accum_whole.c │ ├── GB_bitmap_assign_M_noaccum.c │ ├── GB_bitmap_assign_M_noaccum_whole.c │ ├── GB_bitmap_assign_fullM_accum.c │ ├── GB_bitmap_assign_fullM_accum_whole.c │ ├── GB_bitmap_assign_fullM_noaccum.c │ ├── GB_bitmap_assign_fullM_noaccum_whole.c │ ├── GB_bitmap_assign_methods.h │ ├── GB_bitmap_assign_noM_accum.c │ ├── GB_bitmap_assign_noM_accum_whole.c │ ├── GB_bitmap_assign_noM_noaccum.c │ ├── GB_bitmap_assign_noM_noaccum_whole.c │ ├── GB_bitmap_assign_notM_accum.c │ ├── GB_bitmap_assign_notM_accum_whole.c │ ├── GB_bitmap_assign_notM_noaccum.c │ ├── GB_bitmap_assign_notM_noaccum_whole.c │ ├── GB_bitmap_assign_to_full.c │ ├── GB_bitmap_emult.c │ ├── GB_bitmap_expand_to_hyper.c │ ├── GB_bitmap_selector.c │ ├── GB_bitmap_subref.c │ ├── GB_bitwise.c │ ├── GB_bitwise.h │ ├── GB_bix_alloc.c │ ├── GB_bix_free.c │ ├── GB_block.c │ ├── GB_boolean_rename.c │ ├── GB_boolean_rename_op.c │ ├── GB_bracket.h │ ├── GB_build.c │ ├── GB_build.h │ ├── GB_builder.c │ ├── GB_bytes.h │ ├── GB_calloc_memory.c │ ├── GB_cast.h │ ├── GB_cast_array.c │ ├── GB_cast_factory.c │ ├── GB_cast_matrix.c │ ├── GB_casting.c │ ├── GB_casting.h │ ├── GB_check.h │ ├── GB_clear.c │ ├── GB_clear.h │ ├── GB_code_check.c │ ├── GB_code_compatible.h │ ├── GB_code_size.c │ ├── GB_code_string.c │ ├── GB_code_type.c │ ├── GB_compatible.c │ ├── GB_compatible.h │ ├── GB_compiler.h │ ├── GB_concat.c │ ├── GB_concat.h │ ├── GB_concat_bitmap.c │ ├── GB_concat_full.c │ ├── GB_concat_hyper.c │ ├── GB_concat_sparse.c │ ├── GB_conform.c │ ├── GB_conform_hyper.c │ ├── GB_context.h │ ├── GB_control.h │ ├── GB_convert.h │ ├── GB_convert_any_to_bitmap.c │ ├── GB_convert_any_to_full.c │ ├── GB_convert_any_to_hyper.c │ ├── GB_convert_any_to_iso.c │ ├── GB_convert_any_to_non_iso.c │ ├── GB_convert_any_to_sparse.c │ ├── GB_convert_bitmap_to_sparse.c │ ├── GB_convert_bitmap_to_sparse_test.c │ ├── GB_convert_bitmap_worker.c │ ├── GB_convert_full_to_bitmap.c │ ├── GB_convert_full_to_sparse.c │ ├── GB_convert_hyper_to_sparse.c │ ├── GB_convert_hyper_to_sparse_test.c │ ├── GB_convert_sparse_to_bitmap.c │ ├── GB_convert_sparse_to_bitmap_test.c │ ├── GB_convert_sparse_to_hyper.c │ ├── GB_convert_sparse_to_hyper_test.c │ ├── GB_convert_to_nonfull.c │ ├── GB_copy_user_user.c │ ├── GB_coverage.h │ ├── GB_cplusplus.h │ ├── GB_cpu_features.h │ ├── GB_cpu_features_impl.c │ ├── GB_cpu_features_support.c │ ├── GB_cuda_gateway.h │ ├── GB_cumsum.c │ ├── GB_cumsum.h │ ├── GB_dealloc_memory.c │ ├── GB_defaults.h │ ├── GB_dense.h │ ├── GB_dense_ewise3_accum.c │ ├── GB_dense_ewise3_noaccum.c │ ├── GB_dense_subassign_05d.c │ ├── GB_dense_subassign_06d.c │ ├── GB_dense_subassign_22.c │ ├── GB_dense_subassign_23.c │ ├── GB_dense_subassign_25.c │ ├── GB_deserialize.c │ ├── GB_deserialize_from_blob.c │ ├── GB_dev.h │ ├── GB_diag.h │ ├── GB_dup.c │ ├── GB_dup.h │ ├── GB_dup_worker.c │ ├── GB_ek_slice.c │ ├── GB_ek_slice.h │ ├── GB_ek_slice_merge1.c │ ├── GB_ek_slice_merge2.c │ ├── GB_emult.c │ ├── GB_emult.h │ ├── GB_emult_02.c │ ├── GB_emult_04.c │ ├── GB_emult_08_phase0.c │ ├── GB_emult_08_phase1.c │ ├── GB_emult_08_phase2.c │ ├── GB_emult_sparsity.c │ ├── GB_entry_check.c │ ├── GB_eslice.c │ ├── GB_ewise.c │ ├── GB_ewise.h │ ├── GB_ewise_generic.c │ ├── GB_ewise_slice.c │ ├── GB_export.c │ ├── GB_export.h │ ├── GB_extract.c │ ├── GB_extract.h │ ├── GB_extractTuples.c │ ├── GB_extractTuples.h │ ├── GB_extract_vector_list.c │ ├── GB_flip_binop_code.c │ ├── GB_flip_op.c │ ├── GB_free_memory.c │ ├── GB_free_pool_finalize.c │ ├── GB_get_mask.h │ ├── GB_helper.c │ ├── GB_helper.h │ ├── GB_hyper.h │ ├── GB_hyper_prune.c │ ├── GB_hyper_realloc.c │ ├── GB_hyper_shallow.c │ ├── GB_hypermatrix_prune.c │ ├── GB_iceil.h │ ├── GB_ij.h │ ├── GB_ijlength.c │ ├── GB_ijproperties.c │ ├── GB_ijsort.c │ ├── GB_imin.h │ ├── GB_import.c │ ├── GB_index.h │ ├── GB_init.c │ ├── GB_init.h │ ├── GB_int64_multiply.c │ ├── GB_is_diagonal.c │ ├── GB_is_nonzero.h │ ├── GB_is_shallow.c │ ├── GB_iso.h │ ├── GB_iso_AxB.c │ ├── GB_iso_add.c │ ├── GB_iso_check.c │ ├── GB_iso_emult.c │ ├── GB_iso_expand.c │ ├── GB_iso_reduce_to_scalar.c │ ├── GB_iso_reduce_worker.c │ ├── GB_iso_unop.c │ ├── GB_iso_unop_code.c │ ├── GB_ix_realloc.c │ ├── GB_jappend.h │ ├── GB_kron.c │ ├── GB_kron.h │ ├── GB_kroner.c │ ├── GB_log2.h │ ├── GB_lz4.c │ ├── GB_lz4.h │ ├── GB_make_shallow.c │ ├── GB_make_shallow.h │ ├── GB_malloc_memory.c │ ├── GB_mask.c │ ├── GB_mask.h │ ├── GB_masker.c │ ├── GB_masker_phase1.c │ ├── GB_masker_phase2.c │ ├── GB_masker_sparsity.c │ ├── GB_math.c │ ├── GB_math.h │ ├── GB_matvec_check.c │ ├── GB_matvec_type.c │ ├── GB_matvec_type_name.c │ ├── GB_memcpy.c │ ├── GB_memory.h │ ├── GB_memoryUsage.c │ ├── GB_memset.c │ ├── GB_msort_1.c │ ├── GB_msort_1.h │ ├── GB_msort_2.c │ ├── GB_msort_2.h │ ├── GB_msort_3.c │ ├── GB_msort_3.h │ ├── GB_multiply.h │ ├── GB_mxm.c │ ├── GB_mxm.h │ ├── GB_new.c │ ├── GB_new.h │ ├── GB_new_bix.c │ ├── GB_nnz.c │ ├── GB_nnz.h │ ├── GB_nnz_full.c │ ├── GB_nnz_held.c │ ├── GB_nnz_max.c │ ├── GB_nthreads.h │ ├── GB_nvals.c │ ├── GB_nvals.h │ ├── GB_nvec_nonempty.c │ ├── GB_ok.h │ ├── GB_omp.h │ ├── GB_op.h │ ├── GB_op_is_second.c │ ├── GB_op_name_and_defn.c │ ├── GB_opaque.h │ ├── GB_ops.c │ ├── GB_ops.h │ ├── GB_partition.h │ ├── GB_ph_free.c │ ├── GB_phbix_free.c │ ├── GB_positional_binop_ijflip.c │ ├── GB_positional_idxunop_ijflip.c │ ├── GB_positional_offset.c │ ├── GB_positional_unop_ijflip.c │ ├── GB_prefix.h │ ├── GB_printf.c │ ├── GB_printf.h │ ├── GB_pslice.c │ ├── GB_qsort_1.c │ ├── GB_qsort_1b.c │ ├── GB_qsort_2.c │ ├── GB_qsort_3.c │ ├── GB_realloc_memory.c │ ├── GB_reduce.h │ ├── GB_reduce_to_scalar.c │ ├── GB_reduce_to_vector.c │ ├── GB_reshape.c │ ├── GB_reshape.h │ ├── GB_resize.c │ ├── GB_resize.h │ ├── GB_scalar.h │ ├── GB_select.c │ ├── GB_select.h │ ├── GB_selector.c │ ├── GB_serialize.c │ ├── GB_serialize.h │ ├── GB_serialize_array.c │ ├── GB_serialize_free_blocks.c │ ├── GB_serialize_method.c │ ├── GB_serialize_to_blob.c │ ├── GB_setElement.c │ ├── GB_shallow_copy.c │ ├── GB_shallow_op.c │ ├── GB_size_t_multiply.c │ ├── GB_slice.h │ ├── GB_slice_vector.c │ ├── GB_sort.c │ ├── GB_sort.h │ ├── GB_sparsity_control.c │ ├── GB_split.c │ ├── GB_split.h │ ├── GB_split_bitmap.c │ ├── GB_split_full.c │ ├── GB_split_sparse.c │ ├── GB_static_header.h │ ├── GB_status_code.c │ ├── GB_subassign.c │ ├── GB_subassign.h │ ├── GB_subassign_01.c │ ├── GB_subassign_02.c │ ├── GB_subassign_03.c │ ├── GB_subassign_04.c │ ├── GB_subassign_05.c │ ├── GB_subassign_05e.c │ ├── GB_subassign_06n.c │ ├── GB_subassign_06s_and_14.c │ ├── GB_subassign_07.c │ ├── GB_subassign_08n.c │ ├── GB_subassign_08n_slice.c │ ├── GB_subassign_08s_and_16.c │ ├── GB_subassign_09.c │ ├── GB_subassign_10_and_18.c │ ├── GB_subassign_11.c │ ├── GB_subassign_12_and_20.c │ ├── GB_subassign_13.c │ ├── GB_subassign_15.c │ ├── GB_subassign_17.c │ ├── GB_subassign_19.c │ ├── GB_subassign_24.c │ ├── GB_subassign_IxJ_slice.c │ ├── GB_subassign_IxJ_slice.h │ ├── GB_subassign_methods.h │ ├── GB_subassign_one_slice.c │ ├── GB_subassign_scalar.c │ ├── GB_subassign_symbolic.c │ ├── GB_subassign_zombie.c │ ├── GB_subassigner.c │ ├── GB_subassigner_method.c │ ├── GB_subref.c │ ├── GB_subref.h │ ├── GB_subref_phase0.c │ ├── GB_subref_phase2.c │ ├── GB_subref_phase3.c │ ├── GB_subref_slice.c │ ├── GB_task_cumsum.c │ ├── GB_task_struct.h │ ├── GB_transplant.c │ ├── GB_transplant.h │ ├── GB_transplant_conform.c │ ├── GB_transpose.c │ ├── GB_transpose.h │ ├── GB_transpose_bucket.c │ ├── GB_transpose_cast.c │ ├── GB_transpose_in_place.c │ ├── GB_transpose_ix.c │ ├── GB_transpose_method.c │ ├── GB_transpose_op.c │ ├── GB_type.h │ ├── GB_unjumble.c │ ├── GB_unop_one.c │ ├── GB_unused.h │ ├── GB_wait.c │ ├── GB_wait.h │ ├── GB_warnings.h │ ├── GB_werk.h │ ├── GB_xalloc_memory.c │ ├── GB_zombie.h │ ├── GB_zstd.c │ ├── GB_zstd.h │ ├── Generated1 │ │ ├── GB_AxB__any_pair_iso.c │ │ ├── GB_AxB__include1.h │ │ ├── GB_sel__colgt_any.c │ │ ├── GB_sel__colgt_iso.c │ │ ├── GB_sel__colindex_any.c │ │ ├── GB_sel__colindex_iso.c │ │ ├── GB_sel__colle_any.c │ │ ├── GB_sel__colle_iso.c │ │ ├── GB_sel__diag_any.c │ │ ├── GB_sel__diag_iso.c │ │ ├── GB_sel__eq_thunk_any.c │ │ ├── GB_sel__eq_thunk_fc32.c │ │ ├── GB_sel__eq_thunk_fc64.c │ │ ├── GB_sel__eq_thunk_fp32.c │ │ ├── GB_sel__eq_thunk_fp64.c │ │ ├── GB_sel__eq_thunk_int16.c │ │ ├── GB_sel__eq_thunk_int32.c │ │ ├── GB_sel__eq_thunk_int64.c │ │ ├── GB_sel__eq_thunk_int8.c │ │ ├── GB_sel__eq_thunk_uint16.c │ │ ├── GB_sel__eq_thunk_uint32.c │ │ ├── GB_sel__eq_thunk_uint64.c │ │ ├── GB_sel__eq_thunk_uint8.c │ │ ├── GB_sel__eq_zero_any.c │ │ ├── GB_sel__eq_zero_bool.c │ │ ├── GB_sel__eq_zero_fc32.c │ │ ├── GB_sel__eq_zero_fc64.c │ │ ├── GB_sel__eq_zero_fp32.c │ │ ├── GB_sel__eq_zero_fp64.c │ │ ├── GB_sel__eq_zero_int16.c │ │ ├── GB_sel__eq_zero_int32.c │ │ ├── GB_sel__eq_zero_int64.c │ │ ├── GB_sel__eq_zero_int8.c │ │ ├── GB_sel__eq_zero_uint16.c │ │ ├── GB_sel__eq_zero_uint32.c │ │ ├── GB_sel__eq_zero_uint64.c │ │ ├── GB_sel__eq_zero_uint8.c │ │ ├── GB_sel__ge_thunk_fp32.c │ │ ├── GB_sel__ge_thunk_fp64.c │ │ ├── GB_sel__ge_thunk_int16.c │ │ ├── GB_sel__ge_thunk_int32.c │ │ ├── GB_sel__ge_thunk_int64.c │ │ ├── GB_sel__ge_thunk_int8.c │ │ ├── GB_sel__ge_thunk_uint16.c │ │ ├── GB_sel__ge_thunk_uint32.c │ │ ├── GB_sel__ge_thunk_uint64.c │ │ ├── GB_sel__ge_thunk_uint8.c │ │ ├── GB_sel__ge_zero_fp32.c │ │ ├── GB_sel__ge_zero_fp64.c │ │ ├── GB_sel__ge_zero_int16.c │ │ ├── GB_sel__ge_zero_int32.c │ │ ├── GB_sel__ge_zero_int64.c │ │ ├── GB_sel__ge_zero_int8.c │ │ ├── GB_sel__gt_thunk_fp32.c │ │ ├── GB_sel__gt_thunk_fp64.c │ │ ├── GB_sel__gt_thunk_int16.c │ │ ├── GB_sel__gt_thunk_int32.c │ │ ├── GB_sel__gt_thunk_int64.c │ │ ├── GB_sel__gt_thunk_int8.c │ │ ├── GB_sel__gt_thunk_uint16.c │ │ ├── GB_sel__gt_thunk_uint32.c │ │ ├── GB_sel__gt_thunk_uint64.c │ │ ├── GB_sel__gt_thunk_uint8.c │ │ ├── GB_sel__gt_zero_fp32.c │ │ ├── GB_sel__gt_zero_fp64.c │ │ ├── GB_sel__gt_zero_int16.c │ │ ├── GB_sel__gt_zero_int32.c │ │ ├── GB_sel__gt_zero_int64.c │ │ ├── GB_sel__gt_zero_int8.c │ │ ├── GB_sel__idxunop_any.c │ │ ├── GB_sel__idxunop_cast_any.c │ │ ├── GB_sel__idxunop_cast_iso.c │ │ ├── GB_sel__idxunop_iso.c │ │ ├── GB_sel__include.h │ │ ├── GB_sel__le_thunk_fp32.c │ │ ├── GB_sel__le_thunk_fp64.c │ │ ├── GB_sel__le_thunk_int16.c │ │ ├── GB_sel__le_thunk_int32.c │ │ ├── GB_sel__le_thunk_int64.c │ │ ├── GB_sel__le_thunk_int8.c │ │ ├── GB_sel__le_thunk_uint16.c │ │ ├── GB_sel__le_thunk_uint32.c │ │ ├── GB_sel__le_thunk_uint64.c │ │ ├── GB_sel__le_thunk_uint8.c │ │ ├── GB_sel__le_zero_fp32.c │ │ ├── GB_sel__le_zero_fp64.c │ │ ├── GB_sel__le_zero_int16.c │ │ ├── GB_sel__le_zero_int32.c │ │ ├── GB_sel__le_zero_int64.c │ │ ├── GB_sel__le_zero_int8.c │ │ ├── GB_sel__lt_thunk_fp32.c │ │ ├── GB_sel__lt_thunk_fp64.c │ │ ├── GB_sel__lt_thunk_int16.c │ │ ├── GB_sel__lt_thunk_int32.c │ │ ├── GB_sel__lt_thunk_int64.c │ │ ├── GB_sel__lt_thunk_int8.c │ │ ├── GB_sel__lt_thunk_uint16.c │ │ ├── GB_sel__lt_thunk_uint32.c │ │ ├── GB_sel__lt_thunk_uint64.c │ │ ├── GB_sel__lt_thunk_uint8.c │ │ ├── GB_sel__lt_zero_fp32.c │ │ ├── GB_sel__lt_zero_fp64.c │ │ ├── GB_sel__lt_zero_int16.c │ │ ├── GB_sel__lt_zero_int32.c │ │ ├── GB_sel__lt_zero_int64.c │ │ ├── GB_sel__lt_zero_int8.c │ │ ├── GB_sel__ne_thunk_any.c │ │ ├── GB_sel__ne_thunk_fc32.c │ │ ├── GB_sel__ne_thunk_fc64.c │ │ ├── GB_sel__ne_thunk_fp32.c │ │ ├── GB_sel__ne_thunk_fp64.c │ │ ├── GB_sel__ne_thunk_int16.c │ │ ├── GB_sel__ne_thunk_int32.c │ │ ├── GB_sel__ne_thunk_int64.c │ │ ├── GB_sel__ne_thunk_int8.c │ │ ├── GB_sel__ne_thunk_uint16.c │ │ ├── GB_sel__ne_thunk_uint32.c │ │ ├── GB_sel__ne_thunk_uint64.c │ │ ├── GB_sel__ne_thunk_uint8.c │ │ ├── GB_sel__nonzero_any.c │ │ ├── GB_sel__nonzero_bool.c │ │ ├── GB_sel__nonzero_fc32.c │ │ ├── GB_sel__nonzero_fc64.c │ │ ├── GB_sel__nonzero_fp32.c │ │ ├── GB_sel__nonzero_fp64.c │ │ ├── GB_sel__nonzero_int16.c │ │ ├── GB_sel__nonzero_int32.c │ │ ├── GB_sel__nonzero_int64.c │ │ ├── GB_sel__nonzero_int8.c │ │ ├── GB_sel__nonzero_uint16.c │ │ ├── GB_sel__nonzero_uint32.c │ │ ├── GB_sel__nonzero_uint64.c │ │ ├── GB_sel__nonzero_uint8.c │ │ ├── GB_sel__nonzombie_any.c │ │ ├── GB_sel__nonzombie_bool.c │ │ ├── GB_sel__nonzombie_fc32.c │ │ ├── GB_sel__nonzombie_fc64.c │ │ ├── GB_sel__nonzombie_fp32.c │ │ ├── GB_sel__nonzombie_fp64.c │ │ ├── GB_sel__nonzombie_int16.c │ │ ├── GB_sel__nonzombie_int32.c │ │ ├── GB_sel__nonzombie_int64.c │ │ ├── GB_sel__nonzombie_int8.c │ │ ├── GB_sel__nonzombie_iso.c │ │ ├── GB_sel__nonzombie_uint16.c │ │ ├── GB_sel__nonzombie_uint32.c │ │ ├── GB_sel__nonzombie_uint64.c │ │ ├── GB_sel__nonzombie_uint8.c │ │ ├── GB_sel__offdiag_any.c │ │ ├── GB_sel__offdiag_iso.c │ │ ├── GB_sel__rowgt_any.c │ │ ├── GB_sel__rowgt_iso.c │ │ ├── GB_sel__rowindex_any.c │ │ ├── GB_sel__rowindex_iso.c │ │ ├── GB_sel__rowle_any.c │ │ ├── GB_sel__rowle_iso.c │ │ ├── GB_sel__tril_any.c │ │ ├── GB_sel__tril_iso.c │ │ ├── GB_sel__triu_any.c │ │ ├── GB_sel__triu_iso.c │ │ ├── GB_sel__user_any.c │ │ └── GB_sel__user_iso.c │ ├── Generated2 │ │ ├── GB_AxB__any_div_fc32.c │ │ ├── GB_AxB__any_div_fc64.c │ │ ├── GB_AxB__any_div_fp32.c │ │ ├── GB_AxB__any_div_fp64.c │ │ ├── GB_AxB__any_div_int16.c │ │ ├── GB_AxB__any_div_int32.c │ │ ├── GB_AxB__any_div_int64.c │ │ ├── GB_AxB__any_div_int8.c │ │ ├── GB_AxB__any_div_uint16.c │ │ ├── GB_AxB__any_div_uint32.c │ │ ├── GB_AxB__any_div_uint64.c │ │ ├── GB_AxB__any_div_uint8.c │ │ ├── GB_AxB__any_eq_bool.c │ │ ├── GB_AxB__any_eq_fp32.c │ │ ├── GB_AxB__any_eq_fp64.c │ │ ├── GB_AxB__any_eq_int16.c │ │ ├── GB_AxB__any_eq_int32.c │ │ ├── GB_AxB__any_eq_int64.c │ │ ├── GB_AxB__any_eq_int8.c │ │ ├── GB_AxB__any_eq_uint16.c │ │ ├── GB_AxB__any_eq_uint32.c │ │ ├── GB_AxB__any_eq_uint64.c │ │ ├── GB_AxB__any_eq_uint8.c │ │ ├── GB_AxB__any_first_bool.c │ │ ├── GB_AxB__any_first_fc32.c │ │ ├── GB_AxB__any_first_fc64.c │ │ ├── GB_AxB__any_first_fp32.c │ │ ├── GB_AxB__any_first_fp64.c │ │ ├── GB_AxB__any_first_int16.c │ │ ├── GB_AxB__any_first_int32.c │ │ ├── GB_AxB__any_first_int64.c │ │ ├── GB_AxB__any_first_int8.c │ │ ├── GB_AxB__any_first_uint16.c │ │ ├── GB_AxB__any_first_uint32.c │ │ ├── GB_AxB__any_first_uint64.c │ │ ├── GB_AxB__any_first_uint8.c │ │ ├── GB_AxB__any_firsti1_int32.c │ │ ├── GB_AxB__any_firsti1_int64.c │ │ ├── GB_AxB__any_firsti_int32.c │ │ ├── GB_AxB__any_firsti_int64.c │ │ ├── GB_AxB__any_firstj1_int32.c │ │ ├── GB_AxB__any_firstj1_int64.c │ │ ├── GB_AxB__any_firstj_int32.c │ │ ├── GB_AxB__any_firstj_int64.c │ │ ├── GB_AxB__any_ge_bool.c │ │ ├── GB_AxB__any_ge_fp32.c │ │ ├── GB_AxB__any_ge_fp64.c │ │ ├── GB_AxB__any_ge_int16.c │ │ ├── GB_AxB__any_ge_int32.c │ │ ├── GB_AxB__any_ge_int64.c │ │ ├── GB_AxB__any_ge_int8.c │ │ ├── GB_AxB__any_ge_uint16.c │ │ ├── GB_AxB__any_ge_uint32.c │ │ ├── GB_AxB__any_ge_uint64.c │ │ ├── GB_AxB__any_ge_uint8.c │ │ ├── GB_AxB__any_gt_bool.c │ │ ├── GB_AxB__any_gt_fp32.c │ │ ├── GB_AxB__any_gt_fp64.c │ │ ├── GB_AxB__any_gt_int16.c │ │ ├── GB_AxB__any_gt_int32.c │ │ ├── GB_AxB__any_gt_int64.c │ │ ├── GB_AxB__any_gt_int8.c │ │ ├── GB_AxB__any_gt_uint16.c │ │ ├── GB_AxB__any_gt_uint32.c │ │ ├── GB_AxB__any_gt_uint64.c │ │ ├── GB_AxB__any_gt_uint8.c │ │ ├── GB_AxB__any_land_bool.c │ │ ├── GB_AxB__any_le_bool.c │ │ ├── GB_AxB__any_le_fp32.c │ │ ├── GB_AxB__any_le_fp64.c │ │ ├── GB_AxB__any_le_int16.c │ │ ├── GB_AxB__any_le_int32.c │ │ ├── GB_AxB__any_le_int64.c │ │ ├── GB_AxB__any_le_int8.c │ │ ├── GB_AxB__any_le_uint16.c │ │ ├── GB_AxB__any_le_uint32.c │ │ ├── GB_AxB__any_le_uint64.c │ │ ├── GB_AxB__any_le_uint8.c │ │ ├── GB_AxB__any_lor_bool.c │ │ ├── GB_AxB__any_lt_bool.c │ │ ├── GB_AxB__any_lt_fp32.c │ │ ├── GB_AxB__any_lt_fp64.c │ │ ├── GB_AxB__any_lt_int16.c │ │ ├── GB_AxB__any_lt_int32.c │ │ ├── GB_AxB__any_lt_int64.c │ │ ├── GB_AxB__any_lt_int8.c │ │ ├── GB_AxB__any_lt_uint16.c │ │ ├── GB_AxB__any_lt_uint32.c │ │ ├── GB_AxB__any_lt_uint64.c │ │ ├── GB_AxB__any_lt_uint8.c │ │ ├── GB_AxB__any_lxor_bool.c │ │ ├── GB_AxB__any_max_fp32.c │ │ ├── GB_AxB__any_max_fp64.c │ │ ├── GB_AxB__any_max_int16.c │ │ ├── GB_AxB__any_max_int32.c │ │ ├── GB_AxB__any_max_int64.c │ │ ├── GB_AxB__any_max_int8.c │ │ ├── GB_AxB__any_max_uint16.c │ │ ├── GB_AxB__any_max_uint32.c │ │ ├── GB_AxB__any_max_uint64.c │ │ ├── GB_AxB__any_max_uint8.c │ │ ├── GB_AxB__any_min_fp32.c │ │ ├── GB_AxB__any_min_fp64.c │ │ ├── GB_AxB__any_min_int16.c │ │ ├── GB_AxB__any_min_int32.c │ │ ├── GB_AxB__any_min_int64.c │ │ ├── GB_AxB__any_min_int8.c │ │ ├── GB_AxB__any_min_uint16.c │ │ ├── GB_AxB__any_min_uint32.c │ │ ├── GB_AxB__any_min_uint64.c │ │ ├── GB_AxB__any_min_uint8.c │ │ ├── GB_AxB__any_minus_fc32.c │ │ ├── GB_AxB__any_minus_fc64.c │ │ ├── GB_AxB__any_minus_fp32.c │ │ ├── GB_AxB__any_minus_fp64.c │ │ ├── GB_AxB__any_minus_int16.c │ │ ├── GB_AxB__any_minus_int32.c │ │ ├── GB_AxB__any_minus_int64.c │ │ ├── GB_AxB__any_minus_int8.c │ │ ├── GB_AxB__any_minus_uint16.c │ │ ├── GB_AxB__any_minus_uint32.c │ │ ├── GB_AxB__any_minus_uint64.c │ │ ├── GB_AxB__any_minus_uint8.c │ │ ├── GB_AxB__any_ne_fp32.c │ │ ├── GB_AxB__any_ne_fp64.c │ │ ├── GB_AxB__any_ne_int16.c │ │ ├── GB_AxB__any_ne_int32.c │ │ ├── GB_AxB__any_ne_int64.c │ │ ├── GB_AxB__any_ne_int8.c │ │ ├── GB_AxB__any_ne_uint16.c │ │ ├── GB_AxB__any_ne_uint32.c │ │ ├── GB_AxB__any_ne_uint64.c │ │ ├── GB_AxB__any_ne_uint8.c │ │ ├── GB_AxB__any_plus_fc32.c │ │ ├── GB_AxB__any_plus_fc64.c │ │ ├── GB_AxB__any_plus_fp32.c │ │ ├── GB_AxB__any_plus_fp64.c │ │ ├── GB_AxB__any_plus_int16.c │ │ ├── GB_AxB__any_plus_int32.c │ │ ├── GB_AxB__any_plus_int64.c │ │ ├── GB_AxB__any_plus_int8.c │ │ ├── GB_AxB__any_plus_uint16.c │ │ ├── GB_AxB__any_plus_uint32.c │ │ ├── GB_AxB__any_plus_uint64.c │ │ ├── GB_AxB__any_plus_uint8.c │ │ ├── GB_AxB__any_rdiv_fc32.c │ │ ├── GB_AxB__any_rdiv_fc64.c │ │ ├── GB_AxB__any_rdiv_fp32.c │ │ ├── GB_AxB__any_rdiv_fp64.c │ │ ├── GB_AxB__any_rdiv_int16.c │ │ ├── GB_AxB__any_rdiv_int32.c │ │ ├── GB_AxB__any_rdiv_int64.c │ │ ├── GB_AxB__any_rdiv_int8.c │ │ ├── GB_AxB__any_rdiv_uint16.c │ │ ├── GB_AxB__any_rdiv_uint32.c │ │ ├── GB_AxB__any_rdiv_uint64.c │ │ ├── GB_AxB__any_rdiv_uint8.c │ │ ├── GB_AxB__any_rminus_fc32.c │ │ ├── GB_AxB__any_rminus_fc64.c │ │ ├── GB_AxB__any_rminus_fp32.c │ │ ├── GB_AxB__any_rminus_fp64.c │ │ ├── GB_AxB__any_rminus_int16.c │ │ ├── GB_AxB__any_rminus_int32.c │ │ ├── GB_AxB__any_rminus_int64.c │ │ ├── GB_AxB__any_rminus_int8.c │ │ ├── GB_AxB__any_rminus_uint16.c │ │ ├── GB_AxB__any_rminus_uint32.c │ │ ├── GB_AxB__any_rminus_uint64.c │ │ ├── GB_AxB__any_rminus_uint8.c │ │ ├── GB_AxB__any_second_bool.c │ │ ├── GB_AxB__any_second_fc32.c │ │ ├── GB_AxB__any_second_fc64.c │ │ ├── GB_AxB__any_second_fp32.c │ │ ├── GB_AxB__any_second_fp64.c │ │ ├── GB_AxB__any_second_int16.c │ │ ├── GB_AxB__any_second_int32.c │ │ ├── GB_AxB__any_second_int64.c │ │ ├── GB_AxB__any_second_int8.c │ │ ├── GB_AxB__any_second_uint16.c │ │ ├── GB_AxB__any_second_uint32.c │ │ ├── GB_AxB__any_second_uint64.c │ │ ├── GB_AxB__any_second_uint8.c │ │ ├── GB_AxB__any_secondj1_int32.c │ │ ├── GB_AxB__any_secondj1_int64.c │ │ ├── GB_AxB__any_secondj_int32.c │ │ ├── GB_AxB__any_secondj_int64.c │ │ ├── GB_AxB__any_times_fc32.c │ │ ├── GB_AxB__any_times_fc64.c │ │ ├── GB_AxB__any_times_fp32.c │ │ ├── GB_AxB__any_times_fp64.c │ │ ├── GB_AxB__any_times_int16.c │ │ ├── GB_AxB__any_times_int32.c │ │ ├── GB_AxB__any_times_int64.c │ │ ├── GB_AxB__any_times_int8.c │ │ ├── GB_AxB__any_times_uint16.c │ │ ├── GB_AxB__any_times_uint32.c │ │ ├── GB_AxB__any_times_uint64.c │ │ ├── GB_AxB__any_times_uint8.c │ │ ├── GB_AxB__band_band_uint16.c │ │ ├── GB_AxB__band_band_uint32.c │ │ ├── GB_AxB__band_band_uint64.c │ │ ├── GB_AxB__band_band_uint8.c │ │ ├── GB_AxB__band_bor_uint16.c │ │ ├── GB_AxB__band_bor_uint32.c │ │ ├── GB_AxB__band_bor_uint64.c │ │ ├── GB_AxB__band_bor_uint8.c │ │ ├── GB_AxB__band_bxnor_uint16.c │ │ ├── GB_AxB__band_bxnor_uint32.c │ │ ├── GB_AxB__band_bxnor_uint64.c │ │ ├── GB_AxB__band_bxnor_uint8.c │ │ ├── GB_AxB__band_bxor_uint16.c │ │ ├── GB_AxB__band_bxor_uint32.c │ │ ├── GB_AxB__band_bxor_uint64.c │ │ ├── GB_AxB__band_bxor_uint8.c │ │ ├── GB_AxB__bor_band_uint16.c │ │ ├── GB_AxB__bor_band_uint32.c │ │ ├── GB_AxB__bor_band_uint64.c │ │ ├── GB_AxB__bor_band_uint8.c │ │ ├── GB_AxB__bor_bor_uint16.c │ │ ├── GB_AxB__bor_bor_uint32.c │ │ ├── GB_AxB__bor_bor_uint64.c │ │ ├── GB_AxB__bor_bor_uint8.c │ │ ├── GB_AxB__bor_bxnor_uint16.c │ │ ├── GB_AxB__bor_bxnor_uint32.c │ │ ├── GB_AxB__bor_bxnor_uint64.c │ │ ├── GB_AxB__bor_bxnor_uint8.c │ │ ├── GB_AxB__bor_bxor_uint16.c │ │ ├── GB_AxB__bor_bxor_uint32.c │ │ ├── GB_AxB__bor_bxor_uint64.c │ │ ├── GB_AxB__bor_bxor_uint8.c │ │ ├── GB_AxB__bxnor_band_uint16.c │ │ ├── GB_AxB__bxnor_band_uint32.c │ │ ├── GB_AxB__bxnor_band_uint64.c │ │ ├── GB_AxB__bxnor_band_uint8.c │ │ ├── GB_AxB__bxnor_bor_uint16.c │ │ ├── GB_AxB__bxnor_bor_uint32.c │ │ ├── GB_AxB__bxnor_bor_uint64.c │ │ ├── GB_AxB__bxnor_bor_uint8.c │ │ ├── GB_AxB__bxnor_bxnor_uint16.c │ │ ├── GB_AxB__bxnor_bxnor_uint32.c │ │ ├── GB_AxB__bxnor_bxnor_uint64.c │ │ ├── GB_AxB__bxnor_bxnor_uint8.c │ │ ├── GB_AxB__bxnor_bxor_uint16.c │ │ ├── GB_AxB__bxnor_bxor_uint32.c │ │ ├── GB_AxB__bxnor_bxor_uint64.c │ │ ├── GB_AxB__bxnor_bxor_uint8.c │ │ ├── GB_AxB__bxor_band_uint16.c │ │ ├── GB_AxB__bxor_band_uint32.c │ │ ├── GB_AxB__bxor_band_uint64.c │ │ ├── GB_AxB__bxor_band_uint8.c │ │ ├── GB_AxB__bxor_bor_uint16.c │ │ ├── GB_AxB__bxor_bor_uint32.c │ │ ├── GB_AxB__bxor_bor_uint64.c │ │ ├── GB_AxB__bxor_bor_uint8.c │ │ ├── GB_AxB__bxor_bxnor_uint16.c │ │ ├── GB_AxB__bxor_bxnor_uint32.c │ │ ├── GB_AxB__bxor_bxnor_uint64.c │ │ ├── GB_AxB__bxor_bxnor_uint8.c │ │ ├── GB_AxB__bxor_bxor_uint16.c │ │ ├── GB_AxB__bxor_bxor_uint32.c │ │ ├── GB_AxB__bxor_bxor_uint64.c │ │ ├── GB_AxB__bxor_bxor_uint8.c │ │ ├── GB_AxB__eq_eq_bool.c │ │ ├── GB_AxB__eq_eq_fp32.c │ │ ├── GB_AxB__eq_eq_fp64.c │ │ ├── GB_AxB__eq_eq_int16.c │ │ ├── GB_AxB__eq_eq_int32.c │ │ ├── GB_AxB__eq_eq_int64.c │ │ ├── GB_AxB__eq_eq_int8.c │ │ ├── GB_AxB__eq_eq_uint16.c │ │ ├── GB_AxB__eq_eq_uint32.c │ │ ├── GB_AxB__eq_eq_uint64.c │ │ ├── GB_AxB__eq_eq_uint8.c │ │ ├── GB_AxB__eq_first_bool.c │ │ ├── GB_AxB__eq_ge_bool.c │ │ ├── GB_AxB__eq_ge_fp32.c │ │ ├── GB_AxB__eq_ge_fp64.c │ │ ├── GB_AxB__eq_ge_int16.c │ │ ├── GB_AxB__eq_ge_int32.c │ │ ├── GB_AxB__eq_ge_int64.c │ │ ├── GB_AxB__eq_ge_int8.c │ │ ├── GB_AxB__eq_ge_uint16.c │ │ ├── GB_AxB__eq_ge_uint32.c │ │ ├── GB_AxB__eq_ge_uint64.c │ │ ├── GB_AxB__eq_ge_uint8.c │ │ ├── GB_AxB__eq_gt_bool.c │ │ ├── GB_AxB__eq_gt_fp32.c │ │ ├── GB_AxB__eq_gt_fp64.c │ │ ├── GB_AxB__eq_gt_int16.c │ │ ├── GB_AxB__eq_gt_int32.c │ │ ├── GB_AxB__eq_gt_int64.c │ │ ├── GB_AxB__eq_gt_int8.c │ │ ├── GB_AxB__eq_gt_uint16.c │ │ ├── GB_AxB__eq_gt_uint32.c │ │ ├── GB_AxB__eq_gt_uint64.c │ │ ├── GB_AxB__eq_gt_uint8.c │ │ ├── GB_AxB__eq_land_bool.c │ │ ├── GB_AxB__eq_le_bool.c │ │ ├── GB_AxB__eq_le_fp32.c │ │ ├── GB_AxB__eq_le_fp64.c │ │ ├── GB_AxB__eq_le_int16.c │ │ ├── GB_AxB__eq_le_int32.c │ │ ├── GB_AxB__eq_le_int64.c │ │ ├── GB_AxB__eq_le_int8.c │ │ ├── GB_AxB__eq_le_uint16.c │ │ ├── GB_AxB__eq_le_uint32.c │ │ ├── GB_AxB__eq_le_uint64.c │ │ ├── GB_AxB__eq_le_uint8.c │ │ ├── GB_AxB__eq_lor_bool.c │ │ ├── GB_AxB__eq_lt_bool.c │ │ ├── GB_AxB__eq_lt_fp32.c │ │ ├── GB_AxB__eq_lt_fp64.c │ │ ├── GB_AxB__eq_lt_int16.c │ │ ├── GB_AxB__eq_lt_int32.c │ │ ├── GB_AxB__eq_lt_int64.c │ │ ├── GB_AxB__eq_lt_int8.c │ │ ├── GB_AxB__eq_lt_uint16.c │ │ ├── GB_AxB__eq_lt_uint32.c │ │ ├── GB_AxB__eq_lt_uint64.c │ │ ├── GB_AxB__eq_lt_uint8.c │ │ ├── GB_AxB__eq_lxor_bool.c │ │ ├── GB_AxB__eq_ne_fp32.c │ │ ├── GB_AxB__eq_ne_fp64.c │ │ ├── GB_AxB__eq_ne_int16.c │ │ ├── GB_AxB__eq_ne_int32.c │ │ ├── GB_AxB__eq_ne_int64.c │ │ ├── GB_AxB__eq_ne_int8.c │ │ ├── GB_AxB__eq_ne_uint16.c │ │ ├── GB_AxB__eq_ne_uint32.c │ │ ├── GB_AxB__eq_ne_uint64.c │ │ ├── GB_AxB__eq_ne_uint8.c │ │ ├── GB_AxB__eq_second_bool.c │ │ ├── GB_AxB__include2.h │ │ ├── GB_AxB__land_eq_bool.c │ │ ├── GB_AxB__land_eq_fp32.c │ │ ├── GB_AxB__land_eq_fp64.c │ │ ├── GB_AxB__land_eq_int16.c │ │ ├── GB_AxB__land_eq_int32.c │ │ ├── GB_AxB__land_eq_int64.c │ │ ├── GB_AxB__land_eq_int8.c │ │ ├── GB_AxB__land_eq_uint16.c │ │ ├── GB_AxB__land_eq_uint32.c │ │ ├── GB_AxB__land_eq_uint64.c │ │ ├── GB_AxB__land_eq_uint8.c │ │ ├── GB_AxB__land_first_bool.c │ │ ├── GB_AxB__land_ge_bool.c │ │ ├── GB_AxB__land_ge_fp32.c │ │ ├── GB_AxB__land_ge_fp64.c │ │ ├── GB_AxB__land_ge_int16.c │ │ ├── GB_AxB__land_ge_int32.c │ │ ├── GB_AxB__land_ge_int64.c │ │ ├── GB_AxB__land_ge_int8.c │ │ ├── GB_AxB__land_ge_uint16.c │ │ ├── GB_AxB__land_ge_uint32.c │ │ ├── GB_AxB__land_ge_uint64.c │ │ ├── GB_AxB__land_ge_uint8.c │ │ ├── GB_AxB__land_gt_bool.c │ │ ├── GB_AxB__land_gt_fp32.c │ │ ├── GB_AxB__land_gt_fp64.c │ │ ├── GB_AxB__land_gt_int16.c │ │ ├── GB_AxB__land_gt_int32.c │ │ ├── GB_AxB__land_gt_int64.c │ │ ├── GB_AxB__land_gt_int8.c │ │ ├── GB_AxB__land_gt_uint16.c │ │ ├── GB_AxB__land_gt_uint32.c │ │ ├── GB_AxB__land_gt_uint64.c │ │ ├── GB_AxB__land_gt_uint8.c │ │ ├── GB_AxB__land_land_bool.c │ │ ├── GB_AxB__land_le_bool.c │ │ ├── GB_AxB__land_le_fp32.c │ │ ├── GB_AxB__land_le_fp64.c │ │ ├── GB_AxB__land_le_int16.c │ │ ├── GB_AxB__land_le_int32.c │ │ ├── GB_AxB__land_le_int64.c │ │ ├── GB_AxB__land_le_int8.c │ │ ├── GB_AxB__land_le_uint16.c │ │ ├── GB_AxB__land_le_uint32.c │ │ ├── GB_AxB__land_le_uint64.c │ │ ├── GB_AxB__land_le_uint8.c │ │ ├── GB_AxB__land_lor_bool.c │ │ ├── GB_AxB__land_lt_bool.c │ │ ├── GB_AxB__land_lt_fp32.c │ │ ├── GB_AxB__land_lt_fp64.c │ │ ├── GB_AxB__land_lt_int16.c │ │ ├── GB_AxB__land_lt_int32.c │ │ ├── GB_AxB__land_lt_int64.c │ │ ├── GB_AxB__land_lt_int8.c │ │ ├── GB_AxB__land_lt_uint16.c │ │ ├── GB_AxB__land_lt_uint32.c │ │ ├── GB_AxB__land_lt_uint64.c │ │ ├── GB_AxB__land_lt_uint8.c │ │ ├── GB_AxB__land_lxor_bool.c │ │ ├── GB_AxB__land_ne_fp32.c │ │ ├── GB_AxB__land_ne_fp64.c │ │ ├── GB_AxB__land_ne_int16.c │ │ ├── GB_AxB__land_ne_int32.c │ │ ├── GB_AxB__land_ne_int64.c │ │ ├── GB_AxB__land_ne_int8.c │ │ ├── GB_AxB__land_ne_uint16.c │ │ ├── GB_AxB__land_ne_uint32.c │ │ ├── GB_AxB__land_ne_uint64.c │ │ ├── GB_AxB__land_ne_uint8.c │ │ ├── GB_AxB__land_second_bool.c │ │ ├── GB_AxB__lor_eq_bool.c │ │ ├── GB_AxB__lor_eq_fp32.c │ │ ├── GB_AxB__lor_eq_fp64.c │ │ ├── GB_AxB__lor_eq_int16.c │ │ ├── GB_AxB__lor_eq_int32.c │ │ ├── GB_AxB__lor_eq_int64.c │ │ ├── GB_AxB__lor_eq_int8.c │ │ ├── GB_AxB__lor_eq_uint16.c │ │ ├── GB_AxB__lor_eq_uint32.c │ │ ├── GB_AxB__lor_eq_uint64.c │ │ ├── GB_AxB__lor_eq_uint8.c │ │ ├── GB_AxB__lor_first_bool.c │ │ ├── GB_AxB__lor_ge_bool.c │ │ ├── GB_AxB__lor_ge_fp32.c │ │ ├── GB_AxB__lor_ge_fp64.c │ │ ├── GB_AxB__lor_ge_int16.c │ │ ├── GB_AxB__lor_ge_int32.c │ │ ├── GB_AxB__lor_ge_int64.c │ │ ├── GB_AxB__lor_ge_int8.c │ │ ├── GB_AxB__lor_ge_uint16.c │ │ ├── GB_AxB__lor_ge_uint32.c │ │ ├── GB_AxB__lor_ge_uint64.c │ │ ├── GB_AxB__lor_ge_uint8.c │ │ ├── GB_AxB__lor_gt_bool.c │ │ ├── GB_AxB__lor_gt_fp32.c │ │ ├── GB_AxB__lor_gt_fp64.c │ │ ├── GB_AxB__lor_gt_int16.c │ │ ├── GB_AxB__lor_gt_int32.c │ │ ├── GB_AxB__lor_gt_int64.c │ │ ├── GB_AxB__lor_gt_int8.c │ │ ├── GB_AxB__lor_gt_uint16.c │ │ ├── GB_AxB__lor_gt_uint32.c │ │ ├── GB_AxB__lor_gt_uint64.c │ │ ├── GB_AxB__lor_gt_uint8.c │ │ ├── GB_AxB__lor_land_bool.c │ │ ├── GB_AxB__lor_le_bool.c │ │ ├── GB_AxB__lor_le_fp32.c │ │ ├── GB_AxB__lor_le_fp64.c │ │ ├── GB_AxB__lor_le_int16.c │ │ ├── GB_AxB__lor_le_int32.c │ │ ├── GB_AxB__lor_le_int64.c │ │ ├── GB_AxB__lor_le_int8.c │ │ ├── GB_AxB__lor_le_uint16.c │ │ ├── GB_AxB__lor_le_uint32.c │ │ ├── GB_AxB__lor_le_uint64.c │ │ ├── GB_AxB__lor_le_uint8.c │ │ ├── GB_AxB__lor_lor_bool.c │ │ ├── GB_AxB__lor_lt_bool.c │ │ ├── GB_AxB__lor_lt_fp32.c │ │ ├── GB_AxB__lor_lt_fp64.c │ │ ├── GB_AxB__lor_lt_int16.c │ │ ├── GB_AxB__lor_lt_int32.c │ │ ├── GB_AxB__lor_lt_int64.c │ │ ├── GB_AxB__lor_lt_int8.c │ │ ├── GB_AxB__lor_lt_uint16.c │ │ ├── GB_AxB__lor_lt_uint32.c │ │ ├── GB_AxB__lor_lt_uint64.c │ │ ├── GB_AxB__lor_lt_uint8.c │ │ ├── GB_AxB__lor_lxor_bool.c │ │ ├── GB_AxB__lor_ne_fp32.c │ │ ├── GB_AxB__lor_ne_fp64.c │ │ ├── GB_AxB__lor_ne_int16.c │ │ ├── GB_AxB__lor_ne_int32.c │ │ ├── GB_AxB__lor_ne_int64.c │ │ ├── GB_AxB__lor_ne_int8.c │ │ ├── GB_AxB__lor_ne_uint16.c │ │ ├── GB_AxB__lor_ne_uint32.c │ │ ├── GB_AxB__lor_ne_uint64.c │ │ ├── GB_AxB__lor_ne_uint8.c │ │ ├── GB_AxB__lor_second_bool.c │ │ ├── GB_AxB__lxor_eq_bool.c │ │ ├── GB_AxB__lxor_eq_fp32.c │ │ ├── GB_AxB__lxor_eq_fp64.c │ │ ├── GB_AxB__lxor_eq_int16.c │ │ ├── GB_AxB__lxor_eq_int32.c │ │ ├── GB_AxB__lxor_eq_int64.c │ │ ├── GB_AxB__lxor_eq_int8.c │ │ ├── GB_AxB__lxor_eq_uint16.c │ │ ├── GB_AxB__lxor_eq_uint32.c │ │ ├── GB_AxB__lxor_eq_uint64.c │ │ ├── GB_AxB__lxor_eq_uint8.c │ │ ├── GB_AxB__lxor_first_bool.c │ │ ├── GB_AxB__lxor_ge_bool.c │ │ ├── GB_AxB__lxor_ge_fp32.c │ │ ├── GB_AxB__lxor_ge_fp64.c │ │ ├── GB_AxB__lxor_ge_int16.c │ │ ├── GB_AxB__lxor_ge_int32.c │ │ ├── GB_AxB__lxor_ge_int64.c │ │ ├── GB_AxB__lxor_ge_int8.c │ │ ├── GB_AxB__lxor_ge_uint16.c │ │ ├── GB_AxB__lxor_ge_uint32.c │ │ ├── GB_AxB__lxor_ge_uint64.c │ │ ├── GB_AxB__lxor_ge_uint8.c │ │ ├── GB_AxB__lxor_gt_bool.c │ │ ├── GB_AxB__lxor_gt_fp32.c │ │ ├── GB_AxB__lxor_gt_fp64.c │ │ ├── GB_AxB__lxor_gt_int16.c │ │ ├── GB_AxB__lxor_gt_int32.c │ │ ├── GB_AxB__lxor_gt_int64.c │ │ ├── GB_AxB__lxor_gt_int8.c │ │ ├── GB_AxB__lxor_gt_uint16.c │ │ ├── GB_AxB__lxor_gt_uint32.c │ │ ├── GB_AxB__lxor_gt_uint64.c │ │ ├── GB_AxB__lxor_gt_uint8.c │ │ ├── GB_AxB__lxor_land_bool.c │ │ ├── GB_AxB__lxor_le_bool.c │ │ ├── GB_AxB__lxor_le_fp32.c │ │ ├── GB_AxB__lxor_le_fp64.c │ │ ├── GB_AxB__lxor_le_int16.c │ │ ├── GB_AxB__lxor_le_int32.c │ │ ├── GB_AxB__lxor_le_int64.c │ │ ├── GB_AxB__lxor_le_int8.c │ │ ├── GB_AxB__lxor_le_uint16.c │ │ ├── GB_AxB__lxor_le_uint32.c │ │ ├── GB_AxB__lxor_le_uint64.c │ │ ├── GB_AxB__lxor_le_uint8.c │ │ ├── GB_AxB__lxor_lor_bool.c │ │ ├── GB_AxB__lxor_lt_bool.c │ │ ├── GB_AxB__lxor_lt_fp32.c │ │ ├── GB_AxB__lxor_lt_fp64.c │ │ ├── GB_AxB__lxor_lt_int16.c │ │ ├── GB_AxB__lxor_lt_int32.c │ │ ├── GB_AxB__lxor_lt_int64.c │ │ ├── GB_AxB__lxor_lt_int8.c │ │ ├── GB_AxB__lxor_lt_uint16.c │ │ ├── GB_AxB__lxor_lt_uint32.c │ │ ├── GB_AxB__lxor_lt_uint64.c │ │ ├── GB_AxB__lxor_lt_uint8.c │ │ ├── GB_AxB__lxor_lxor_bool.c │ │ ├── GB_AxB__lxor_ne_fp32.c │ │ ├── GB_AxB__lxor_ne_fp64.c │ │ ├── GB_AxB__lxor_ne_int16.c │ │ ├── GB_AxB__lxor_ne_int32.c │ │ ├── GB_AxB__lxor_ne_int64.c │ │ ├── GB_AxB__lxor_ne_int8.c │ │ ├── GB_AxB__lxor_ne_uint16.c │ │ ├── GB_AxB__lxor_ne_uint32.c │ │ ├── GB_AxB__lxor_ne_uint64.c │ │ ├── GB_AxB__lxor_ne_uint8.c │ │ ├── GB_AxB__lxor_pair_bool.c │ │ ├── GB_AxB__lxor_second_bool.c │ │ ├── GB_AxB__max_div_fp32.c │ │ ├── GB_AxB__max_div_fp64.c │ │ ├── GB_AxB__max_div_int16.c │ │ ├── GB_AxB__max_div_int32.c │ │ ├── GB_AxB__max_div_int64.c │ │ ├── GB_AxB__max_div_int8.c │ │ ├── GB_AxB__max_div_uint16.c │ │ ├── GB_AxB__max_div_uint32.c │ │ ├── GB_AxB__max_div_uint64.c │ │ ├── GB_AxB__max_div_uint8.c │ │ ├── GB_AxB__max_first_fp32.c │ │ ├── GB_AxB__max_first_fp64.c │ │ ├── GB_AxB__max_first_int16.c │ │ ├── GB_AxB__max_first_int32.c │ │ ├── GB_AxB__max_first_int64.c │ │ ├── GB_AxB__max_first_int8.c │ │ ├── GB_AxB__max_first_uint16.c │ │ ├── GB_AxB__max_first_uint32.c │ │ ├── GB_AxB__max_first_uint64.c │ │ ├── GB_AxB__max_first_uint8.c │ │ ├── GB_AxB__max_firsti1_int32.c │ │ ├── GB_AxB__max_firsti1_int64.c │ │ ├── GB_AxB__max_firsti_int32.c │ │ ├── GB_AxB__max_firsti_int64.c │ │ ├── GB_AxB__max_firstj1_int32.c │ │ ├── GB_AxB__max_firstj1_int64.c │ │ ├── GB_AxB__max_firstj_int32.c │ │ ├── GB_AxB__max_firstj_int64.c │ │ ├── GB_AxB__max_max_fp32.c │ │ ├── GB_AxB__max_max_fp64.c │ │ ├── GB_AxB__max_max_int16.c │ │ ├── GB_AxB__max_max_int32.c │ │ ├── GB_AxB__max_max_int64.c │ │ ├── GB_AxB__max_max_int8.c │ │ ├── GB_AxB__max_max_uint16.c │ │ ├── GB_AxB__max_max_uint32.c │ │ ├── GB_AxB__max_max_uint64.c │ │ ├── GB_AxB__max_max_uint8.c │ │ ├── GB_AxB__max_min_fp32.c │ │ ├── GB_AxB__max_min_fp64.c │ │ ├── GB_AxB__max_min_int16.c │ │ ├── GB_AxB__max_min_int32.c │ │ ├── GB_AxB__max_min_int64.c │ │ ├── GB_AxB__max_min_int8.c │ │ ├── GB_AxB__max_min_uint16.c │ │ ├── GB_AxB__max_min_uint32.c │ │ ├── GB_AxB__max_min_uint64.c │ │ ├── GB_AxB__max_min_uint8.c │ │ ├── GB_AxB__max_minus_fp32.c │ │ ├── GB_AxB__max_minus_fp64.c │ │ ├── GB_AxB__max_minus_int16.c │ │ ├── GB_AxB__max_minus_int32.c │ │ ├── GB_AxB__max_minus_int64.c │ │ ├── GB_AxB__max_minus_int8.c │ │ ├── GB_AxB__max_minus_uint16.c │ │ ├── GB_AxB__max_minus_uint32.c │ │ ├── GB_AxB__max_minus_uint64.c │ │ ├── GB_AxB__max_minus_uint8.c │ │ ├── GB_AxB__max_plus_fp32.c │ │ ├── GB_AxB__max_plus_fp64.c │ │ ├── GB_AxB__max_plus_int16.c │ │ ├── GB_AxB__max_plus_int32.c │ │ ├── GB_AxB__max_plus_int64.c │ │ ├── GB_AxB__max_plus_int8.c │ │ ├── GB_AxB__max_plus_uint16.c │ │ ├── GB_AxB__max_plus_uint32.c │ │ ├── GB_AxB__max_plus_uint64.c │ │ ├── GB_AxB__max_plus_uint8.c │ │ ├── GB_AxB__max_rdiv_fp32.c │ │ ├── GB_AxB__max_rdiv_fp64.c │ │ ├── GB_AxB__max_rdiv_int16.c │ │ ├── GB_AxB__max_rdiv_int32.c │ │ ├── GB_AxB__max_rdiv_int64.c │ │ ├── GB_AxB__max_rdiv_int8.c │ │ ├── GB_AxB__max_rdiv_uint16.c │ │ ├── GB_AxB__max_rdiv_uint32.c │ │ ├── GB_AxB__max_rdiv_uint64.c │ │ ├── GB_AxB__max_rdiv_uint8.c │ │ ├── GB_AxB__max_rminus_fp32.c │ │ ├── GB_AxB__max_rminus_fp64.c │ │ ├── GB_AxB__max_rminus_int16.c │ │ ├── GB_AxB__max_rminus_int32.c │ │ ├── GB_AxB__max_rminus_int64.c │ │ ├── GB_AxB__max_rminus_int8.c │ │ ├── GB_AxB__max_rminus_uint16.c │ │ ├── GB_AxB__max_rminus_uint32.c │ │ ├── GB_AxB__max_rminus_uint64.c │ │ ├── GB_AxB__max_rminus_uint8.c │ │ ├── GB_AxB__max_second_fp32.c │ │ ├── GB_AxB__max_second_fp64.c │ │ ├── GB_AxB__max_second_int16.c │ │ ├── GB_AxB__max_second_int32.c │ │ ├── GB_AxB__max_second_int64.c │ │ ├── GB_AxB__max_second_int8.c │ │ ├── GB_AxB__max_second_uint16.c │ │ ├── GB_AxB__max_second_uint32.c │ │ ├── GB_AxB__max_second_uint64.c │ │ ├── GB_AxB__max_second_uint8.c │ │ ├── GB_AxB__max_secondj1_int32.c │ │ ├── GB_AxB__max_secondj1_int64.c │ │ ├── GB_AxB__max_secondj_int32.c │ │ ├── GB_AxB__max_secondj_int64.c │ │ ├── GB_AxB__max_times_fp32.c │ │ ├── GB_AxB__max_times_fp64.c │ │ ├── GB_AxB__max_times_int16.c │ │ ├── GB_AxB__max_times_int32.c │ │ ├── GB_AxB__max_times_int64.c │ │ ├── GB_AxB__max_times_int8.c │ │ ├── GB_AxB__max_times_uint16.c │ │ ├── GB_AxB__max_times_uint32.c │ │ ├── GB_AxB__max_times_uint64.c │ │ ├── GB_AxB__max_times_uint8.c │ │ ├── GB_AxB__min_div_fp32.c │ │ ├── GB_AxB__min_div_fp64.c │ │ ├── GB_AxB__min_div_int16.c │ │ ├── GB_AxB__min_div_int32.c │ │ ├── GB_AxB__min_div_int64.c │ │ ├── GB_AxB__min_div_int8.c │ │ ├── GB_AxB__min_div_uint16.c │ │ ├── GB_AxB__min_div_uint32.c │ │ ├── GB_AxB__min_div_uint64.c │ │ ├── GB_AxB__min_div_uint8.c │ │ ├── GB_AxB__min_first_fp32.c │ │ ├── GB_AxB__min_first_fp64.c │ │ ├── GB_AxB__min_first_int16.c │ │ ├── GB_AxB__min_first_int32.c │ │ ├── GB_AxB__min_first_int64.c │ │ ├── GB_AxB__min_first_int8.c │ │ ├── GB_AxB__min_first_uint16.c │ │ ├── GB_AxB__min_first_uint32.c │ │ ├── GB_AxB__min_first_uint64.c │ │ ├── GB_AxB__min_first_uint8.c │ │ ├── GB_AxB__min_firsti1_int32.c │ │ ├── GB_AxB__min_firsti1_int64.c │ │ ├── GB_AxB__min_firsti_int32.c │ │ ├── GB_AxB__min_firsti_int64.c │ │ ├── GB_AxB__min_firstj1_int32.c │ │ ├── GB_AxB__min_firstj1_int64.c │ │ ├── GB_AxB__min_firstj_int32.c │ │ ├── GB_AxB__min_firstj_int64.c │ │ ├── GB_AxB__min_max_fp32.c │ │ ├── GB_AxB__min_max_fp64.c │ │ ├── GB_AxB__min_max_int16.c │ │ ├── GB_AxB__min_max_int32.c │ │ ├── GB_AxB__min_max_int64.c │ │ ├── GB_AxB__min_max_int8.c │ │ ├── GB_AxB__min_max_uint16.c │ │ ├── GB_AxB__min_max_uint32.c │ │ ├── GB_AxB__min_max_uint64.c │ │ ├── GB_AxB__min_max_uint8.c │ │ ├── GB_AxB__min_min_fp32.c │ │ ├── GB_AxB__min_min_fp64.c │ │ ├── GB_AxB__min_min_int16.c │ │ ├── GB_AxB__min_min_int32.c │ │ ├── GB_AxB__min_min_int64.c │ │ ├── GB_AxB__min_min_int8.c │ │ ├── GB_AxB__min_min_uint16.c │ │ ├── GB_AxB__min_min_uint32.c │ │ ├── GB_AxB__min_min_uint64.c │ │ ├── GB_AxB__min_min_uint8.c │ │ ├── GB_AxB__min_minus_fp32.c │ │ ├── GB_AxB__min_minus_fp64.c │ │ ├── GB_AxB__min_minus_int16.c │ │ ├── GB_AxB__min_minus_int32.c │ │ ├── GB_AxB__min_minus_int64.c │ │ ├── GB_AxB__min_minus_int8.c │ │ ├── GB_AxB__min_minus_uint16.c │ │ ├── GB_AxB__min_minus_uint32.c │ │ ├── GB_AxB__min_minus_uint64.c │ │ ├── GB_AxB__min_minus_uint8.c │ │ ├── GB_AxB__min_plus_fp32.c │ │ ├── GB_AxB__min_plus_fp64.c │ │ ├── GB_AxB__min_plus_int16.c │ │ ├── GB_AxB__min_plus_int32.c │ │ ├── GB_AxB__min_plus_int64.c │ │ ├── GB_AxB__min_plus_int8.c │ │ ├── GB_AxB__min_plus_uint16.c │ │ ├── GB_AxB__min_plus_uint32.c │ │ ├── GB_AxB__min_plus_uint64.c │ │ ├── GB_AxB__min_plus_uint8.c │ │ ├── GB_AxB__min_rdiv_fp32.c │ │ ├── GB_AxB__min_rdiv_fp64.c │ │ ├── GB_AxB__min_rdiv_int16.c │ │ ├── GB_AxB__min_rdiv_int32.c │ │ ├── GB_AxB__min_rdiv_int64.c │ │ ├── GB_AxB__min_rdiv_int8.c │ │ ├── GB_AxB__min_rdiv_uint16.c │ │ ├── GB_AxB__min_rdiv_uint32.c │ │ ├── GB_AxB__min_rdiv_uint64.c │ │ ├── GB_AxB__min_rdiv_uint8.c │ │ ├── GB_AxB__min_rminus_fp32.c │ │ ├── GB_AxB__min_rminus_fp64.c │ │ ├── GB_AxB__min_rminus_int16.c │ │ ├── GB_AxB__min_rminus_int32.c │ │ ├── GB_AxB__min_rminus_int64.c │ │ ├── GB_AxB__min_rminus_int8.c │ │ ├── GB_AxB__min_rminus_uint16.c │ │ ├── GB_AxB__min_rminus_uint32.c │ │ ├── GB_AxB__min_rminus_uint64.c │ │ ├── GB_AxB__min_rminus_uint8.c │ │ ├── GB_AxB__min_second_fp32.c │ │ ├── GB_AxB__min_second_fp64.c │ │ ├── GB_AxB__min_second_int16.c │ │ ├── GB_AxB__min_second_int32.c │ │ ├── GB_AxB__min_second_int64.c │ │ ├── GB_AxB__min_second_int8.c │ │ ├── GB_AxB__min_second_uint16.c │ │ ├── GB_AxB__min_second_uint32.c │ │ ├── GB_AxB__min_second_uint64.c │ │ ├── GB_AxB__min_second_uint8.c │ │ ├── GB_AxB__min_secondj1_int32.c │ │ ├── GB_AxB__min_secondj1_int64.c │ │ ├── GB_AxB__min_secondj_int32.c │ │ ├── GB_AxB__min_secondj_int64.c │ │ ├── GB_AxB__min_times_fp32.c │ │ ├── GB_AxB__min_times_fp64.c │ │ ├── GB_AxB__min_times_int16.c │ │ ├── GB_AxB__min_times_int32.c │ │ ├── GB_AxB__min_times_int64.c │ │ ├── GB_AxB__min_times_int8.c │ │ ├── GB_AxB__min_times_uint16.c │ │ ├── GB_AxB__min_times_uint32.c │ │ ├── GB_AxB__min_times_uint64.c │ │ ├── GB_AxB__min_times_uint8.c │ │ ├── GB_AxB__plus_div_fc32.c │ │ ├── GB_AxB__plus_div_fc64.c │ │ ├── GB_AxB__plus_div_fp32.c │ │ ├── GB_AxB__plus_div_fp64.c │ │ ├── GB_AxB__plus_div_int16.c │ │ ├── GB_AxB__plus_div_int32.c │ │ ├── GB_AxB__plus_div_int64.c │ │ ├── GB_AxB__plus_div_int8.c │ │ ├── GB_AxB__plus_div_uint16.c │ │ ├── GB_AxB__plus_div_uint32.c │ │ ├── GB_AxB__plus_div_uint64.c │ │ ├── GB_AxB__plus_div_uint8.c │ │ ├── GB_AxB__plus_first_fc32.c │ │ ├── GB_AxB__plus_first_fc64.c │ │ ├── GB_AxB__plus_first_fp32.c │ │ ├── GB_AxB__plus_first_fp64.c │ │ ├── GB_AxB__plus_first_int16.c │ │ ├── GB_AxB__plus_first_int32.c │ │ ├── GB_AxB__plus_first_int64.c │ │ ├── GB_AxB__plus_first_int8.c │ │ ├── GB_AxB__plus_first_uint16.c │ │ ├── GB_AxB__plus_first_uint32.c │ │ ├── GB_AxB__plus_first_uint64.c │ │ ├── GB_AxB__plus_first_uint8.c │ │ ├── GB_AxB__plus_firsti1_int32.c │ │ ├── GB_AxB__plus_firsti1_int64.c │ │ ├── GB_AxB__plus_firsti_int32.c │ │ ├── GB_AxB__plus_firsti_int64.c │ │ ├── GB_AxB__plus_firstj1_int32.c │ │ ├── GB_AxB__plus_firstj1_int64.c │ │ ├── GB_AxB__plus_firstj_int32.c │ │ ├── GB_AxB__plus_firstj_int64.c │ │ ├── GB_AxB__plus_land_fp32.c │ │ ├── GB_AxB__plus_land_fp64.c │ │ ├── GB_AxB__plus_land_int16.c │ │ ├── GB_AxB__plus_land_int32.c │ │ ├── GB_AxB__plus_land_int64.c │ │ ├── GB_AxB__plus_land_int8.c │ │ ├── GB_AxB__plus_land_uint16.c │ │ ├── GB_AxB__plus_land_uint32.c │ │ ├── GB_AxB__plus_land_uint64.c │ │ ├── GB_AxB__plus_land_uint8.c │ │ ├── GB_AxB__plus_lor_fp32.c │ │ ├── GB_AxB__plus_lor_fp64.c │ │ ├── GB_AxB__plus_lor_int16.c │ │ ├── GB_AxB__plus_lor_int32.c │ │ ├── GB_AxB__plus_lor_int64.c │ │ ├── GB_AxB__plus_lor_int8.c │ │ ├── GB_AxB__plus_lor_uint16.c │ │ ├── GB_AxB__plus_lor_uint32.c │ │ ├── GB_AxB__plus_lor_uint64.c │ │ ├── GB_AxB__plus_lor_uint8.c │ │ ├── GB_AxB__plus_lxor_fp32.c │ │ ├── GB_AxB__plus_lxor_fp64.c │ │ ├── GB_AxB__plus_lxor_int16.c │ │ ├── GB_AxB__plus_lxor_int32.c │ │ ├── GB_AxB__plus_lxor_int64.c │ │ ├── GB_AxB__plus_lxor_int8.c │ │ ├── GB_AxB__plus_lxor_uint16.c │ │ ├── GB_AxB__plus_lxor_uint32.c │ │ ├── GB_AxB__plus_lxor_uint64.c │ │ ├── GB_AxB__plus_lxor_uint8.c │ │ ├── GB_AxB__plus_max_fp32.c │ │ ├── GB_AxB__plus_max_fp64.c │ │ ├── GB_AxB__plus_max_int16.c │ │ ├── GB_AxB__plus_max_int32.c │ │ ├── GB_AxB__plus_max_int64.c │ │ ├── GB_AxB__plus_max_int8.c │ │ ├── GB_AxB__plus_max_uint16.c │ │ ├── GB_AxB__plus_max_uint32.c │ │ ├── GB_AxB__plus_max_uint64.c │ │ ├── GB_AxB__plus_max_uint8.c │ │ ├── GB_AxB__plus_min_fp32.c │ │ ├── GB_AxB__plus_min_fp64.c │ │ ├── GB_AxB__plus_min_int16.c │ │ ├── GB_AxB__plus_min_int32.c │ │ ├── GB_AxB__plus_min_int64.c │ │ ├── GB_AxB__plus_min_int8.c │ │ ├── GB_AxB__plus_min_uint16.c │ │ ├── GB_AxB__plus_min_uint32.c │ │ ├── GB_AxB__plus_min_uint64.c │ │ ├── GB_AxB__plus_min_uint8.c │ │ ├── GB_AxB__plus_minus_fc32.c │ │ ├── GB_AxB__plus_minus_fc64.c │ │ ├── GB_AxB__plus_minus_fp32.c │ │ ├── GB_AxB__plus_minus_fp64.c │ │ ├── GB_AxB__plus_minus_int16.c │ │ ├── GB_AxB__plus_minus_int32.c │ │ ├── GB_AxB__plus_minus_int64.c │ │ ├── GB_AxB__plus_minus_int8.c │ │ ├── GB_AxB__plus_minus_uint16.c │ │ ├── GB_AxB__plus_minus_uint32.c │ │ ├── GB_AxB__plus_minus_uint64.c │ │ ├── GB_AxB__plus_minus_uint8.c │ │ ├── GB_AxB__plus_pair_fc32.c │ │ ├── GB_AxB__plus_pair_fc64.c │ │ ├── GB_AxB__plus_pair_fp32.c │ │ ├── GB_AxB__plus_pair_fp64.c │ │ ├── GB_AxB__plus_pair_int16.c │ │ ├── GB_AxB__plus_pair_int32.c │ │ ├── GB_AxB__plus_pair_int64.c │ │ ├── GB_AxB__plus_pair_int8.c │ │ ├── GB_AxB__plus_pair_uint16.c │ │ ├── GB_AxB__plus_pair_uint32.c │ │ ├── GB_AxB__plus_pair_uint64.c │ │ ├── GB_AxB__plus_pair_uint8.c │ │ ├── GB_AxB__plus_plus_fc32.c │ │ ├── GB_AxB__plus_plus_fc64.c │ │ ├── GB_AxB__plus_plus_fp32.c │ │ ├── GB_AxB__plus_plus_fp64.c │ │ ├── GB_AxB__plus_plus_int16.c │ │ ├── GB_AxB__plus_plus_int32.c │ │ ├── GB_AxB__plus_plus_int64.c │ │ ├── GB_AxB__plus_plus_int8.c │ │ ├── GB_AxB__plus_plus_uint16.c │ │ ├── GB_AxB__plus_plus_uint32.c │ │ ├── GB_AxB__plus_plus_uint64.c │ │ ├── GB_AxB__plus_plus_uint8.c │ │ ├── GB_AxB__plus_rdiv_fc32.c │ │ ├── GB_AxB__plus_rdiv_fc64.c │ │ ├── GB_AxB__plus_rdiv_fp32.c │ │ ├── GB_AxB__plus_rdiv_fp64.c │ │ ├── GB_AxB__plus_rdiv_int16.c │ │ ├── GB_AxB__plus_rdiv_int32.c │ │ ├── GB_AxB__plus_rdiv_int64.c │ │ ├── GB_AxB__plus_rdiv_int8.c │ │ ├── GB_AxB__plus_rdiv_uint16.c │ │ ├── GB_AxB__plus_rdiv_uint32.c │ │ ├── GB_AxB__plus_rdiv_uint64.c │ │ ├── GB_AxB__plus_rdiv_uint8.c │ │ ├── GB_AxB__plus_rminus_fc32.c │ │ ├── GB_AxB__plus_rminus_fc64.c │ │ ├── GB_AxB__plus_rminus_fp32.c │ │ ├── GB_AxB__plus_rminus_fp64.c │ │ ├── GB_AxB__plus_rminus_int16.c │ │ ├── GB_AxB__plus_rminus_int32.c │ │ ├── GB_AxB__plus_rminus_int64.c │ │ ├── GB_AxB__plus_rminus_int8.c │ │ ├── GB_AxB__plus_rminus_uint16.c │ │ ├── GB_AxB__plus_rminus_uint32.c │ │ ├── GB_AxB__plus_rminus_uint64.c │ │ ├── GB_AxB__plus_rminus_uint8.c │ │ ├── GB_AxB__plus_second_fc32.c │ │ ├── GB_AxB__plus_second_fc64.c │ │ ├── GB_AxB__plus_second_fp32.c │ │ ├── GB_AxB__plus_second_fp64.c │ │ ├── GB_AxB__plus_second_int16.c │ │ ├── GB_AxB__plus_second_int32.c │ │ ├── GB_AxB__plus_second_int64.c │ │ ├── GB_AxB__plus_second_int8.c │ │ ├── GB_AxB__plus_second_uint16.c │ │ ├── GB_AxB__plus_second_uint32.c │ │ ├── GB_AxB__plus_second_uint64.c │ │ ├── GB_AxB__plus_second_uint8.c │ │ ├── GB_AxB__plus_secondj1_int32.c │ │ ├── GB_AxB__plus_secondj1_int64.c │ │ ├── GB_AxB__plus_secondj_int32.c │ │ ├── GB_AxB__plus_secondj_int64.c │ │ ├── GB_AxB__plus_times_fc32.c │ │ ├── GB_AxB__plus_times_fc64.c │ │ ├── GB_AxB__plus_times_fp32.c │ │ ├── GB_AxB__plus_times_fp64.c │ │ ├── GB_AxB__plus_times_int16.c │ │ ├── GB_AxB__plus_times_int32.c │ │ ├── GB_AxB__plus_times_int64.c │ │ ├── GB_AxB__plus_times_int8.c │ │ ├── GB_AxB__plus_times_uint16.c │ │ ├── GB_AxB__plus_times_uint32.c │ │ ├── GB_AxB__plus_times_uint64.c │ │ ├── GB_AxB__plus_times_uint8.c │ │ ├── GB_AxB__times_div_fc32.c │ │ ├── GB_AxB__times_div_fc64.c │ │ ├── GB_AxB__times_div_fp32.c │ │ ├── GB_AxB__times_div_fp64.c │ │ ├── GB_AxB__times_div_int16.c │ │ ├── GB_AxB__times_div_int32.c │ │ ├── GB_AxB__times_div_int64.c │ │ ├── GB_AxB__times_div_int8.c │ │ ├── GB_AxB__times_div_uint16.c │ │ ├── GB_AxB__times_div_uint32.c │ │ ├── GB_AxB__times_div_uint64.c │ │ ├── GB_AxB__times_div_uint8.c │ │ ├── GB_AxB__times_first_fc32.c │ │ ├── GB_AxB__times_first_fc64.c │ │ ├── GB_AxB__times_first_fp32.c │ │ ├── GB_AxB__times_first_fp64.c │ │ ├── GB_AxB__times_first_int16.c │ │ ├── GB_AxB__times_first_int32.c │ │ ├── GB_AxB__times_first_int64.c │ │ ├── GB_AxB__times_first_int8.c │ │ ├── GB_AxB__times_first_uint16.c │ │ ├── GB_AxB__times_first_uint32.c │ │ ├── GB_AxB__times_first_uint64.c │ │ ├── GB_AxB__times_first_uint8.c │ │ ├── GB_AxB__times_firsti1_int32.c │ │ ├── GB_AxB__times_firsti1_int64.c │ │ ├── GB_AxB__times_firsti_int32.c │ │ ├── GB_AxB__times_firsti_int64.c │ │ ├── GB_AxB__times_firstj1_int32.c │ │ ├── GB_AxB__times_firstj1_int64.c │ │ ├── GB_AxB__times_firstj_int32.c │ │ ├── GB_AxB__times_firstj_int64.c │ │ ├── GB_AxB__times_max_fp32.c │ │ ├── GB_AxB__times_max_fp64.c │ │ ├── GB_AxB__times_max_int16.c │ │ ├── GB_AxB__times_max_int32.c │ │ ├── GB_AxB__times_max_int64.c │ │ ├── GB_AxB__times_max_int8.c │ │ ├── GB_AxB__times_max_uint16.c │ │ ├── GB_AxB__times_max_uint32.c │ │ ├── GB_AxB__times_max_uint64.c │ │ ├── GB_AxB__times_max_uint8.c │ │ ├── GB_AxB__times_min_fp32.c │ │ ├── GB_AxB__times_min_fp64.c │ │ ├── GB_AxB__times_min_int16.c │ │ ├── GB_AxB__times_min_int32.c │ │ ├── GB_AxB__times_min_int64.c │ │ ├── GB_AxB__times_min_int8.c │ │ ├── GB_AxB__times_min_uint16.c │ │ ├── GB_AxB__times_min_uint32.c │ │ ├── GB_AxB__times_min_uint64.c │ │ ├── GB_AxB__times_min_uint8.c │ │ ├── GB_AxB__times_minus_fc32.c │ │ ├── GB_AxB__times_minus_fc64.c │ │ ├── GB_AxB__times_minus_fp32.c │ │ ├── GB_AxB__times_minus_fp64.c │ │ ├── GB_AxB__times_minus_int16.c │ │ ├── GB_AxB__times_minus_int32.c │ │ ├── GB_AxB__times_minus_int64.c │ │ ├── GB_AxB__times_minus_int8.c │ │ ├── GB_AxB__times_minus_uint16.c │ │ ├── GB_AxB__times_minus_uint32.c │ │ ├── GB_AxB__times_minus_uint64.c │ │ ├── GB_AxB__times_minus_uint8.c │ │ ├── GB_AxB__times_plus_fc32.c │ │ ├── GB_AxB__times_plus_fc64.c │ │ ├── GB_AxB__times_plus_fp32.c │ │ ├── GB_AxB__times_plus_fp64.c │ │ ├── GB_AxB__times_plus_int16.c │ │ ├── GB_AxB__times_plus_int32.c │ │ ├── GB_AxB__times_plus_int64.c │ │ ├── GB_AxB__times_plus_int8.c │ │ ├── GB_AxB__times_plus_uint16.c │ │ ├── GB_AxB__times_plus_uint32.c │ │ ├── GB_AxB__times_plus_uint64.c │ │ ├── GB_AxB__times_plus_uint8.c │ │ ├── GB_AxB__times_rdiv_fc32.c │ │ ├── GB_AxB__times_rdiv_fc64.c │ │ ├── GB_AxB__times_rdiv_fp32.c │ │ ├── GB_AxB__times_rdiv_fp64.c │ │ ├── GB_AxB__times_rdiv_int16.c │ │ ├── GB_AxB__times_rdiv_int32.c │ │ ├── GB_AxB__times_rdiv_int64.c │ │ ├── GB_AxB__times_rdiv_int8.c │ │ ├── GB_AxB__times_rdiv_uint16.c │ │ ├── GB_AxB__times_rdiv_uint32.c │ │ ├── GB_AxB__times_rdiv_uint64.c │ │ ├── GB_AxB__times_rdiv_uint8.c │ │ ├── GB_AxB__times_rminus_fc32.c │ │ ├── GB_AxB__times_rminus_fc64.c │ │ ├── GB_AxB__times_rminus_fp32.c │ │ ├── GB_AxB__times_rminus_fp64.c │ │ ├── GB_AxB__times_rminus_int16.c │ │ ├── GB_AxB__times_rminus_int32.c │ │ ├── GB_AxB__times_rminus_int64.c │ │ ├── GB_AxB__times_rminus_int8.c │ │ ├── GB_AxB__times_rminus_uint16.c │ │ ├── GB_AxB__times_rminus_uint32.c │ │ ├── GB_AxB__times_rminus_uint64.c │ │ ├── GB_AxB__times_rminus_uint8.c │ │ ├── GB_AxB__times_second_fc32.c │ │ ├── GB_AxB__times_second_fc64.c │ │ ├── GB_AxB__times_second_fp32.c │ │ ├── GB_AxB__times_second_fp64.c │ │ ├── GB_AxB__times_second_int16.c │ │ ├── GB_AxB__times_second_int32.c │ │ ├── GB_AxB__times_second_int64.c │ │ ├── GB_AxB__times_second_int8.c │ │ ├── GB_AxB__times_second_uint16.c │ │ ├── GB_AxB__times_second_uint32.c │ │ ├── GB_AxB__times_second_uint64.c │ │ ├── GB_AxB__times_second_uint8.c │ │ ├── GB_AxB__times_secondj1_int32.c │ │ ├── GB_AxB__times_secondj1_int64.c │ │ ├── GB_AxB__times_secondj_int32.c │ │ ├── GB_AxB__times_secondj_int64.c │ │ ├── GB_AxB__times_times_fc32.c │ │ ├── GB_AxB__times_times_fc64.c │ │ ├── GB_AxB__times_times_fp32.c │ │ ├── GB_AxB__times_times_fp64.c │ │ ├── GB_AxB__times_times_int16.c │ │ ├── GB_AxB__times_times_int32.c │ │ ├── GB_AxB__times_times_int64.c │ │ ├── GB_AxB__times_times_int8.c │ │ ├── GB_AxB__times_times_uint16.c │ │ ├── GB_AxB__times_times_uint32.c │ │ ├── GB_AxB__times_times_uint64.c │ │ ├── GB_AxB__times_times_uint8.c │ │ ├── GB_binop__atan2_fp32.c │ │ ├── GB_binop__atan2_fp64.c │ │ ├── GB_binop__band_int16.c │ │ ├── GB_binop__band_int32.c │ │ ├── GB_binop__band_int64.c │ │ ├── GB_binop__band_int8.c │ │ ├── GB_binop__band_uint16.c │ │ ├── GB_binop__band_uint32.c │ │ ├── GB_binop__band_uint64.c │ │ ├── GB_binop__band_uint8.c │ │ ├── GB_binop__bclr_int16.c │ │ ├── GB_binop__bclr_int32.c │ │ ├── GB_binop__bclr_int64.c │ │ ├── GB_binop__bclr_int8.c │ │ ├── GB_binop__bclr_uint16.c │ │ ├── GB_binop__bclr_uint32.c │ │ ├── GB_binop__bclr_uint64.c │ │ ├── GB_binop__bclr_uint8.c │ │ ├── GB_binop__bget_int16.c │ │ ├── GB_binop__bget_int32.c │ │ ├── GB_binop__bget_int64.c │ │ ├── GB_binop__bget_int8.c │ │ ├── GB_binop__bget_uint16.c │ │ ├── GB_binop__bget_uint32.c │ │ ├── GB_binop__bget_uint64.c │ │ ├── GB_binop__bget_uint8.c │ │ ├── GB_binop__bor_int16.c │ │ ├── GB_binop__bor_int32.c │ │ ├── GB_binop__bor_int64.c │ │ ├── GB_binop__bor_int8.c │ │ ├── GB_binop__bor_uint16.c │ │ ├── GB_binop__bor_uint32.c │ │ ├── GB_binop__bor_uint64.c │ │ ├── GB_binop__bor_uint8.c │ │ ├── GB_binop__bset_int16.c │ │ ├── GB_binop__bset_int32.c │ │ ├── GB_binop__bset_int64.c │ │ ├── GB_binop__bset_int8.c │ │ ├── GB_binop__bset_uint16.c │ │ ├── GB_binop__bset_uint32.c │ │ ├── GB_binop__bset_uint64.c │ │ ├── GB_binop__bset_uint8.c │ │ ├── GB_binop__bshift_int16.c │ │ ├── GB_binop__bshift_int32.c │ │ ├── GB_binop__bshift_int64.c │ │ ├── GB_binop__bshift_int8.c │ │ ├── GB_binop__bshift_uint16.c │ │ ├── GB_binop__bshift_uint32.c │ │ ├── GB_binop__bshift_uint64.c │ │ ├── GB_binop__bshift_uint8.c │ │ ├── GB_binop__bxnor_int16.c │ │ ├── GB_binop__bxnor_int32.c │ │ ├── GB_binop__bxnor_int64.c │ │ ├── GB_binop__bxnor_int8.c │ │ ├── GB_binop__bxnor_uint16.c │ │ ├── GB_binop__bxnor_uint32.c │ │ ├── GB_binop__bxnor_uint64.c │ │ ├── GB_binop__bxnor_uint8.c │ │ ├── GB_binop__bxor_int16.c │ │ ├── GB_binop__bxor_int32.c │ │ ├── GB_binop__bxor_int64.c │ │ ├── GB_binop__bxor_int8.c │ │ ├── GB_binop__bxor_uint16.c │ │ ├── GB_binop__bxor_uint32.c │ │ ├── GB_binop__bxor_uint64.c │ │ ├── GB_binop__bxor_uint8.c │ │ ├── GB_binop__cmplx_fp32.c │ │ ├── GB_binop__cmplx_fp64.c │ │ ├── GB_binop__copysign_fp32.c │ │ ├── GB_binop__copysign_fp64.c │ │ ├── GB_binop__div_fc32.c │ │ ├── GB_binop__div_fc64.c │ │ ├── GB_binop__div_fp32.c │ │ ├── GB_binop__div_fp64.c │ │ ├── GB_binop__div_int16.c │ │ ├── GB_binop__div_int32.c │ │ ├── GB_binop__div_int64.c │ │ ├── GB_binop__div_int8.c │ │ ├── GB_binop__div_uint16.c │ │ ├── GB_binop__div_uint32.c │ │ ├── GB_binop__div_uint64.c │ │ ├── GB_binop__div_uint8.c │ │ ├── GB_binop__eq_bool.c │ │ ├── GB_binop__eq_fc32.c │ │ ├── GB_binop__eq_fc64.c │ │ ├── GB_binop__eq_fp32.c │ │ ├── GB_binop__eq_fp64.c │ │ ├── GB_binop__eq_int16.c │ │ ├── GB_binop__eq_int32.c │ │ ├── GB_binop__eq_int64.c │ │ ├── GB_binop__eq_int8.c │ │ ├── GB_binop__eq_uint16.c │ │ ├── GB_binop__eq_uint32.c │ │ ├── GB_binop__eq_uint64.c │ │ ├── GB_binop__eq_uint8.c │ │ ├── GB_binop__first_bool.c │ │ ├── GB_binop__first_fc32.c │ │ ├── GB_binop__first_fc64.c │ │ ├── GB_binop__first_fp32.c │ │ ├── GB_binop__first_fp64.c │ │ ├── GB_binop__first_int16.c │ │ ├── GB_binop__first_int32.c │ │ ├── GB_binop__first_int64.c │ │ ├── GB_binop__first_int8.c │ │ ├── GB_binop__first_uint16.c │ │ ├── GB_binop__first_uint32.c │ │ ├── GB_binop__first_uint64.c │ │ ├── GB_binop__first_uint8.c │ │ ├── GB_binop__fmod_fp32.c │ │ ├── GB_binop__fmod_fp64.c │ │ ├── GB_binop__ge_bool.c │ │ ├── GB_binop__ge_fp32.c │ │ ├── GB_binop__ge_fp64.c │ │ ├── GB_binop__ge_int16.c │ │ ├── GB_binop__ge_int32.c │ │ ├── GB_binop__ge_int64.c │ │ ├── GB_binop__ge_int8.c │ │ ├── GB_binop__ge_uint16.c │ │ ├── GB_binop__ge_uint32.c │ │ ├── GB_binop__ge_uint64.c │ │ ├── GB_binop__ge_uint8.c │ │ ├── GB_binop__gt_bool.c │ │ ├── GB_binop__gt_fp32.c │ │ ├── GB_binop__gt_fp64.c │ │ ├── GB_binop__gt_int16.c │ │ ├── GB_binop__gt_int32.c │ │ ├── GB_binop__gt_int64.c │ │ ├── GB_binop__gt_int8.c │ │ ├── GB_binop__gt_uint16.c │ │ ├── GB_binop__gt_uint32.c │ │ ├── GB_binop__gt_uint64.c │ │ ├── GB_binop__gt_uint8.c │ │ ├── GB_binop__hypot_fp32.c │ │ ├── GB_binop__hypot_fp64.c │ │ ├── GB_binop__include.h │ │ ├── GB_binop__iseq_fc32.c │ │ ├── GB_binop__iseq_fc64.c │ │ ├── GB_binop__iseq_fp32.c │ │ ├── GB_binop__iseq_fp64.c │ │ ├── GB_binop__iseq_int16.c │ │ ├── GB_binop__iseq_int32.c │ │ ├── GB_binop__iseq_int64.c │ │ ├── GB_binop__iseq_int8.c │ │ ├── GB_binop__iseq_uint16.c │ │ ├── GB_binop__iseq_uint32.c │ │ ├── GB_binop__iseq_uint64.c │ │ ├── GB_binop__iseq_uint8.c │ │ ├── GB_binop__isge_fp32.c │ │ ├── GB_binop__isge_fp64.c │ │ ├── GB_binop__isge_int16.c │ │ ├── GB_binop__isge_int32.c │ │ ├── GB_binop__isge_int64.c │ │ ├── GB_binop__isge_int8.c │ │ ├── GB_binop__isge_uint16.c │ │ ├── GB_binop__isge_uint32.c │ │ ├── GB_binop__isge_uint64.c │ │ ├── GB_binop__isge_uint8.c │ │ ├── GB_binop__isgt_fp32.c │ │ ├── GB_binop__isgt_fp64.c │ │ ├── GB_binop__isgt_int16.c │ │ ├── GB_binop__isgt_int32.c │ │ ├── GB_binop__isgt_int64.c │ │ ├── GB_binop__isgt_int8.c │ │ ├── GB_binop__isgt_uint16.c │ │ ├── GB_binop__isgt_uint32.c │ │ ├── GB_binop__isgt_uint64.c │ │ ├── GB_binop__isgt_uint8.c │ │ ├── GB_binop__isle_fp32.c │ │ ├── GB_binop__isle_fp64.c │ │ ├── GB_binop__isle_int16.c │ │ ├── GB_binop__isle_int32.c │ │ ├── GB_binop__isle_int64.c │ │ ├── GB_binop__isle_int8.c │ │ ├── GB_binop__isle_uint16.c │ │ ├── GB_binop__isle_uint32.c │ │ ├── GB_binop__isle_uint64.c │ │ ├── GB_binop__isle_uint8.c │ │ ├── GB_binop__islt_fp32.c │ │ ├── GB_binop__islt_fp64.c │ │ ├── GB_binop__islt_int16.c │ │ ├── GB_binop__islt_int32.c │ │ ├── GB_binop__islt_int64.c │ │ ├── GB_binop__islt_int8.c │ │ ├── GB_binop__islt_uint16.c │ │ ├── GB_binop__islt_uint32.c │ │ ├── GB_binop__islt_uint64.c │ │ ├── GB_binop__islt_uint8.c │ │ ├── GB_binop__isne_fc32.c │ │ ├── GB_binop__isne_fc64.c │ │ ├── GB_binop__isne_fp32.c │ │ ├── GB_binop__isne_fp64.c │ │ ├── GB_binop__isne_int16.c │ │ ├── GB_binop__isne_int32.c │ │ ├── GB_binop__isne_int64.c │ │ ├── GB_binop__isne_int8.c │ │ ├── GB_binop__isne_uint16.c │ │ ├── GB_binop__isne_uint32.c │ │ ├── GB_binop__isne_uint64.c │ │ ├── GB_binop__isne_uint8.c │ │ ├── GB_binop__land_bool.c │ │ ├── GB_binop__land_fp32.c │ │ ├── GB_binop__land_fp64.c │ │ ├── GB_binop__land_int16.c │ │ ├── GB_binop__land_int32.c │ │ ├── GB_binop__land_int64.c │ │ ├── GB_binop__land_int8.c │ │ ├── GB_binop__land_uint16.c │ │ ├── GB_binop__land_uint32.c │ │ ├── GB_binop__land_uint64.c │ │ ├── GB_binop__land_uint8.c │ │ ├── GB_binop__ldexp_fp32.c │ │ ├── GB_binop__ldexp_fp64.c │ │ ├── GB_binop__le_bool.c │ │ ├── GB_binop__le_fp32.c │ │ ├── GB_binop__le_fp64.c │ │ ├── GB_binop__le_int16.c │ │ ├── GB_binop__le_int32.c │ │ ├── GB_binop__le_int64.c │ │ ├── GB_binop__le_int8.c │ │ ├── GB_binop__le_uint16.c │ │ ├── GB_binop__le_uint32.c │ │ ├── GB_binop__le_uint64.c │ │ ├── GB_binop__le_uint8.c │ │ ├── GB_binop__lor_bool.c │ │ ├── GB_binop__lor_fp32.c │ │ ├── GB_binop__lor_fp64.c │ │ ├── GB_binop__lor_int16.c │ │ ├── GB_binop__lor_int32.c │ │ ├── GB_binop__lor_int64.c │ │ ├── GB_binop__lor_int8.c │ │ ├── GB_binop__lor_uint16.c │ │ ├── GB_binop__lor_uint32.c │ │ ├── GB_binop__lor_uint64.c │ │ ├── GB_binop__lor_uint8.c │ │ ├── GB_binop__lt_bool.c │ │ ├── GB_binop__lt_fp32.c │ │ ├── GB_binop__lt_fp64.c │ │ ├── GB_binop__lt_int16.c │ │ ├── GB_binop__lt_int32.c │ │ ├── GB_binop__lt_int64.c │ │ ├── GB_binop__lt_int8.c │ │ ├── GB_binop__lt_uint16.c │ │ ├── GB_binop__lt_uint32.c │ │ ├── GB_binop__lt_uint64.c │ │ ├── GB_binop__lt_uint8.c │ │ ├── GB_binop__lxor_bool.c │ │ ├── GB_binop__lxor_fp32.c │ │ ├── GB_binop__lxor_fp64.c │ │ ├── GB_binop__lxor_int16.c │ │ ├── GB_binop__lxor_int32.c │ │ ├── GB_binop__lxor_int64.c │ │ ├── GB_binop__lxor_int8.c │ │ ├── GB_binop__lxor_uint16.c │ │ ├── GB_binop__lxor_uint32.c │ │ ├── GB_binop__lxor_uint64.c │ │ ├── GB_binop__lxor_uint8.c │ │ ├── GB_binop__max_fp32.c │ │ ├── GB_binop__max_fp64.c │ │ ├── GB_binop__max_int16.c │ │ ├── GB_binop__max_int32.c │ │ ├── GB_binop__max_int64.c │ │ ├── GB_binop__max_int8.c │ │ ├── GB_binop__max_uint16.c │ │ ├── GB_binop__max_uint32.c │ │ ├── GB_binop__max_uint64.c │ │ ├── GB_binop__max_uint8.c │ │ ├── GB_binop__min_fp32.c │ │ ├── GB_binop__min_fp64.c │ │ ├── GB_binop__min_int16.c │ │ ├── GB_binop__min_int32.c │ │ ├── GB_binop__min_int64.c │ │ ├── GB_binop__min_int8.c │ │ ├── GB_binop__min_uint16.c │ │ ├── GB_binop__min_uint32.c │ │ ├── GB_binop__min_uint64.c │ │ ├── GB_binop__min_uint8.c │ │ ├── GB_binop__minus_fc32.c │ │ ├── GB_binop__minus_fc64.c │ │ ├── GB_binop__minus_fp32.c │ │ ├── GB_binop__minus_fp64.c │ │ ├── GB_binop__minus_int16.c │ │ ├── GB_binop__minus_int32.c │ │ ├── GB_binop__minus_int64.c │ │ ├── GB_binop__minus_int8.c │ │ ├── GB_binop__minus_uint16.c │ │ ├── GB_binop__minus_uint32.c │ │ ├── GB_binop__minus_uint64.c │ │ ├── GB_binop__minus_uint8.c │ │ ├── GB_binop__ne_fc32.c │ │ ├── GB_binop__ne_fc64.c │ │ ├── GB_binop__ne_fp32.c │ │ ├── GB_binop__ne_fp64.c │ │ ├── GB_binop__ne_int16.c │ │ ├── GB_binop__ne_int32.c │ │ ├── GB_binop__ne_int64.c │ │ ├── GB_binop__ne_int8.c │ │ ├── GB_binop__ne_uint16.c │ │ ├── GB_binop__ne_uint32.c │ │ ├── GB_binop__ne_uint64.c │ │ ├── GB_binop__ne_uint8.c │ │ ├── GB_binop__pair_bool.c │ │ ├── GB_binop__pair_fc32.c │ │ ├── GB_binop__pair_fc64.c │ │ ├── GB_binop__pair_fp32.c │ │ ├── GB_binop__pair_fp64.c │ │ ├── GB_binop__pair_int16.c │ │ ├── GB_binop__pair_int32.c │ │ ├── GB_binop__pair_int64.c │ │ ├── GB_binop__pair_int8.c │ │ ├── GB_binop__pair_uint16.c │ │ ├── GB_binop__pair_uint32.c │ │ ├── GB_binop__pair_uint64.c │ │ ├── GB_binop__pair_uint8.c │ │ ├── GB_binop__plus_fc32.c │ │ ├── GB_binop__plus_fc64.c │ │ ├── GB_binop__plus_fp32.c │ │ ├── GB_binop__plus_fp64.c │ │ ├── GB_binop__plus_int16.c │ │ ├── GB_binop__plus_int32.c │ │ ├── GB_binop__plus_int64.c │ │ ├── GB_binop__plus_int8.c │ │ ├── GB_binop__plus_uint16.c │ │ ├── GB_binop__plus_uint32.c │ │ ├── GB_binop__plus_uint64.c │ │ ├── GB_binop__plus_uint8.c │ │ ├── GB_binop__pow_fc32.c │ │ ├── GB_binop__pow_fc64.c │ │ ├── GB_binop__pow_fp32.c │ │ ├── GB_binop__pow_fp64.c │ │ ├── GB_binop__pow_int16.c │ │ ├── GB_binop__pow_int32.c │ │ ├── GB_binop__pow_int64.c │ │ ├── GB_binop__pow_int8.c │ │ ├── GB_binop__pow_uint16.c │ │ ├── GB_binop__pow_uint32.c │ │ ├── GB_binop__pow_uint64.c │ │ ├── GB_binop__pow_uint8.c │ │ ├── GB_binop__rdiv_fc32.c │ │ ├── GB_binop__rdiv_fc64.c │ │ ├── GB_binop__rdiv_fp32.c │ │ ├── GB_binop__rdiv_fp64.c │ │ ├── GB_binop__rdiv_int16.c │ │ ├── GB_binop__rdiv_int32.c │ │ ├── GB_binop__rdiv_int64.c │ │ ├── GB_binop__rdiv_int8.c │ │ ├── GB_binop__rdiv_uint16.c │ │ ├── GB_binop__rdiv_uint32.c │ │ ├── GB_binop__rdiv_uint64.c │ │ ├── GB_binop__rdiv_uint8.c │ │ ├── GB_binop__remainder_fp32.c │ │ ├── GB_binop__remainder_fp64.c │ │ ├── GB_binop__rminus_fc32.c │ │ ├── GB_binop__rminus_fc64.c │ │ ├── GB_binop__rminus_fp32.c │ │ ├── GB_binop__rminus_fp64.c │ │ ├── GB_binop__rminus_int16.c │ │ ├── GB_binop__rminus_int32.c │ │ ├── GB_binop__rminus_int64.c │ │ ├── GB_binop__rminus_int8.c │ │ ├── GB_binop__rminus_uint16.c │ │ ├── GB_binop__rminus_uint32.c │ │ ├── GB_binop__rminus_uint64.c │ │ ├── GB_binop__rminus_uint8.c │ │ ├── GB_binop__second_bool.c │ │ ├── GB_binop__second_fc32.c │ │ ├── GB_binop__second_fc64.c │ │ ├── GB_binop__second_fp32.c │ │ ├── GB_binop__second_fp64.c │ │ ├── GB_binop__second_int16.c │ │ ├── GB_binop__second_int32.c │ │ ├── GB_binop__second_int64.c │ │ ├── GB_binop__second_int8.c │ │ ├── GB_binop__second_uint16.c │ │ ├── GB_binop__second_uint32.c │ │ ├── GB_binop__second_uint64.c │ │ ├── GB_binop__second_uint8.c │ │ ├── GB_binop__times_fc32.c │ │ ├── GB_binop__times_fc64.c │ │ ├── GB_binop__times_fp32.c │ │ ├── GB_binop__times_fp64.c │ │ ├── GB_binop__times_int16.c │ │ ├── GB_binop__times_int32.c │ │ ├── GB_binop__times_int64.c │ │ ├── GB_binop__times_int8.c │ │ ├── GB_binop__times_uint16.c │ │ ├── GB_binop__times_uint32.c │ │ ├── GB_binop__times_uint64.c │ │ ├── GB_binop__times_uint8.c │ │ ├── GB_red__any_bool.c │ │ ├── GB_red__any_fc32.c │ │ ├── GB_red__any_fc64.c │ │ ├── GB_red__any_fp32.c │ │ ├── GB_red__any_fp64.c │ │ ├── GB_red__any_int16.c │ │ ├── GB_red__any_int32.c │ │ ├── GB_red__any_int64.c │ │ ├── GB_red__any_int8.c │ │ ├── GB_red__any_uint16.c │ │ ├── GB_red__any_uint32.c │ │ ├── GB_red__any_uint64.c │ │ ├── GB_red__any_uint8.c │ │ ├── GB_red__eq_bool.c │ │ ├── GB_red__first_bool.c │ │ ├── GB_red__first_fc32.c │ │ ├── GB_red__first_fc64.c │ │ ├── GB_red__first_fp32.c │ │ ├── GB_red__first_fp64.c │ │ ├── GB_red__first_int16.c │ │ ├── GB_red__first_int32.c │ │ ├── GB_red__first_int64.c │ │ ├── GB_red__first_int8.c │ │ ├── GB_red__first_uint16.c │ │ ├── GB_red__first_uint32.c │ │ ├── GB_red__first_uint64.c │ │ ├── GB_red__first_uint8.c │ │ ├── GB_red__include.h │ │ ├── GB_red__land_bool.c │ │ ├── GB_red__lor_bool.c │ │ ├── GB_red__lxor_bool.c │ │ ├── GB_red__max_fp32.c │ │ ├── GB_red__max_fp64.c │ │ ├── GB_red__max_int16.c │ │ ├── GB_red__max_int32.c │ │ ├── GB_red__max_int64.c │ │ ├── GB_red__max_int8.c │ │ ├── GB_red__max_uint16.c │ │ ├── GB_red__max_uint32.c │ │ ├── GB_red__max_uint64.c │ │ ├── GB_red__max_uint8.c │ │ ├── GB_red__min_fp32.c │ │ ├── GB_red__min_fp64.c │ │ ├── GB_red__min_int16.c │ │ ├── GB_red__min_int32.c │ │ ├── GB_red__min_int64.c │ │ ├── GB_red__min_int8.c │ │ ├── GB_red__min_uint16.c │ │ ├── GB_red__min_uint32.c │ │ ├── GB_red__min_uint64.c │ │ ├── GB_red__min_uint8.c │ │ ├── GB_red__plus_fc32.c │ │ ├── GB_red__plus_fc64.c │ │ ├── GB_red__plus_fp32.c │ │ ├── GB_red__plus_fp64.c │ │ ├── GB_red__plus_int16.c │ │ ├── GB_red__plus_int32.c │ │ ├── GB_red__plus_int64.c │ │ ├── GB_red__plus_int8.c │ │ ├── GB_red__plus_uint16.c │ │ ├── GB_red__plus_uint32.c │ │ ├── GB_red__plus_uint64.c │ │ ├── GB_red__plus_uint8.c │ │ ├── GB_red__second_bool.c │ │ ├── GB_red__second_fc32.c │ │ ├── GB_red__second_fc64.c │ │ ├── GB_red__second_fp32.c │ │ ├── GB_red__second_fp64.c │ │ ├── GB_red__second_int16.c │ │ ├── GB_red__second_int32.c │ │ ├── GB_red__second_int64.c │ │ ├── GB_red__second_int8.c │ │ ├── GB_red__second_uint16.c │ │ ├── GB_red__second_uint32.c │ │ ├── GB_red__second_uint64.c │ │ ├── GB_red__second_uint8.c │ │ ├── GB_red__times_fc32.c │ │ ├── GB_red__times_fc64.c │ │ ├── GB_red__times_fp32.c │ │ ├── GB_red__times_fp64.c │ │ ├── GB_red__times_int16.c │ │ ├── GB_red__times_int32.c │ │ ├── GB_red__times_int64.c │ │ ├── GB_red__times_int8.c │ │ ├── GB_red__times_uint16.c │ │ ├── GB_red__times_uint32.c │ │ ├── GB_red__times_uint64.c │ │ ├── GB_red__times_uint8.c │ │ ├── GB_type__bool.c │ │ ├── GB_type__fc32.c │ │ ├── GB_type__fc64.c │ │ ├── GB_type__fp32.c │ │ ├── GB_type__fp64.c │ │ ├── GB_type__include.h │ │ ├── GB_type__int16.c │ │ ├── GB_type__int32.c │ │ ├── GB_type__int64.c │ │ ├── GB_type__int8.c │ │ ├── GB_type__uint16.c │ │ ├── GB_type__uint32.c │ │ ├── GB_type__uint64.c │ │ ├── GB_type__uint8.c │ │ ├── GB_unop__abs_bool_bool.c │ │ ├── GB_unop__abs_fp32_fc32.c │ │ ├── GB_unop__abs_fp32_fp32.c │ │ ├── GB_unop__abs_fp64_fc64.c │ │ ├── GB_unop__abs_fp64_fp64.c │ │ ├── GB_unop__abs_int16_int16.c │ │ ├── GB_unop__abs_int32_int32.c │ │ ├── GB_unop__abs_int64_int64.c │ │ ├── GB_unop__abs_int8_int8.c │ │ ├── GB_unop__abs_uint16_uint16.c │ │ ├── GB_unop__abs_uint32_uint32.c │ │ ├── GB_unop__abs_uint64_uint64.c │ │ ├── GB_unop__abs_uint8_uint8.c │ │ ├── GB_unop__acos_fc32_fc32.c │ │ ├── GB_unop__acos_fc64_fc64.c │ │ ├── GB_unop__acos_fp32_fp32.c │ │ ├── GB_unop__acos_fp64_fp64.c │ │ ├── GB_unop__acosh_fc32_fc32.c │ │ ├── GB_unop__acosh_fc64_fc64.c │ │ ├── GB_unop__acosh_fp32_fp32.c │ │ ├── GB_unop__acosh_fp64_fp64.c │ │ ├── GB_unop__ainv_bool_bool.c │ │ ├── GB_unop__ainv_fc32_fc32.c │ │ ├── GB_unop__ainv_fc64_fc64.c │ │ ├── GB_unop__ainv_fp32_fp32.c │ │ ├── GB_unop__ainv_fp64_fp64.c │ │ ├── GB_unop__ainv_int16_int16.c │ │ ├── GB_unop__ainv_int32_int32.c │ │ ├── GB_unop__ainv_int64_int64.c │ │ ├── GB_unop__ainv_int8_int8.c │ │ ├── GB_unop__ainv_uint16_uint16.c │ │ ├── GB_unop__ainv_uint32_uint32.c │ │ ├── GB_unop__ainv_uint64_uint64.c │ │ ├── GB_unop__ainv_uint8_uint8.c │ │ ├── GB_unop__asin_fc32_fc32.c │ │ ├── GB_unop__asin_fc64_fc64.c │ │ ├── GB_unop__asin_fp32_fp32.c │ │ ├── GB_unop__asin_fp64_fp64.c │ │ ├── GB_unop__asinh_fc32_fc32.c │ │ ├── GB_unop__asinh_fc64_fc64.c │ │ ├── GB_unop__asinh_fp32_fp32.c │ │ ├── GB_unop__asinh_fp64_fp64.c │ │ ├── GB_unop__atan_fc32_fc32.c │ │ ├── GB_unop__atan_fc64_fc64.c │ │ ├── GB_unop__atan_fp32_fp32.c │ │ ├── GB_unop__atan_fp64_fp64.c │ │ ├── GB_unop__atanh_fc32_fc32.c │ │ ├── GB_unop__atanh_fc64_fc64.c │ │ ├── GB_unop__atanh_fp32_fp32.c │ │ ├── GB_unop__atanh_fp64_fp64.c │ │ ├── GB_unop__bnot_int16_int16.c │ │ ├── GB_unop__bnot_int32_int32.c │ │ ├── GB_unop__bnot_int64_int64.c │ │ ├── GB_unop__bnot_int8_int8.c │ │ ├── GB_unop__bnot_uint16_uint16.c │ │ ├── GB_unop__bnot_uint32_uint32.c │ │ ├── GB_unop__bnot_uint64_uint64.c │ │ ├── GB_unop__bnot_uint8_uint8.c │ │ ├── GB_unop__carg_fp32_fc32.c │ │ ├── GB_unop__carg_fp64_fc64.c │ │ ├── GB_unop__cbrt_fp32_fp32.c │ │ ├── GB_unop__cbrt_fp64_fp64.c │ │ ├── GB_unop__ceil_fc32_fc32.c │ │ ├── GB_unop__ceil_fc64_fc64.c │ │ ├── GB_unop__ceil_fp32_fp32.c │ │ ├── GB_unop__ceil_fp64_fp64.c │ │ ├── GB_unop__cimag_fp32_fc32.c │ │ ├── GB_unop__cimag_fp64_fc64.c │ │ ├── GB_unop__conj_fc32_fc32.c │ │ ├── GB_unop__conj_fc64_fc64.c │ │ ├── GB_unop__cos_fc32_fc32.c │ │ ├── GB_unop__cos_fc64_fc64.c │ │ ├── GB_unop__cos_fp32_fp32.c │ │ ├── GB_unop__cos_fp64_fp64.c │ │ ├── GB_unop__cosh_fc32_fc32.c │ │ ├── GB_unop__cosh_fc64_fc64.c │ │ ├── GB_unop__cosh_fp32_fp32.c │ │ ├── GB_unop__cosh_fp64_fp64.c │ │ ├── GB_unop__creal_fp32_fc32.c │ │ ├── GB_unop__creal_fp64_fc64.c │ │ ├── GB_unop__erf_fp32_fp32.c │ │ ├── GB_unop__erf_fp64_fp64.c │ │ ├── GB_unop__erfc_fp32_fp32.c │ │ ├── GB_unop__erfc_fp64_fp64.c │ │ ├── GB_unop__exp2_fc32_fc32.c │ │ ├── GB_unop__exp2_fc64_fc64.c │ │ ├── GB_unop__exp2_fp32_fp32.c │ │ ├── GB_unop__exp2_fp64_fp64.c │ │ ├── GB_unop__exp_fc32_fc32.c │ │ ├── GB_unop__exp_fc64_fc64.c │ │ ├── GB_unop__exp_fp32_fp32.c │ │ ├── GB_unop__exp_fp64_fp64.c │ │ ├── GB_unop__expm1_fc32_fc32.c │ │ ├── GB_unop__expm1_fc64_fc64.c │ │ ├── GB_unop__expm1_fp32_fp32.c │ │ ├── GB_unop__expm1_fp64_fp64.c │ │ ├── GB_unop__floor_fc32_fc32.c │ │ ├── GB_unop__floor_fc64_fc64.c │ │ ├── GB_unop__floor_fp32_fp32.c │ │ ├── GB_unop__floor_fp64_fp64.c │ │ ├── GB_unop__frexpe_fp32_fp32.c │ │ ├── GB_unop__frexpe_fp64_fp64.c │ │ ├── GB_unop__frexpx_fp32_fp32.c │ │ ├── GB_unop__frexpx_fp64_fp64.c │ │ ├── GB_unop__identity_bool_bool.c │ │ ├── GB_unop__identity_bool_fc32.c │ │ ├── GB_unop__identity_bool_fc64.c │ │ ├── GB_unop__identity_bool_fp32.c │ │ ├── GB_unop__identity_bool_fp64.c │ │ ├── GB_unop__identity_bool_int16.c │ │ ├── GB_unop__identity_bool_int32.c │ │ ├── GB_unop__identity_bool_int64.c │ │ ├── GB_unop__identity_bool_int8.c │ │ ├── GB_unop__identity_bool_uint16.c │ │ ├── GB_unop__identity_bool_uint32.c │ │ ├── GB_unop__identity_bool_uint64.c │ │ ├── GB_unop__identity_bool_uint8.c │ │ ├── GB_unop__identity_fc32_bool.c │ │ ├── GB_unop__identity_fc32_fc32.c │ │ ├── GB_unop__identity_fc32_fc64.c │ │ ├── GB_unop__identity_fc32_fp32.c │ │ ├── GB_unop__identity_fc32_fp64.c │ │ ├── GB_unop__identity_fc32_int16.c │ │ ├── GB_unop__identity_fc32_int32.c │ │ ├── GB_unop__identity_fc32_int64.c │ │ ├── GB_unop__identity_fc32_int8.c │ │ ├── GB_unop__identity_fc32_uint16.c │ │ ├── GB_unop__identity_fc32_uint32.c │ │ ├── GB_unop__identity_fc32_uint64.c │ │ ├── GB_unop__identity_fc32_uint8.c │ │ ├── GB_unop__identity_fc64_bool.c │ │ ├── GB_unop__identity_fc64_fc32.c │ │ ├── GB_unop__identity_fc64_fc64.c │ │ ├── GB_unop__identity_fc64_fp32.c │ │ ├── GB_unop__identity_fc64_fp64.c │ │ ├── GB_unop__identity_fc64_int16.c │ │ ├── GB_unop__identity_fc64_int32.c │ │ ├── GB_unop__identity_fc64_int64.c │ │ ├── GB_unop__identity_fc64_int8.c │ │ ├── GB_unop__identity_fc64_uint16.c │ │ ├── GB_unop__identity_fc64_uint32.c │ │ ├── GB_unop__identity_fc64_uint64.c │ │ ├── GB_unop__identity_fc64_uint8.c │ │ ├── GB_unop__identity_fp32_bool.c │ │ ├── GB_unop__identity_fp32_fc32.c │ │ ├── GB_unop__identity_fp32_fc64.c │ │ ├── GB_unop__identity_fp32_fp32.c │ │ ├── GB_unop__identity_fp32_fp64.c │ │ ├── GB_unop__identity_fp32_int16.c │ │ ├── GB_unop__identity_fp32_int32.c │ │ ├── GB_unop__identity_fp32_int64.c │ │ ├── GB_unop__identity_fp32_int8.c │ │ ├── GB_unop__identity_fp32_uint16.c │ │ ├── GB_unop__identity_fp32_uint32.c │ │ ├── GB_unop__identity_fp32_uint64.c │ │ ├── GB_unop__identity_fp32_uint8.c │ │ ├── GB_unop__identity_fp64_bool.c │ │ ├── GB_unop__identity_fp64_fc32.c │ │ ├── GB_unop__identity_fp64_fc64.c │ │ ├── GB_unop__identity_fp64_fp32.c │ │ ├── GB_unop__identity_fp64_fp64.c │ │ ├── GB_unop__identity_fp64_int16.c │ │ ├── GB_unop__identity_fp64_int32.c │ │ ├── GB_unop__identity_fp64_int64.c │ │ ├── GB_unop__identity_fp64_int8.c │ │ ├── GB_unop__identity_fp64_uint16.c │ │ ├── GB_unop__identity_fp64_uint32.c │ │ ├── GB_unop__identity_fp64_uint64.c │ │ ├── GB_unop__identity_fp64_uint8.c │ │ ├── GB_unop__identity_int16_bool.c │ │ ├── GB_unop__identity_int16_fc32.c │ │ ├── GB_unop__identity_int16_fc64.c │ │ ├── GB_unop__identity_int16_fp32.c │ │ ├── GB_unop__identity_int16_fp64.c │ │ ├── GB_unop__identity_int16_int16.c │ │ ├── GB_unop__identity_int16_int32.c │ │ ├── GB_unop__identity_int16_int64.c │ │ ├── GB_unop__identity_int16_int8.c │ │ ├── GB_unop__identity_int16_uint16.c │ │ ├── GB_unop__identity_int16_uint32.c │ │ ├── GB_unop__identity_int16_uint64.c │ │ ├── GB_unop__identity_int16_uint8.c │ │ ├── GB_unop__identity_int32_bool.c │ │ ├── GB_unop__identity_int32_fc32.c │ │ ├── GB_unop__identity_int32_fc64.c │ │ ├── GB_unop__identity_int32_fp32.c │ │ ├── GB_unop__identity_int32_fp64.c │ │ ├── GB_unop__identity_int32_int16.c │ │ ├── GB_unop__identity_int32_int32.c │ │ ├── GB_unop__identity_int32_int64.c │ │ ├── GB_unop__identity_int32_int8.c │ │ ├── GB_unop__identity_int32_uint16.c │ │ ├── GB_unop__identity_int32_uint32.c │ │ ├── GB_unop__identity_int32_uint64.c │ │ ├── GB_unop__identity_int32_uint8.c │ │ ├── GB_unop__identity_int64_bool.c │ │ ├── GB_unop__identity_int64_fc32.c │ │ ├── GB_unop__identity_int64_fc64.c │ │ ├── GB_unop__identity_int64_fp32.c │ │ ├── GB_unop__identity_int64_fp64.c │ │ ├── GB_unop__identity_int64_int16.c │ │ ├── GB_unop__identity_int64_int32.c │ │ ├── GB_unop__identity_int64_int64.c │ │ ├── GB_unop__identity_int64_int8.c │ │ ├── GB_unop__identity_int64_uint16.c │ │ ├── GB_unop__identity_int64_uint32.c │ │ ├── GB_unop__identity_int64_uint64.c │ │ ├── GB_unop__identity_int64_uint8.c │ │ ├── GB_unop__identity_int8_bool.c │ │ ├── GB_unop__identity_int8_fc32.c │ │ ├── GB_unop__identity_int8_fc64.c │ │ ├── GB_unop__identity_int8_fp32.c │ │ ├── GB_unop__identity_int8_fp64.c │ │ ├── GB_unop__identity_int8_int16.c │ │ ├── GB_unop__identity_int8_int32.c │ │ ├── GB_unop__identity_int8_int64.c │ │ ├── GB_unop__identity_int8_int8.c │ │ ├── GB_unop__identity_int8_uint16.c │ │ ├── GB_unop__identity_int8_uint32.c │ │ ├── GB_unop__identity_int8_uint64.c │ │ ├── GB_unop__identity_int8_uint8.c │ │ ├── GB_unop__identity_uint16_bool.c │ │ ├── GB_unop__identity_uint16_fc32.c │ │ ├── GB_unop__identity_uint16_fc64.c │ │ ├── GB_unop__identity_uint16_fp32.c │ │ ├── GB_unop__identity_uint16_fp64.c │ │ ├── GB_unop__identity_uint16_int16.c │ │ ├── GB_unop__identity_uint16_int32.c │ │ ├── GB_unop__identity_uint16_int64.c │ │ ├── GB_unop__identity_uint16_int8.c │ │ ├── GB_unop__identity_uint16_uint16.c │ │ ├── GB_unop__identity_uint16_uint32.c │ │ ├── GB_unop__identity_uint16_uint64.c │ │ ├── GB_unop__identity_uint16_uint8.c │ │ ├── GB_unop__identity_uint32_bool.c │ │ ├── GB_unop__identity_uint32_fc32.c │ │ ├── GB_unop__identity_uint32_fc64.c │ │ ├── GB_unop__identity_uint32_fp32.c │ │ ├── GB_unop__identity_uint32_fp64.c │ │ ├── GB_unop__identity_uint32_int16.c │ │ ├── GB_unop__identity_uint32_int32.c │ │ ├── GB_unop__identity_uint32_int64.c │ │ ├── GB_unop__identity_uint32_int8.c │ │ ├── GB_unop__identity_uint32_uint16.c │ │ ├── GB_unop__identity_uint32_uint32.c │ │ ├── GB_unop__identity_uint32_uint64.c │ │ ├── GB_unop__identity_uint32_uint8.c │ │ ├── GB_unop__identity_uint64_bool.c │ │ ├── GB_unop__identity_uint64_fc32.c │ │ ├── GB_unop__identity_uint64_fc64.c │ │ ├── GB_unop__identity_uint64_fp32.c │ │ ├── GB_unop__identity_uint64_fp64.c │ │ ├── GB_unop__identity_uint64_int16.c │ │ ├── GB_unop__identity_uint64_int32.c │ │ ├── GB_unop__identity_uint64_int64.c │ │ ├── GB_unop__identity_uint64_int8.c │ │ ├── GB_unop__identity_uint64_uint16.c │ │ ├── GB_unop__identity_uint64_uint32.c │ │ ├── GB_unop__identity_uint64_uint64.c │ │ ├── GB_unop__identity_uint64_uint8.c │ │ ├── GB_unop__identity_uint8_bool.c │ │ ├── GB_unop__identity_uint8_fc32.c │ │ ├── GB_unop__identity_uint8_fc64.c │ │ ├── GB_unop__identity_uint8_fp32.c │ │ ├── GB_unop__identity_uint8_fp64.c │ │ ├── GB_unop__identity_uint8_int16.c │ │ ├── GB_unop__identity_uint8_int32.c │ │ ├── GB_unop__identity_uint8_int64.c │ │ ├── GB_unop__identity_uint8_int8.c │ │ ├── GB_unop__identity_uint8_uint16.c │ │ ├── GB_unop__identity_uint8_uint32.c │ │ ├── GB_unop__identity_uint8_uint64.c │ │ ├── GB_unop__identity_uint8_uint8.c │ │ ├── GB_unop__include.h │ │ ├── GB_unop__isfinite_bool_fc32.c │ │ ├── GB_unop__isfinite_bool_fc64.c │ │ ├── GB_unop__isfinite_bool_fp32.c │ │ ├── GB_unop__isfinite_bool_fp64.c │ │ ├── GB_unop__isinf_bool_fc32.c │ │ ├── GB_unop__isinf_bool_fc64.c │ │ ├── GB_unop__isinf_bool_fp32.c │ │ ├── GB_unop__isinf_bool_fp64.c │ │ ├── GB_unop__isnan_bool_fc32.c │ │ ├── GB_unop__isnan_bool_fc64.c │ │ ├── GB_unop__isnan_bool_fp32.c │ │ ├── GB_unop__isnan_bool_fp64.c │ │ ├── GB_unop__lgamma_fp32_fp32.c │ │ ├── GB_unop__lgamma_fp64_fp64.c │ │ ├── GB_unop__lnot_bool_bool.c │ │ ├── GB_unop__lnot_fp32_fp32.c │ │ ├── GB_unop__lnot_fp64_fp64.c │ │ ├── GB_unop__lnot_int16_int16.c │ │ ├── GB_unop__lnot_int32_int32.c │ │ ├── GB_unop__lnot_int64_int64.c │ │ ├── GB_unop__lnot_int8_int8.c │ │ ├── GB_unop__lnot_uint16_uint16.c │ │ ├── GB_unop__lnot_uint32_uint32.c │ │ ├── GB_unop__lnot_uint64_uint64.c │ │ ├── GB_unop__lnot_uint8_uint8.c │ │ ├── GB_unop__log10_fc32_fc32.c │ │ ├── GB_unop__log10_fc64_fc64.c │ │ ├── GB_unop__log10_fp32_fp32.c │ │ ├── GB_unop__log10_fp64_fp64.c │ │ ├── GB_unop__log1p_fc32_fc32.c │ │ ├── GB_unop__log1p_fc64_fc64.c │ │ ├── GB_unop__log1p_fp32_fp32.c │ │ ├── GB_unop__log1p_fp64_fp64.c │ │ ├── GB_unop__log2_fc32_fc32.c │ │ ├── GB_unop__log2_fc64_fc64.c │ │ ├── GB_unop__log2_fp32_fp32.c │ │ ├── GB_unop__log2_fp64_fp64.c │ │ ├── GB_unop__log_fc32_fc32.c │ │ ├── GB_unop__log_fc64_fc64.c │ │ ├── GB_unop__log_fp32_fp32.c │ │ ├── GB_unop__log_fp64_fp64.c │ │ ├── GB_unop__minv_bool_bool.c │ │ ├── GB_unop__minv_fc32_fc32.c │ │ ├── GB_unop__minv_fc64_fc64.c │ │ ├── GB_unop__minv_fp32_fp32.c │ │ ├── GB_unop__minv_fp64_fp64.c │ │ ├── GB_unop__minv_int16_int16.c │ │ ├── GB_unop__minv_int32_int32.c │ │ ├── GB_unop__minv_int64_int64.c │ │ ├── GB_unop__minv_int8_int8.c │ │ ├── GB_unop__minv_uint16_uint16.c │ │ ├── GB_unop__minv_uint32_uint32.c │ │ ├── GB_unop__minv_uint64_uint64.c │ │ ├── GB_unop__minv_uint8_uint8.c │ │ ├── GB_unop__round_fc32_fc32.c │ │ ├── GB_unop__round_fc64_fc64.c │ │ ├── GB_unop__round_fp32_fp32.c │ │ ├── GB_unop__round_fp64_fp64.c │ │ ├── GB_unop__signum_fc32_fc32.c │ │ ├── GB_unop__signum_fc64_fc64.c │ │ ├── GB_unop__signum_fp32_fp32.c │ │ ├── GB_unop__signum_fp64_fp64.c │ │ ├── GB_unop__sin_fc32_fc32.c │ │ ├── GB_unop__sin_fc64_fc64.c │ │ ├── GB_unop__sin_fp32_fp32.c │ │ ├── GB_unop__sin_fp64_fp64.c │ │ ├── GB_unop__sinh_fc32_fc32.c │ │ ├── GB_unop__sinh_fc64_fc64.c │ │ ├── GB_unop__sinh_fp32_fp32.c │ │ ├── GB_unop__sinh_fp64_fp64.c │ │ ├── GB_unop__sqrt_fc32_fc32.c │ │ ├── GB_unop__sqrt_fc64_fc64.c │ │ ├── GB_unop__sqrt_fp32_fp32.c │ │ ├── GB_unop__sqrt_fp64_fp64.c │ │ ├── GB_unop__tan_fc32_fc32.c │ │ ├── GB_unop__tan_fc64_fc64.c │ │ ├── GB_unop__tan_fp32_fp32.c │ │ ├── GB_unop__tan_fp64_fp64.c │ │ ├── GB_unop__tanh_fc32_fc32.c │ │ ├── GB_unop__tanh_fc64_fc64.c │ │ ├── GB_unop__tanh_fp32_fp32.c │ │ ├── GB_unop__tanh_fp64_fp64.c │ │ ├── GB_unop__tgamma_fp32_fp32.c │ │ ├── GB_unop__tgamma_fp64_fp64.c │ │ ├── GB_unop__trunc_fc32_fc32.c │ │ ├── GB_unop__trunc_fc64_fc64.c │ │ ├── GB_unop__trunc_fp32_fp32.c │ │ └── GB_unop__trunc_fp64_fp64.c │ ├── Generator │ │ ├── GB_AxB.c │ │ ├── GB_AxB.h │ │ ├── GB_binop.c │ │ ├── GB_binop.h │ │ ├── GB_red.c │ │ ├── GB_red.h │ │ ├── GB_sel.c │ │ ├── GB_sel.h │ │ ├── GB_type.c │ │ ├── GB_type.h │ │ ├── GB_unop.c │ │ └── GB_unop.h │ ├── GrB_BinaryOp_free.c │ ├── GrB_BinaryOp_new.c │ ├── GrB_BinaryOp_wait.c │ ├── GrB_Col_assign.c │ ├── GrB_Col_extract.c │ ├── GrB_Descriptor_free.c │ ├── GrB_Descriptor_new.c │ ├── GrB_Descriptor_set.c │ ├── GrB_Descriptor_wait.c │ ├── GrB_IndexUnaryOp_free.c │ ├── GrB_IndexUnaryOp_new.c │ ├── GrB_IndexUnaryOp_wait.c │ ├── GrB_Matrix_apply.c │ ├── GrB_Matrix_assign.c │ ├── GrB_Matrix_assign_scalar.c │ ├── GrB_Matrix_build.c │ ├── GrB_Matrix_clear.c │ ├── GrB_Matrix_deserialize.c │ ├── GrB_Matrix_diag.c │ ├── GrB_Matrix_dup.c │ ├── GrB_Matrix_eWiseAdd.c │ ├── GrB_Matrix_eWiseMult.c │ ├── GrB_Matrix_export.c │ ├── GrB_Matrix_exportHint.c │ ├── GrB_Matrix_exportSize.c │ ├── GrB_Matrix_extract.c │ ├── GrB_Matrix_extractElement.c │ ├── GrB_Matrix_extractTuples.c │ ├── GrB_Matrix_free.c │ ├── GrB_Matrix_import.c │ ├── GrB_Matrix_ncols.c │ ├── GrB_Matrix_new.c │ ├── GrB_Matrix_nrows.c │ ├── GrB_Matrix_nvals.c │ ├── GrB_Matrix_reduce.c │ ├── GrB_Matrix_removeElement.c │ ├── GrB_Matrix_resize.c │ ├── GrB_Matrix_select.c │ ├── GrB_Matrix_serialize.c │ ├── GrB_Matrix_serializeSize.c │ ├── GrB_Matrix_setElement.c │ ├── GrB_Matrix_wait.c │ ├── GrB_Monoid_free.c │ ├── GrB_Monoid_new.c │ ├── GrB_Monoid_wait.c │ ├── GrB_Row_assign.c │ ├── GrB_Scalar_clear.c │ ├── GrB_Scalar_dup.c │ ├── GrB_Scalar_extractElement.c │ ├── GrB_Scalar_free.c │ ├── GrB_Scalar_new.c │ ├── GrB_Scalar_nvals.c │ ├── GrB_Scalar_setElement.c │ ├── GrB_Scalar_wait.c │ ├── GrB_Semiring_free.c │ ├── GrB_Semiring_new.c │ ├── GrB_Semiring_wait.c │ ├── GrB_Type_free.c │ ├── GrB_Type_new.c │ ├── GrB_Type_wait.c │ ├── GrB_UnaryOp_free.c │ ├── GrB_UnaryOp_new.c │ ├── GrB_UnaryOp_wait.c │ ├── GrB_Vector_apply.c │ ├── GrB_Vector_assign.c │ ├── GrB_Vector_assign_scalar.c │ ├── GrB_Vector_build.c │ ├── GrB_Vector_clear.c │ ├── GrB_Vector_dup.c │ ├── GrB_Vector_eWiseAdd.c │ ├── GrB_Vector_eWiseMult.c │ ├── GrB_Vector_extract.c │ ├── GrB_Vector_extractElement.c │ ├── GrB_Vector_extractTuples.c │ ├── GrB_Vector_free.c │ ├── GrB_Vector_new.c │ ├── GrB_Vector_nvals.c │ ├── GrB_Vector_reduce.c │ ├── GrB_Vector_removeElement.c │ ├── GrB_Vector_resize.c │ ├── GrB_Vector_select.c │ ├── GrB_Vector_setElement.c │ ├── GrB_Vector_size.c │ ├── GrB_Vector_wait.c │ ├── GrB_error.c │ ├── GrB_finalize.c │ ├── GrB_getVersion.c │ ├── GrB_init.c │ ├── GrB_kronecker.c │ ├── GrB_mxm.c │ ├── GrB_mxv.c │ ├── GrB_transpose.c │ ├── GrB_vxm.c │ ├── GxB_BinaryOp_fprint.c │ ├── GxB_BinaryOp_new.c │ ├── GxB_BinaryOp_xtype.c │ ├── GxB_BinaryOp_xtype_name.c │ ├── GxB_BinaryOp_ytype.c │ ├── GxB_BinaryOp_ytype_name.c │ ├── GxB_BinaryOp_ztype.c │ ├── GxB_BinaryOp_ztype_name.c │ ├── GxB_Col_subassign.c │ ├── GxB_Desc_get.c │ ├── GxB_Desc_set.c │ ├── GxB_Descriptor_fprint.c │ ├── GxB_Descriptor_get.c │ ├── GxB_Global_Option_get.c │ ├── GxB_Global_Option_set.c │ ├── GxB_IndexUnaryOp_fprint.c │ ├── GxB_IndexUnaryOp_new.c │ ├── GxB_IndexUnaryOp_xtype_name.c │ ├── GxB_IndexUnaryOp_ytype_name.c │ ├── GxB_IndexUnaryOp_ztype_name.c │ ├── GxB_Iterator_free.c │ ├── GxB_Iterator_get.c │ ├── GxB_Iterator_new.c │ ├── GxB_Matrix_Iterator.c │ ├── GxB_Matrix_Option_get.c │ ├── GxB_Matrix_Option_set.c │ ├── GxB_Matrix_build_Scalar.c │ ├── GxB_Matrix_concat.c │ ├── GxB_Matrix_deserialize.c │ ├── GxB_Matrix_diag.c │ ├── GxB_Matrix_eWiseUnion.c │ ├── GxB_Matrix_export_BitmapC.c │ ├── GxB_Matrix_export_BitmapR.c │ ├── GxB_Matrix_export_CSC.c │ ├── GxB_Matrix_export_CSR.c │ ├── GxB_Matrix_export_FullC.c │ ├── GxB_Matrix_export_FullR.c │ ├── GxB_Matrix_export_HyperCSC.c │ ├── GxB_Matrix_export_HyperCSR.c │ ├── GxB_Matrix_fprint.c │ ├── GxB_Matrix_import_BitmapC.c │ ├── GxB_Matrix_import_BitmapR.c │ ├── GxB_Matrix_import_CSC.c │ ├── GxB_Matrix_import_CSR.c │ ├── GxB_Matrix_import_FullC.c │ ├── GxB_Matrix_import_FullR.c │ ├── GxB_Matrix_import_HyperCSC.c │ ├── GxB_Matrix_import_HyperCSR.c │ ├── GxB_Matrix_iso.c │ ├── GxB_Matrix_memoryUsage.c │ ├── GxB_Matrix_pack_BitmapC.c │ ├── GxB_Matrix_pack_BitmapR.c │ ├── GxB_Matrix_pack_CSC.c │ ├── GxB_Matrix_pack_CSR.c │ ├── GxB_Matrix_pack_FullC.c │ ├── GxB_Matrix_pack_FullR.c │ ├── GxB_Matrix_pack_HyperCSC.c │ ├── GxB_Matrix_pack_HyperCSR.c │ ├── GxB_Matrix_reshape.c │ ├── GxB_Matrix_reshapeDup.c │ ├── GxB_Matrix_select.c │ ├── GxB_Matrix_serialize.c │ ├── GxB_Matrix_sort.c │ ├── GxB_Matrix_split.c │ ├── GxB_Matrix_subassign.c │ ├── GxB_Matrix_subassign_scalar.c │ ├── GxB_Matrix_type.c │ ├── GxB_Matrix_type_name.c │ ├── GxB_Matrix_unpack_BitmapC.c │ ├── GxB_Matrix_unpack_BitmapR.c │ ├── GxB_Matrix_unpack_CSC.c │ ├── GxB_Matrix_unpack_CSR.c │ ├── GxB_Matrix_unpack_FullC.c │ ├── GxB_Matrix_unpack_FullR.c │ ├── GxB_Matrix_unpack_HyperCSC.c │ ├── GxB_Matrix_unpack_HyperCSR.c │ ├── GxB_Monoid_fprint.c │ ├── GxB_Monoid_identity.c │ ├── GxB_Monoid_operator.c │ ├── GxB_Monoid_terminal.c │ ├── GxB_Monoid_terminal_new.c │ ├── GxB_Row_subassign.c │ ├── GxB_Scalar_fprint.c │ ├── GxB_Scalar_memoryUsage.c │ ├── GxB_Scalar_type.c │ ├── GxB_Scalar_type_name.c │ ├── GxB_SelectOp_fprint.c │ ├── GxB_SelectOp_free.c │ ├── GxB_SelectOp_new.c │ ├── GxB_SelectOp_ttype.c │ ├── GxB_SelectOp_wait.c │ ├── GxB_SelectOp_xtype.c │ ├── GxB_Semiring_add.c │ ├── GxB_Semiring_fprint.c │ ├── GxB_Semiring_multiply.c │ ├── GxB_Type_fprint.c │ ├── GxB_Type_from_name.c │ ├── GxB_Type_name.c │ ├── GxB_Type_new.c │ ├── GxB_Type_size.c │ ├── GxB_UnaryOp_fprint.c │ ├── GxB_UnaryOp_new.c │ ├── GxB_UnaryOp_xtype.c │ ├── GxB_UnaryOp_xtype_name.c │ ├── GxB_UnaryOp_ztype.c │ ├── GxB_UnaryOp_ztype_name.c │ ├── GxB_Vector_Iterator.c │ ├── GxB_Vector_Option_get.c │ ├── GxB_Vector_Option_set.c │ ├── GxB_Vector_build_Scalar.c │ ├── GxB_Vector_deserialize.c │ ├── GxB_Vector_diag.c │ ├── GxB_Vector_eWiseUnion.c │ ├── GxB_Vector_export_Bitmap.c │ ├── GxB_Vector_export_CSC.c │ ├── GxB_Vector_export_Full.c │ ├── GxB_Vector_fprint.c │ ├── GxB_Vector_import_Bitmap.c │ ├── GxB_Vector_import_CSC.c │ ├── GxB_Vector_import_Full.c │ ├── GxB_Vector_iso.c │ ├── GxB_Vector_memoryUsage.c │ ├── GxB_Vector_pack_Bitmap.c │ ├── GxB_Vector_pack_CSC.c │ ├── GxB_Vector_pack_Full.c │ ├── GxB_Vector_select.c │ ├── GxB_Vector_serialize.c │ ├── GxB_Vector_sort.c │ ├── GxB_Vector_subassign.c │ ├── GxB_Vector_subassign_scalar.c │ ├── GxB_Vector_type.c │ ├── GxB_Vector_type_name.c │ ├── GxB_Vector_unpack_Bitmap.c │ ├── GxB_Vector_unpack_CSC.c │ ├── GxB_Vector_unpack_Full.c │ ├── GxB_colIterator.c │ ├── GxB_deserialize_type_name.c │ ├── GxB_init.c │ ├── GxB_rowIterator.c │ ├── README.txt │ ├── Template │ │ ├── GB_2type_factory.c │ │ ├── GB_AxB_bitwise_factory.c │ │ ├── GB_AxB_colscale_template.c │ │ ├── GB_AxB_compare_factory.c │ │ ├── GB_AxB_dot2_meta.c │ │ ├── GB_AxB_dot2_template.c │ │ ├── GB_AxB_dot3_meta.c │ │ ├── GB_AxB_dot3_phase1_template.c │ │ ├── GB_AxB_dot3_template.c │ │ ├── GB_AxB_dot4_cij.c │ │ ├── GB_AxB_dot4_meta.c │ │ ├── GB_AxB_dot4_template.c │ │ ├── GB_AxB_dot_cij.c │ │ ├── GB_AxB_dot_cij.h │ │ ├── GB_AxB_dot_generic.c │ │ ├── GB_AxB_factory.c │ │ ├── GB_AxB_positional_factory.c │ │ ├── GB_AxB_rowscale_template.c │ │ ├── GB_AxB_saxpy3_coarseGus_M_phase1.c │ │ ├── GB_AxB_saxpy3_coarseGus_M_phase5.c │ │ ├── GB_AxB_saxpy3_coarseGus_noM_phase1.c │ │ ├── GB_AxB_saxpy3_coarseGus_noM_phase5.c │ │ ├── GB_AxB_saxpy3_coarseGus_notM_phase1.c │ │ ├── GB_AxB_saxpy3_coarseGus_notM_phase5.c │ │ ├── GB_AxB_saxpy3_coarseHash_M_phase1.c │ │ ├── GB_AxB_saxpy3_coarseHash_M_phase5.c │ │ ├── GB_AxB_saxpy3_coarseHash_notM_phase1.c │ │ ├── GB_AxB_saxpy3_coarseHash_notM_phase5.c │ │ ├── GB_AxB_saxpy3_coarseHash_phase1.c │ │ ├── GB_AxB_saxpy3_coarseHash_phase5.c │ │ ├── GB_AxB_saxpy3_fineGus_M_phase2.c │ │ ├── GB_AxB_saxpy3_fineGus_notM_phase2.c │ │ ├── GB_AxB_saxpy3_fineGus_phase2.c │ │ ├── GB_AxB_saxpy3_fineHash_M_phase2.c │ │ ├── GB_AxB_saxpy3_fineHash_notM_phase2.c │ │ ├── GB_AxB_saxpy3_fineHash_phase2.c │ │ ├── GB_AxB_saxpy3_symbolic_template.c │ │ ├── GB_AxB_saxpy3_template.c │ │ ├── GB_AxB_saxpy3_template.h │ │ ├── GB_AxB_saxpy4_template.c │ │ ├── GB_AxB_saxpy5_bitmap.c │ │ ├── GB_AxB_saxpy5_iso_or_pattern.c │ │ ├── GB_AxB_saxpy5_meta.c │ │ ├── GB_AxB_saxpy5_unrolled.c │ │ ├── GB_AxB_saxpy_generic_method.c │ │ ├── GB_AxB_saxpy_generic_template.c │ │ ├── GB_AxB_type_factory.c │ │ ├── GB_Matrix_extractElement.c │ │ ├── GB_Operator.h │ │ ├── GB_Pending_n_template.c │ │ ├── GB_Scalar_extractElement.c │ │ ├── GB_Vector_extractElement.c │ │ ├── GB_add_template.c │ │ ├── GB_binop_factory.c │ │ ├── GB_bitmap_AxB_saxpy_A_bitmap_B_bitmap_template.c │ │ ├── GB_bitmap_AxB_saxpy_A_sparse_B_bitmap_template.c │ │ ├── GB_bitmap_AxB_saxpy_template.c │ │ ├── GB_bitmap_add_template.c │ │ ├── GB_bitmap_assign_A_template.c │ │ ├── GB_bitmap_assign_A_whole_template.c │ │ ├── GB_bitmap_assign_C_template.c │ │ ├── GB_bitmap_assign_C_whole_template.c │ │ ├── GB_bitmap_assign_IxJ_template.c │ │ ├── GB_bitmap_assign_M_all_template.c │ │ ├── GB_bitmap_assign_M_col_template.c │ │ ├── GB_bitmap_assign_M_row_template.c │ │ ├── GB_bitmap_assign_M_sub_template.c │ │ ├── GB_bitmap_assign_M_template.c │ │ ├── GB_bitmap_emult_template.c │ │ ├── GB_bitmap_masker_template.c │ │ ├── GB_bitmap_select_template.c │ │ ├── GB_concat_bitmap_template.c │ │ ├── GB_concat_full_template.c │ │ ├── GB_concat_sparse_template.c │ │ ├── GB_convert_sparse_to_bitmap_template.c │ │ ├── GB_dense_ewise3_accum_template.c │ │ ├── GB_dense_ewise3_noaccum_template.c │ │ ├── GB_dense_subassign_05d_template.c │ │ ├── GB_dense_subassign_06d_template.c │ │ ├── GB_dense_subassign_22_template.c │ │ ├── GB_dense_subassign_23_template.c │ │ ├── GB_dense_subassign_25_template.c │ │ ├── GB_ek_slice_search.c │ │ ├── GB_emult_02_template.c │ │ ├── GB_emult_04_template.c │ │ ├── GB_emult_08_meta.c │ │ ├── GB_emult_08_template.c │ │ ├── GB_full_add_template.c │ │ ├── GB_iso_check_template.c │ │ ├── GB_lookup_template.c │ │ ├── GB_masker_template.c │ │ ├── GB_matrix.h │ │ ├── GB_meta16_definitions.h │ │ ├── GB_meta16_factory.c │ │ ├── GB_meta16_methods.c │ │ ├── GB_nnz_full_template.c │ │ ├── GB_nnz_held_template.c │ │ ├── GB_nnz_max_template.c │ │ ├── GB_nnz_template.c │ │ ├── GB_ops_template.c │ │ ├── GB_ops_template.h │ │ ├── GB_positional_op_ijp.c │ │ ├── GB_positional_op_ip.c │ │ ├── GB_qsort_template.c │ │ ├── GB_red_factory.c │ │ ├── GB_reduce_build_template.c │ │ ├── GB_reduce_panel.c │ │ ├── GB_reduce_to_scalar_template.c │ │ ├── GB_search_for_vector_template.c │ │ ├── GB_select_factory.c │ │ ├── GB_select_phase1.c │ │ ├── GB_select_phase2.c │ │ ├── GB_semiring_template.c │ │ ├── GB_sort_template.c │ │ ├── GB_sparse_add_template.c │ │ ├── GB_sparse_masker_template.c │ │ ├── GB_split_bitmap_template.c │ │ ├── GB_split_full_template.c │ │ ├── GB_split_sparse_template.c │ │ ├── GB_subref_template.c │ │ ├── GB_unjumbled_template.c │ │ ├── GB_unop_factory.c │ │ ├── GB_unop_transpose.c │ │ └── README.txt │ ├── codegen.m │ ├── codegen_1type.m │ ├── codegen_1type_template.m │ ├── codegen_axb.m │ ├── codegen_axb_compare_template.m │ ├── codegen_axb_method.m │ ├── codegen_axb_template.m │ ├── codegen_binop.m │ ├── codegen_binop_method.m │ ├── codegen_binop_template.m │ ├── codegen_contains.m │ ├── codegen_red.m │ ├── codegen_red_method.m │ ├── codegen_sel.m │ ├── codegen_sel_method.m │ ├── codegen_type.m │ ├── codegen_unop.m │ ├── codegen_unop_method.m │ ├── codegen_unop_template.m │ └── dodiff ├── Tcov │ ├── Contents.m │ ├── GB_cover_util.c │ ├── Makefile │ ├── README.txt │ ├── grbcov.m │ ├── grbcover.m │ ├── grbcover_edit.m │ ├── grbmake.m │ ├── grbshow.m │ ├── log_Aug8.txt │ ├── testcov.m │ ├── tmp_cover │ │ └── .gitignore │ ├── tmp_include │ │ └── .gitignore │ └── tmp_source │ │ └── .gitignore ├── Test │ ├── Contents.m │ ├── GB_builtin_complex_get.m │ ├── GB_builtin_complex_set.m │ ├── GB_complex_compare.m │ ├── GB_mex.h │ ├── GB_mex_AdotB.c │ ├── GB_mex_AplusB.c │ ├── GB_mex_AplusB_M_aliased.c │ ├── GB_mex_AxB.c │ ├── GB_mex_Col_assign.c │ ├── GB_mex_Col_extract.c │ ├── GB_mex_Matrix_build.c │ ├── GB_mex_Matrix_eWiseAdd.c │ ├── GB_mex_Matrix_eWiseMult.c │ ├── GB_mex_Matrix_eWiseUnion.c │ ├── GB_mex_Matrix_extract.c │ ├── GB_mex_Matrix_extractElement.c │ ├── GB_mex_Matrix_isStoredElement.c │ ├── GB_mex_Matrix_sort.c │ ├── GB_mex_Matrix_subref.c │ ├── GB_mex_Vector_build.c │ ├── GB_mex_Vector_eWiseAdd.c │ ├── GB_mex_Vector_eWiseMult.c │ ├── GB_mex_Vector_eWiseUnion.c │ ├── GB_mex_Vector_extract.c │ ├── GB_mex_Vector_extractElement.c │ ├── GB_mex_Vector_isStoredElement.c │ ├── GB_mex_Vector_sort.c │ ├── GB_mex_about.c │ ├── GB_mex_about2.c │ ├── GB_mex_about3.c │ ├── GB_mex_about4.c │ ├── GB_mex_about5.c │ ├── GB_mex_about6.c │ ├── GB_mex_about7.c │ ├── GB_mex_about8.c │ ├── GB_mex_about9.c │ ├── GB_mex_apply.c │ ├── GB_mex_apply1.c │ ├── GB_mex_apply2.c │ ├── GB_mex_apply_alias.c │ ├── GB_mex_apply_idxunop.c │ ├── GB_mex_apply_maskalias.c │ ├── GB_mex_assign.c │ ├── GB_mex_assign_alias.c │ ├── GB_mex_assign_alias_mask.c │ ├── GB_mex_assign_alias_mask_scalar.c │ ├── GB_mex_assign_scalar.c │ ├── GB_mex_band.c │ ├── GB_mex_binaryop.c │ ├── GB_mex_cast.c │ ├── GB_mex_clear.c │ ├── GB_mex_complex.c │ ├── GB_mex_concat.c │ ├── GB_mex_cumsum.c │ ├── GB_mex_debug.c │ ├── GB_mex_diag.c │ ├── GB_mex_dot_iterator.c │ ├── GB_mex_dump.c │ ├── GB_mex_dup.c │ ├── GB_mex_eWiseMult_first.c │ ├── GB_mex_eWiseMult_second.c │ ├── GB_mex_edit.c │ ├── GB_mex_errors.c │ ├── GB_mex_errors.h │ ├── GB_mex_ewise_alias1.c │ ├── GB_mex_ewise_alias2.c │ ├── GB_mex_ewise_alias3.c │ ├── GB_mex_ewise_alias4.c │ ├── GB_mex_ewise_alias5.c │ ├── GB_mex_ewise_alias6.c │ ├── GB_mex_expand.c │ ├── GB_mex_export.c │ ├── GB_mex_export_import.c │ ├── GB_mex_extractTuples.c │ ├── GB_mex_gabor.c │ ├── GB_mex_generic.h │ ├── GB_mex_hack.c │ ├── GB_mex_init.c │ ├── GB_mex_kron.c │ ├── GB_mex_mdiag.c │ ├── GB_mex_msort_2.c │ ├── GB_mex_msort_3.c │ ├── GB_mex_mxm.c │ ├── GB_mex_mxm_alias.c │ ├── GB_mex_mxm_flops.c │ ├── GB_mex_mxm_generic.c │ ├── GB_mex_mxm_update.c │ ├── GB_mex_mxv.c │ ├── GB_mex_mxv_iterator.c │ ├── GB_mex_nonzero.c │ ├── GB_mex_offdiag.c │ ├── GB_mex_omp_max_threads.c │ ├── GB_mex_op.c │ ├── GB_mex_qsort_1b.c │ ├── GB_mex_qsort_2.c │ ├── GB_mex_qsort_3.c │ ├── GB_mex_random.c │ ├── GB_mex_rdiv.c │ ├── GB_mex_rdiv2.c │ ├── GB_mex_reduce_bool.c │ ├── GB_mex_reduce_complex.c │ ├── GB_mex_reduce_terminal.c │ ├── GB_mex_reduce_to_GrB_Scalar.c │ ├── GB_mex_reduce_to_scalar.c │ ├── GB_mex_reduce_to_vector.c │ ├── GB_mex_reshape.c │ ├── GB_mex_resize.c │ ├── GB_mex_select.c │ ├── GB_mex_select_idxunop.c │ ├── GB_mex_semiring.c │ ├── GB_mex_serialize.c │ ├── GB_mex_setElement.c │ ├── GB_mex_split.c │ ├── GB_mex_subassign.c │ ├── GB_mex_subassign_alias.c │ ├── GB_mex_subassign_scalar.c │ ├── GB_mex_subref_symbolic.c │ ├── GB_mex_transpose.c │ ├── GB_mex_tril.c │ ├── GB_mex_triple_mxm.c │ ├── GB_mex_triu.c │ ├── GB_mex_unpack_pack.c │ ├── GB_mex_vdiag.c │ ├── GB_mex_vxm.c │ ├── GB_mx_BinaryOp_to_Monoid.c │ ├── GB_mx_Matrix_to_mxArray.c │ ├── GB_mx_Monoid.c │ ├── GB_mx_Type.c │ ├── GB_mx_Type_to_mxstring.c │ ├── GB_mx_Vector_to_mxArray.c │ ├── GB_mx_abort.c │ ├── GB_mx_alias.c │ ├── GB_mx_create_full.c │ ├── GB_mx_get_Scalar.c │ ├── GB_mx_get_global.c │ ├── GB_mx_isequal.c │ ├── GB_mx_mxArray_to_BinaryOp.c │ ├── GB_mx_mxArray_to_Descriptor.c │ ├── GB_mx_mxArray_to_IndexUnaryOp.c │ ├── GB_mx_mxArray_to_Matrix.c │ ├── GB_mx_mxArray_to_SelectOp.c │ ├── GB_mx_mxArray_to_Semiring.c │ ├── GB_mx_mxArray_to_UnaryOp.c │ ├── GB_mx_mxArray_to_Vector.c │ ├── GB_mx_mxArray_to_array.c │ ├── GB_mx_mxArray_to_indices.c │ ├── GB_mx_mxArray_to_string.c │ ├── GB_mx_object_to_mxArray.c │ ├── GB_mx_put_global.c │ ├── GB_mx_random_matrix.c │ ├── GB_mx_same.c │ ├── GB_mx_semiring.c │ ├── GB_mx_simple_rand.c │ ├── GB_mx_string_to_BinaryOp.c │ ├── GB_mx_string_to_IndexUnaryOp.c │ ├── GB_mx_string_to_Type.c │ ├── GB_mx_string_to_UnaryOp.c │ ├── GB_mx_usercomplex.c │ ├── GB_mx_usercomplex.h │ ├── GB_mx_xsame.c │ ├── GB_mx_xsame32.c │ ├── GB_mx_xsame64.c │ ├── GB_random_mask.m │ ├── GB_sparsity.m │ ├── GB_spec_Col_assign.m │ ├── GB_spec_Col_extract.m │ ├── GB_spec_Matrix_eWiseAdd.m │ ├── GB_spec_Matrix_eWiseMult.m │ ├── GB_spec_Matrix_eWiseUnion.m │ ├── GB_spec_Matrix_extract.m │ ├── GB_spec_Matrix_extractElement.m │ ├── GB_spec_Matrix_sort.m │ ├── GB_spec_Row_assign.m │ ├── GB_spec_Vector_eWiseAdd.m │ ├── GB_spec_Vector_eWiseMult.m │ ├── GB_spec_Vector_eWiseUnion.m │ ├── GB_spec_Vector_extract.m │ ├── GB_spec_Vector_extractElement.m │ ├── GB_spec_Vector_sort.m │ ├── GB_spec_accum.m │ ├── GB_spec_accum_mask.m │ ├── GB_spec_apply.m │ ├── GB_spec_assign.m │ ├── GB_spec_binop_positional.m │ ├── GB_spec_build.m │ ├── GB_spec_compare.m │ ├── GB_spec_concat.m │ ├── GB_spec_descriptor.m │ ├── GB_spec_extractTuples.m │ ├── GB_spec_getmask.m │ ├── GB_spec_identity.m │ ├── GB_spec_idxunop.m │ ├── GB_spec_is_idxunop.m │ ├── GB_spec_is_positional.m │ ├── GB_spec_kron.m │ ├── GB_spec_mask.m │ ├── GB_spec_matrix.m │ ├── GB_spec_mdiag.m │ ├── GB_spec_mxm.m │ ├── GB_spec_mxv.m │ ├── GB_spec_nbits.m │ ├── GB_spec_ones.m │ ├── GB_spec_op.m │ ├── GB_spec_opdomain.m │ ├── GB_spec_operator.m │ ├── GB_spec_opsall.m │ ├── GB_spec_random.m │ ├── GB_spec_reduce_to_scalar.m │ ├── GB_spec_reduce_to_vector.m │ ├── GB_spec_resize.m │ ├── GB_spec_select.m │ ├── GB_spec_select_idxunop.m │ ├── GB_spec_semiring.m │ ├── GB_spec_split.m │ ├── GB_spec_subassign.m │ ├── GB_spec_transpose.m │ ├── GB_spec_type.m │ ├── GB_spec_unop_positional.m │ ├── GB_spec_vdiag.m │ ├── GB_spec_vxm.m │ ├── GB_spec_zeros.m │ ├── GB_spok.m │ ├── GB_spones_mex.c │ ├── GB_undef_iterator.h │ ├── GB_user_op.m │ ├── GB_user_opsall.m │ ├── Makefile │ ├── README.txt │ ├── Template │ │ ├── GB_mx_build_template.c │ │ ├── GB_mx_dot_iterator_template.c │ │ └── GB_mx_mxv_iterator_template.c │ ├── accum_mask.m │ ├── accum_mask2.m │ ├── atest.m │ ├── atest11.m │ ├── btest.m │ ├── debug_off.m │ ├── debug_on.m │ ├── ee.m │ ├── eee.m │ ├── etest.m │ ├── feature_numcores.m │ ├── flopcount.m │ ├── floptest.m │ ├── grb_clear_coverage.m │ ├── grb_get_coverage.m │ ├── grbinfo.m │ ├── irand.m │ ├── isequal_roundoff.m │ ├── logstat.m │ ├── longtests.m │ ├── make.m │ ├── mtest.m │ ├── nthreads_get.m │ ├── nthreads_set.m │ ├── rtest.m │ ├── runtest.m │ ├── spok │ │ ├── Contents.m │ │ ├── private │ │ │ └── spok_invalid.c │ │ ├── spok.c │ │ ├── spok.h │ │ ├── spok.m │ │ ├── spok_install.m │ │ ├── spok_mex.c │ │ └── spok_test.m │ ├── ss.m │ ├── stat.m │ ├── stest.m │ ├── t74.m │ ├── t99.m │ ├── test01.m │ ├── test02.m │ ├── test03.m │ ├── test04.m │ ├── test05.m │ ├── test06.m │ ├── test07.m │ ├── test07b.m │ ├── test09.m │ ├── test09b.m │ ├── test10.m │ ├── test101.m │ ├── test102.m │ ├── test103.m │ ├── test104.m │ ├── test105.m │ ├── test106.m │ ├── test107.m │ ├── test108.m │ ├── test109.m │ ├── test10_compare.m │ ├── test11.m │ ├── test110.m │ ├── test111.m │ ├── test112.m │ ├── test113.m │ ├── test114.m │ ├── test115.m │ ├── test116.m │ ├── test117.m │ ├── test118.m │ ├── test119.m │ ├── test120.m │ ├── test121.m │ ├── test122.m │ ├── test124.m │ ├── test125.m │ ├── test126.m │ ├── test127.m │ ├── test128.m │ ├── test129.m │ ├── test13.m │ ├── test130.m │ ├── test131.m │ ├── test132.m │ ├── test133.m │ ├── test134.m │ ├── test135.m │ ├── test136.m │ ├── test137.m │ ├── test138.m │ ├── test139.m │ ├── test14.m │ ├── test140.m │ ├── test141.m │ ├── test142.m │ ├── test143.m │ ├── test144.m │ ├── test145.m │ ├── test146.m │ ├── test147.m │ ├── test148.m │ ├── test149.m │ ├── test15.m │ ├── test150.m │ ├── test151.m │ ├── test151b.m │ ├── test152.m │ ├── test153.m │ ├── test154.m │ ├── test155.m │ ├── test156.m │ ├── test157.m │ ├── test158.m │ ├── test159.m │ ├── test16.m │ ├── test160.m │ ├── test161.m │ ├── test162.m │ ├── test163.m │ ├── test164.m │ ├── test165.m │ ├── test166.m │ ├── test167.m │ ├── test168.m │ ├── test169.m │ ├── test17.m │ ├── test170.m │ ├── test171.m │ ├── test172.m │ ├── test173.m │ ├── test174.m │ ├── test175.m │ ├── test176.m │ ├── test177.m │ ├── test178.m │ ├── test179.m │ ├── test18.m │ ├── test180.m │ ├── test181.m │ ├── test182.m │ ├── test183.m │ ├── test184.m │ ├── test185.m │ ├── test186.m │ ├── test187.m │ ├── test188.m │ ├── test189.m │ ├── test19.m │ ├── test190.m │ ├── test191.m │ ├── test192.m │ ├── test193.m │ ├── test194.m │ ├── test195.m │ ├── test196.m │ ├── test197.m │ ├── test198.m │ ├── test199.m │ ├── test19b.m │ ├── test20.m │ ├── test200.m │ ├── test201.m │ ├── test202.m │ ├── test203.m │ ├── test204.m │ ├── test205.m │ ├── test206.m │ ├── test207.m │ ├── test208.m │ ├── test209.m │ ├── test21.m │ ├── test210.m │ ├── test211.m │ ├── test212.m │ ├── test213.m │ ├── test214.m │ ├── test215.m │ ├── test216.m │ ├── test217.m │ ├── test218.m │ ├── test219.m │ ├── test21b.m │ ├── test22.m │ ├── test220.m │ ├── test221.m │ ├── test222.m │ ├── test223.m │ ├── test224.m │ ├── test225.m │ ├── test226.m │ ├── test227.m │ ├── test228.m │ ├── test229.m │ ├── test23.m │ ├── test230.m │ ├── test231.m │ ├── test232.m │ ├── test233.m │ ├── test234.m │ ├── test235.m │ ├── test236.m │ ├── test237.m │ ├── test238.m │ ├── test239.m │ ├── test24.m │ ├── test240.m │ ├── test241.m │ ├── test242.m │ ├── test243.m │ ├── test244.m │ ├── test25.m │ ├── test26.m │ ├── test27.m │ ├── test28.m │ ├── test29.m │ ├── test30.m │ ├── test30b.m │ ├── test31.m │ ├── test32.m │ ├── test33.m │ ├── test34.m │ ├── test35.m │ ├── test36.m │ ├── test38.m │ ├── test39.m │ ├── test40.m │ ├── test41.m │ ├── test42.m │ ├── test43.m │ ├── test44.m │ ├── test45.m │ ├── test46.m │ ├── test46b.m │ ├── test47.m │ ├── test48.m │ ├── test49.m │ ├── test50.m │ ├── test51.m │ ├── test51b.m │ ├── test52.m │ ├── test53.m │ ├── test54.m │ ├── test55.m │ ├── test55b.m │ ├── test56.m │ ├── test57.m │ ├── test58.m │ ├── test59.m │ ├── test60.m │ ├── test61.m │ ├── test62.m │ ├── test63.m │ ├── test64.m │ ├── test64b.m │ ├── test65.m │ ├── test66.m │ ├── test67.m │ ├── test68.m │ ├── test69.m │ ├── test72.m │ ├── test73.m │ ├── test74.m │ ├── test75.m │ ├── test75b.m │ ├── test76.m │ ├── test77.m │ ├── test78.m │ ├── test79.m │ ├── test80.m │ ├── test81.m │ ├── test82.m │ ├── test83.m │ ├── test84.m │ ├── test84_orig.m │ ├── test85.m │ ├── test86.m │ ├── test87.m │ ├── test88.m │ ├── test89.m │ ├── test90.m │ ├── test91.m │ ├── test92.m │ ├── test95.m │ ├── test96.m │ ├── test97.m │ ├── test98.m │ ├── test99.m │ ├── test_contains.m │ ├── test_other.m │ ├── test_semirings.m │ ├── test_threads.m │ ├── test_threads3.m │ ├── testall.m │ ├── testc1.m │ ├── testc2.m │ ├── testc3.m │ ├── testc4.m │ ├── testc5.m │ ├── testc6.m │ ├── testc7.m │ ├── testc8.m │ ├── testc9.m │ ├── testca.m │ ├── testcb.m │ ├── testcc.m │ ├── testcz.m │ ├── testperf.m │ ├── testsort.m │ ├── tt.m │ ├── ttest.m │ ├── xtest.m │ └── ztest.m ├── alternative │ ├── Makefile │ ├── README.txt │ └── altdemo ├── build │ └── .gitignore ├── cpu_features │ ├── .clang-format │ ├── .dockerignore │ ├── .github │ │ └── workflows │ │ │ ├── Dockerfile │ │ │ ├── aarch64_linux.yml │ │ │ ├── amd64_freebsd.yml │ │ │ ├── amd64_linux.yml │ │ │ ├── amd64_macos.yml │ │ │ ├── amd64_windows.yml │ │ │ ├── arm_linux.yml │ │ │ ├── clang_format.yml │ │ │ └── mips_linux.yml │ ├── .gitignore │ ├── CMakeLists.txt │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── README_for_GraphBLAS.txt │ ├── ci │ │ ├── Makefile │ │ ├── README.md │ │ ├── doc │ │ │ ├── docker.dot │ │ │ ├── docker.svg │ │ │ └── generate_image.sh │ │ ├── docker │ │ │ ├── amd64 │ │ │ │ └── Dockerfile │ │ │ └── toolchain │ │ │ │ └── Dockerfile │ │ ├── sample │ │ │ ├── CMakeLists.txt │ │ │ └── main.cpp │ │ └── vagrant │ │ │ └── freebsd │ │ │ └── Vagrantfile │ ├── cmake │ │ ├── CpuFeaturesConfig.cmake.in │ │ ├── CpuFeaturesNdkCompatConfig.cmake.in │ │ ├── README.md │ │ └── googletest.CMakeLists.txt.in │ ├── include │ │ ├── cpu_features_cache_info.h │ │ ├── cpu_features_macros.h │ │ ├── cpuinfo_aarch64.h │ │ ├── cpuinfo_arm.h │ │ ├── cpuinfo_mips.h │ │ ├── cpuinfo_ppc.h │ │ ├── cpuinfo_x86.h │ │ └── internal │ │ │ ├── bit_utils.h │ │ │ ├── cpuid_x86.h │ │ │ ├── filesystem.h │ │ │ ├── hwcaps.h │ │ │ ├── stack_line_reader.h │ │ │ └── string_view.h │ ├── ndk_compat │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── cpu-features.c │ │ ├── cpu-features.h │ │ └── ndk-compat-test.c │ ├── scripts │ │ ├── make_release.sh │ │ ├── run_integration.sh │ │ └── test_integration.sh │ ├── src │ │ ├── copy.inl │ │ ├── define_introspection.inl │ │ ├── define_introspection_and_hwcaps.inl │ │ ├── equals.inl │ │ ├── filesystem.c │ │ ├── hwcaps.c │ │ ├── impl_aarch64.c │ │ ├── impl_arm_linux_or_android.c │ │ ├── impl_mips_linux_or_android.c │ │ ├── impl_ppc_linux.c │ │ ├── impl_x86__base_implementation.inl │ │ ├── impl_x86_freebsd.c │ │ ├── impl_x86_linux_or_android.c │ │ ├── impl_x86_macos.c │ │ ├── impl_x86_windows.c │ │ ├── stack_line_reader.c │ │ ├── string_view.c │ │ └── utils │ │ │ └── list_cpu_features.c │ └── test │ │ ├── CMakeLists.txt │ │ ├── bit_utils_test.cc │ │ ├── cpuinfo_aarch64_test.cc │ │ ├── cpuinfo_arm_test.cc │ │ ├── cpuinfo_mips_test.cc │ │ ├── cpuinfo_ppc_test.cc │ │ ├── cpuinfo_x86_test.cc │ │ ├── filesystem_for_testing.cc │ │ ├── filesystem_for_testing.h │ │ ├── hwcaps_for_testing.cc │ │ ├── hwcaps_for_testing.h │ │ ├── stack_line_reader_test.cc │ │ └── string_view_test.cc ├── logo │ ├── GB_jpg_logo_RGB │ │ ├── GRAPHBLAS_darkblue_blue_full_vertical.jpg │ │ ├── GRAPHBLAS_darkblue_full_horizontal_blue.jpg │ │ ├── GRAPHBLAS_darkblue_full_horizontal_white.jpg │ │ ├── GRAPHBLAS_darkblue_green_full_horizontal.jpg │ │ ├── GRAPHBLAS_darkblue_green_full_vertical.jpg │ │ ├── GRAPHBLAS_darkblue_icon_blue.jpg │ │ ├── GRAPHBLAS_darkblue_icon_green.jpg │ │ ├── GRAPHBLAS_darkblue_icon_white.jpg │ │ ├── GRAPHBLAS_darkblue_white_full_vertical.jpg │ │ ├── GRAPHBLAS_green_horizontal_darkblue.jpg │ │ ├── GRAPHBLAS_green_icon_darkblue.jpg │ │ ├── GRAPHBLAS_white_horizontal_darkblue.jpg │ │ ├── GRAPHBLAS_white_icon_darkblue.jpg │ │ ├── GRAPHBLAS_white_vertical_darkblue copy.jpg │ │ └── GRAPHBLAS_white_vertical_darkblue.jpg │ ├── GB_png_logo_RGB │ │ ├── GRAPHBLAS_darkblue_blue_full_vertical.png │ │ ├── GRAPHBLAS_darkblue_full_horizontal_blue.png │ │ ├── GRAPHBLAS_darkblue_icon_green.png │ │ ├── GRAPHBLAS_green_horizontal_darkblue.png │ │ ├── GRAPHBLAS_green_icon_darkblue.png │ │ ├── GRAPHBLAS_white_horizontal_darkblue.png │ │ ├── GRAPHBLAS_white_icon_darkblue.png │ │ ├── GRAPHBLAS_white_vertical_darkblue copy.png │ │ └── GRAPHBLAS_white_vertical_darkblue.png │ ├── GB_svg_logo_RGB │ │ ├── GRAPHBLAS_darkblue_blue_full_vertical.svg │ │ ├── GRAPHBLAS_darkblue_full_horizontal_blue.svg │ │ ├── GRAPHBLAS_darkblue_green_full_horizontal.svg │ │ ├── GRAPHBLAS_darkblue_green_full_vertical.svg │ │ ├── GRAPHBLAS_darkblue_icon_blue.svg │ │ ├── GRAPHBLAS_darkblue_icon_green.svg │ │ ├── GRAPHBLAS_darkblue_icon_white.svg │ │ ├── GRAPHBLAS_darkblue_white_full_horizontal.svg │ │ ├── GRAPHBLAS_darkblue_white_full_vertical copy.svg │ │ ├── GRAPHBLAS_green_horizontal_darkblue.svg │ │ ├── GRAPHBLAS_green_icon_darkblue.svg │ │ ├── GRAPHBLAS_white_horizontal_darkblue.svg │ │ ├── GRAPHBLAS_white_icon_darkblue.svg │ │ ├── GRAPHBLAS_white_vertical_darkblue copy.svg │ │ └── GRAPHBLAS_white_vertical_darkblue.svg │ ├── GRAPHBLAS_branding_guide.pdf │ └── GRAPHBLAS_logo_kit.pdf ├── lz4 │ ├── LICENSE │ ├── README.md │ ├── README.txt │ ├── README_lz4.md │ ├── lz4.c │ ├── lz4.h │ ├── lz4hc.c │ └── lz4hc.h ├── rmm_wrap │ ├── .gitignore │ ├── CMakeLists.txt │ ├── README.md │ ├── rmm_wrap.cpp │ ├── rmm_wrap.h │ ├── rmm_wrap.hpp │ └── rmm_wrap_test.c └── zstd │ ├── LICENSE │ ├── README.txt │ ├── README_zstd.md │ └── zstd_subset │ ├── common │ ├── bits.h │ ├── bitstream.h │ ├── compiler.h │ ├── cpu.h │ ├── debug.c │ ├── debug.h │ ├── entropy_common.c │ ├── error_private.c │ ├── error_private.h │ ├── fse.h │ ├── fse_decompress.c │ ├── huf.h │ ├── mem.h │ ├── pool.c │ ├── pool.h │ ├── portability_macros.h │ ├── threading.c │ ├── threading.h │ ├── xxhash.c │ ├── xxhash.h │ ├── zstd_common.c │ ├── zstd_deps.h │ ├── zstd_internal.h │ └── zstd_trace.h │ ├── compress │ ├── clevels.h │ ├── fse_compress.c │ ├── hist.c │ ├── hist.h │ ├── huf_compress.c │ ├── zstd_compress.c │ ├── zstd_compress_internal.h │ ├── zstd_compress_literals.c │ ├── zstd_compress_literals.h │ ├── zstd_compress_sequences.c │ ├── zstd_compress_sequences.h │ ├── zstd_compress_superblock.c │ ├── zstd_compress_superblock.h │ ├── zstd_cwksp.h │ ├── zstd_double_fast.c │ ├── zstd_double_fast.h │ ├── zstd_fast.c │ ├── zstd_fast.h │ ├── zstd_lazy.c │ ├── zstd_lazy.h │ ├── zstd_ldm.c │ ├── zstd_ldm.h │ ├── zstd_ldm_geartab.h │ ├── zstd_opt.c │ ├── zstd_opt.h │ ├── zstdmt_compress.c │ └── zstdmt_compress.h │ ├── decompress │ ├── huf_decompress.c │ ├── huf_decompress_amd64.S │ ├── zstd_ddict.c │ ├── zstd_ddict.h │ ├── zstd_decompress.c │ ├── zstd_decompress_block.c │ ├── zstd_decompress_block.h │ └── zstd_decompress_internal.h │ ├── zstd.h │ └── zstd_errors.h ├── KLU ├── Demo │ ├── Makefile │ ├── klu_simple.c │ ├── klu_simple.out │ ├── kludemo.c │ ├── kludemo.out │ └── kluldemo.c ├── Doc │ ├── ChangeLog │ ├── KLU_UserGuide.bib │ ├── KLU_UserGuide.pdf │ ├── KLU_UserGuide.tex │ ├── License.txt │ ├── Makefile │ ├── lesser.txt │ └── palamadai_e.pdf ├── Include │ ├── klu.h │ ├── klu_internal.h │ └── klu_version.h ├── Lib │ └── Makefile ├── MATLAB │ ├── Contents.m │ ├── Test │ │ ├── klu_test.m │ │ ├── test1.m │ │ ├── test2.m │ │ ├── test3.m │ │ ├── test4.m │ │ └── test5.m │ ├── klu.m │ ├── klu_demo.m │ ├── klu_demo.m.out │ ├── klu_install.m │ ├── klu_make.m │ └── klu_mex.c ├── Makefile ├── Matrix │ ├── 1c.mtx │ ├── GD99_cc.mtx │ ├── arrow.mtx │ ├── arrowc.mtx │ ├── ctina.mtx │ ├── impcol_a.mtx │ ├── one.mtx │ ├── onec.mtx │ ├── two.mtx │ └── w156.mtx ├── README.txt ├── Source │ ├── klu.c │ ├── klu_analyze.c │ ├── klu_analyze_given.c │ ├── klu_defaults.c │ ├── klu_diagnostics.c │ ├── klu_dump.c │ ├── klu_extract.c │ ├── klu_factor.c │ ├── klu_free_numeric.c │ ├── klu_free_symbolic.c │ ├── klu_kernel.c │ ├── klu_memory.c │ ├── klu_refactor.c │ ├── klu_scale.c │ ├── klu_solve.c │ ├── klu_sort.c │ └── klu_tsolve.c ├── Tcov │ ├── Makefile │ ├── README.txt │ ├── coverage │ ├── klultests │ ├── klutest.c │ ├── klutests │ ├── vklultests │ └── vklutests └── User │ ├── Makefile │ ├── README.txt │ ├── klu_cholmod.c │ ├── klu_cholmod.h │ └── klu_l_cholmod.c ├── LDL ├── Demo │ ├── Makefile │ ├── ldlamd.out │ ├── ldllamd.out │ ├── ldllmain.out │ ├── ldllsimple.c │ ├── ldllsimple.out │ ├── ldlmain.c │ ├── ldlmain.out │ ├── ldlsimple.c │ └── ldlsimple.out ├── Doc │ ├── ChangeLog │ ├── License.txt │ ├── Makefile │ ├── ldl.bib │ ├── ldl_userguide.pdf │ ├── ldl_userguide.tex │ └── lesser.txt ├── Include │ └── ldl.h ├── Lib │ └── Makefile ├── MATLAB │ ├── Contents.m │ ├── ldl_install.m │ ├── ldl_make.m │ ├── ldldemo.m │ ├── ldldemo.out │ ├── ldlmain2.m │ ├── ldlmain2.out │ ├── ldlmex.c │ ├── ldlrow.m │ ├── ldlsparse.m │ ├── ldlsymbol.m │ ├── ldlsymbolmex.c │ ├── ldltest.m │ └── ldltest.out ├── Makefile ├── Matrix │ ├── A01 │ ├── A02 │ ├── A03 │ ├── A04 │ ├── A05 │ ├── A06 │ ├── A07 │ ├── A08 │ ├── A09 │ ├── A10 │ ├── A11 │ ├── A12 │ ├── A13 │ ├── A14 │ ├── A15 │ ├── A16 │ ├── A17 │ ├── A18 │ ├── A19 │ ├── A20 │ ├── A21 │ ├── A22 │ ├── A23 │ ├── A24 │ ├── A25 │ ├── A26 │ ├── A27 │ ├── A28 │ ├── A29 │ └── A30 ├── README.txt └── Source │ └── ldl.c ├── LICENSE ├── LICENSE.suitesparse ├── MATLAB_Tools ├── Contents.m ├── Doc │ └── License.txt ├── Factorize │ ├── Contents.m │ ├── Demo │ │ ├── factorize_demo.m │ │ └── fdemo.m │ ├── Doc │ │ ├── factorize_article.pdf │ │ ├── factorize_demo.html │ │ ├── factorize_demo.pdf │ │ └── factorize_demo.tex │ ├── README.txt │ ├── Test │ │ ├── Contents.m │ │ ├── README.txt │ │ ├── reset_rand.m │ │ ├── test_accuracy.m │ │ ├── test_all.m │ │ ├── test_all.txt │ │ ├── test_all_cod.m │ │ ├── test_all_svd.m │ │ ├── test_cod.m │ │ ├── test_disp.m │ │ ├── test_errors.m │ │ ├── test_factorize.m │ │ ├── test_function.m │ │ ├── test_functions.m │ │ ├── test_performance.m │ │ └── test_svd.m │ ├── cod.m │ ├── cod_qmult.m │ ├── cod_sparse.m │ ├── factorization.m │ ├── factorization_chol_dense.m │ ├── factorization_chol_sparse.m │ ├── factorization_cod_dense.m │ ├── factorization_cod_sparse.m │ ├── factorization_ldl_dense.m │ ├── factorization_ldl_sparse.m │ ├── factorization_lu_dense.m │ ├── factorization_lu_sparse.m │ ├── factorization_qr_dense.m │ ├── factorization_qr_sparse.m │ ├── factorization_qrt_dense.m │ ├── factorization_qrt_sparse.m │ ├── factorization_svd.m │ ├── factorize.m │ ├── inverse.m │ ├── private │ │ ├── cheap_condest.m │ │ ├── get_diag.m │ │ └── rank_est.m │ └── rq.m ├── GEE │ ├── Contents.m │ ├── gee_its_short.m │ ├── gee_its_simple.m │ ├── gee_its_simple_backsolve.m │ ├── gee_its_simple_factorize.m │ ├── gee_its_simple_forwardsolve.m │ ├── gee_its_simple_resid.m │ ├── gee_its_simple_test.m │ ├── gee_its_sweet.m │ ├── gee_its_too_short.m │ └── private │ │ └── gee_its_simple_check.m ├── LINFACTOR │ ├── Contents.m │ ├── README.txt │ ├── linfactor.m │ ├── lintest.m │ └── lintests.m ├── MESHND │ ├── Contents.m │ ├── README.txt │ ├── meshnd.m │ ├── meshnd.png │ ├── meshnd_example.m │ ├── meshnd_quality.m │ ├── meshnd_quality.png │ ├── meshnd_quality_out.txt │ └── meshsparse.m ├── SFMULT │ ├── Contents.m │ ├── Makefile │ ├── sfmult.c │ ├── sfmult.h │ ├── sfmult.m │ ├── sfmult_anxnyn.c │ ├── sfmult_anxnyt.c │ ├── sfmult_anxnyt_k.c │ ├── sfmult_anxtyn.c │ ├── sfmult_anxtyt.c │ ├── sfmult_anxtyt_k.c │ ├── sfmult_atxnyn.c │ ├── sfmult_atxnyt.c │ ├── sfmult_atxtyn.c │ ├── sfmult_atxtyn_k.c │ ├── sfmult_atxtyt.c │ ├── sfmult_atxtyt_k.c │ ├── sfmult_mex.c │ ├── sfmult_vector_1.c │ ├── sfmult_vector_k.c │ ├── sfmult_xA.c │ └── ssmult_transpose.c ├── SSMULT │ ├── ChangeLog │ ├── Contents.m │ ├── README.txt │ ├── Results │ │ ├── CoreDuo_Linux.png │ │ ├── CoreDuo_MS_lcc.png │ │ ├── CoreDuo_MS_vc2005.png │ │ ├── Opteron64_Linux.png │ │ ├── Opteron64_sstest2.png │ │ ├── Pentium4M_Linux.png │ │ ├── s2.m │ │ └── sstest2_results.mat │ ├── sptranspose.c │ ├── sptranspose.m │ ├── ssmult.c │ ├── ssmult.h │ ├── ssmult.m │ ├── ssmult_demo.m │ ├── ssmult_dot.c │ ├── ssmult_install.m │ ├── ssmult_mex.c │ ├── ssmult_saxpy.c │ ├── ssmult_template.c │ ├── ssmult_test.m │ ├── ssmult_transpose.c │ ├── ssmultsym.c │ ├── ssmultsym.m │ ├── sstest.m │ ├── sstest2.m │ ├── sstest3.m │ └── tryit.mat ├── SuiteSparseCollection │ ├── Contents.m │ ├── Doc │ │ └── ChangeLog │ ├── README.txt │ ├── dsxy2figxy.m │ ├── ss_install.m │ ├── sscellstring.m │ ├── sscsv_write.m │ ├── ssexport.m │ ├── ssfull_read.m │ ├── ssfull_write.c │ ├── ssfull_write.m │ ├── ssgplot.m │ ├── ssindex.m │ ├── sslocation.m │ ├── sspage.m │ ├── sspages.m │ ├── ssread.m │ ├── ssstats.m │ ├── sstextread.m │ ├── sstextwrite.m │ └── sswrite.m ├── dimacs10 │ ├── Contents.m │ ├── adjnoun.graph │ ├── bad1.graph │ ├── bad2.graph │ ├── bad3.graph │ ├── bad4.graph │ ├── bad5.graph │ ├── bad6.graph │ ├── bad7.graph │ ├── bad8.graph │ ├── bad9.graph │ ├── dimacs10.m │ ├── dimacs10_convert_to_graph.c │ ├── dimacs10_demo.m │ ├── dimacs10_install.m │ ├── fig8a.graph │ ├── fig8b.graph │ ├── fig8c.graph │ ├── fig8d.graph │ ├── ilp_test.graph │ ├── metis_graph_read.m │ ├── metis_graph_read_mex.c │ ├── metis_graph_test.m │ └── multi.graph ├── find_components │ ├── Contents.m │ ├── find_components.m │ ├── find_components.png │ ├── find_components_example.m │ └── largest_component.m ├── getversion.m ├── gipper.m ├── hprintf.m ├── pagerankdemo.m ├── shellgui │ ├── Contents.m │ ├── seashell.m │ ├── shellgui.fig │ └── shellgui.m ├── sparseinv │ ├── Contents.m │ ├── sparseinv.c │ ├── sparseinv.h │ ├── sparseinv.m │ ├── sparseinv_install.m │ ├── sparseinv_mex.c │ └── sparseinv_test.m ├── spok │ ├── Contents.m │ ├── private │ │ └── spok_invalid.c │ ├── spok.c │ ├── spok.h │ ├── spok.m │ ├── spok_install.m │ ├── spok_mex.c │ └── spok_test.m ├── spqr_rank │ ├── Contents.m │ ├── README.txt │ ├── SJget │ │ ├── Contents.m │ │ ├── README.txt │ │ ├── SJget.m │ │ ├── SJget_defaults.m │ │ ├── SJget_example.m │ │ ├── SJget_install.m │ │ ├── SJget_lookup.m │ │ ├── SJgrep.m │ │ ├── SJplot.m │ │ ├── SJrank.m │ │ ├── SJweb.m │ │ └── mat │ │ │ ├── GHS_indef │ │ │ └── laser.mat │ │ │ ├── HB │ │ │ ├── bcspwr02.mat │ │ │ ├── bcsstm01.mat │ │ │ ├── bcsstm03.mat │ │ │ ├── bcsstm04.mat │ │ │ ├── can_144.mat │ │ │ ├── can_187.mat │ │ │ ├── can_61.mat │ │ │ ├── curtis54.mat │ │ │ ├── dwt_162.mat │ │ │ ├── dwt_193.mat │ │ │ ├── dwt_198.mat │ │ │ ├── dwt_209.mat │ │ │ ├── dwt_72.mat │ │ │ ├── fs_183_3.mat │ │ │ ├── gent113.mat │ │ │ ├── jgl009.mat │ │ │ ├── jgl011.mat │ │ │ ├── lap_25.mat │ │ │ ├── lns_131.mat │ │ │ ├── lnsp_131.mat │ │ │ ├── mcca.mat │ │ │ ├── rgg010.mat │ │ │ ├── west0156.mat │ │ │ ├── will199.mat │ │ │ └── will57.mat │ │ │ ├── JGD_Homology │ │ │ ├── ch3-3-b1.mat │ │ │ ├── ch4-4-b1.mat │ │ │ ├── ch4-4-b2.mat │ │ │ ├── ch5-5-b1.mat │ │ │ ├── cis-n4c6-b1.mat │ │ │ ├── klein-b1.mat │ │ │ ├── n2c6-b1.mat │ │ │ ├── n3c4-b1.mat │ │ │ ├── n3c4-b2.mat │ │ │ ├── n3c4-b3.mat │ │ │ ├── n3c4-b4.mat │ │ │ ├── n3c5-b1.mat │ │ │ ├── n3c5-b2.mat │ │ │ ├── n3c5-b3.mat │ │ │ ├── n3c6-b1.mat │ │ │ ├── n4c5-b1.mat │ │ │ └── n4c6-b1.mat │ │ │ ├── JGD_Margulies │ │ │ ├── cat_ears_2_1.mat │ │ │ ├── cat_ears_3_1.mat │ │ │ ├── flower_4_1.mat │ │ │ ├── wheel_3_1.mat │ │ │ ├── wheel_4_1.mat │ │ │ ├── wheel_5_1.mat │ │ │ ├── wheel_6_1.mat │ │ │ └── wheel_7_1.mat │ │ │ ├── JGD_Relat │ │ │ ├── rel3.mat │ │ │ ├── rel4.mat │ │ │ ├── relat3.mat │ │ │ └── relat4.mat │ │ │ ├── NYPA │ │ │ └── Maragal_1.mat │ │ │ ├── Pajek │ │ │ ├── Erdos971.mat │ │ │ ├── GD01_b.mat │ │ │ ├── GD01_c.mat │ │ │ ├── GD02_a.mat │ │ │ ├── GD02_b.mat │ │ │ ├── GD06_theory.mat │ │ │ ├── GD95_a.mat │ │ │ ├── GD95_b.mat │ │ │ ├── GD96_b.mat │ │ │ ├── GD96_c.mat │ │ │ ├── GD96_d.mat │ │ │ ├── GD97_a.mat │ │ │ ├── GD97_b.mat │ │ │ ├── GD98_a.mat │ │ │ ├── GD98_b.mat │ │ │ ├── GD98_c.mat │ │ │ ├── GD99_b.mat │ │ │ ├── GD99_c.mat │ │ │ ├── GlossGT.mat │ │ │ ├── Ragusa16.mat │ │ │ ├── Ragusa18.mat │ │ │ ├── Sandi_authors.mat │ │ │ ├── Tina_AskCal.mat │ │ │ ├── Tina_DisCal.mat │ │ │ ├── Tina_DisCog.mat │ │ │ └── football.mat │ │ │ ├── Pothen │ │ │ └── sphere2.mat │ │ │ ├── Regtools │ │ │ ├── baart_100.mat │ │ │ ├── baart_200.mat │ │ │ ├── foxgood_100.mat │ │ │ ├── foxgood_200.mat │ │ │ ├── gravity_100.mat │ │ │ ├── gravity_1000.mat │ │ │ ├── gravity_200.mat │ │ │ ├── heat_100.mat │ │ │ ├── heat_200.mat │ │ │ ├── i_laplace_100.mat │ │ │ ├── i_laplace_200.mat │ │ │ ├── parallax_100.mat │ │ │ ├── parallax_200.mat │ │ │ ├── shaw_100.mat │ │ │ ├── shaw_200.mat │ │ │ ├── tomo_100.mat │ │ │ ├── ursell_100.mat │ │ │ ├── ursell_200.mat │ │ │ ├── wing_100.mat │ │ │ ├── wing_200.mat │ │ │ └── wing_500.mat │ │ │ ├── SJ_Index.mat │ │ │ └── Sandia │ │ │ ├── oscil_dcop_24.mat │ │ │ ├── oscil_dcop_33.mat │ │ │ └── oscil_dcop_34.mat │ ├── demo_spqr_rank.m │ ├── private │ │ ├── Contents.m │ │ ├── install_SJget.m │ │ ├── spqr_failure.m │ │ ├── spqr_rank_assign_stats.m │ │ ├── spqr_rank_deflation.m │ │ ├── spqr_rank_form_basis.m │ │ ├── spqr_rank_get_inputs.m │ │ ├── spqr_rank_order_fields.m │ │ ├── spqr_repeatable.m │ │ ├── spqr_wrapper.m │ │ ├── test_spqr_coverage.txt │ │ └── tol_is_default.m │ ├── quickdemo_spqr_rank.m │ ├── spqr_basic.m │ ├── spqr_cod.m │ ├── spqr_explicit_basis.m │ ├── spqr_null.m │ ├── spqr_null_mult.m │ ├── spqr_pinv.m │ ├── spqr_rank_opts.m │ ├── spqr_rank_stats.m │ ├── spqr_ssi.m │ ├── spqr_ssp.m │ ├── test_spqr_coverage.m │ └── test_spqr_rank.m └── waitmex │ ├── README.txt │ ├── waitex.m │ ├── waitexample.c │ ├── waitexample.m │ ├── waitmex.c │ ├── waitmex.h │ └── waitmex.m ├── Makefile ├── Mongoose ├── .clang-format ├── .gitignore ├── .travis.yml ├── CMake │ └── cmake_colors.cmake ├── CMakeLists.txt ├── CONTRIBUTING.md ├── Demo │ └── demo.cpp ├── Doc │ ├── CONTRIBUTOR-LICENSE │ ├── CONTRIBUTOR-LICENSE.md │ ├── Figures │ │ ├── BrotherlyMatching.eps │ │ ├── CommunityMatching.eps │ │ └── MultilevelOverview.eps │ ├── License.txt │ ├── Makefile │ ├── Mongoose_UserGuide.pdf │ ├── Mongoose_UserGuide.tex │ ├── references.bib │ └── title-info.tex ├── Executable │ └── mongoose.cpp ├── External │ └── mmio │ │ ├── Include │ │ └── mmio.h │ │ └── Source │ │ └── mmio.c ├── Include │ ├── Mongoose.hpp │ ├── Mongoose_BoundaryHeap.hpp │ ├── Mongoose_CSparse.hpp │ ├── Mongoose_Coarsening.hpp │ ├── Mongoose_CutCost.hpp │ ├── Mongoose_Debug.hpp │ ├── Mongoose_EdgeCut.hpp │ ├── Mongoose_EdgeCutOptions.hpp │ ├── Mongoose_EdgeCutProblem.hpp │ ├── Mongoose_Graph.hpp │ ├── Mongoose_GuessCut.hpp │ ├── Mongoose_IO.hpp │ ├── Mongoose_ImproveFM.hpp │ ├── Mongoose_ImproveQP.hpp │ ├── Mongoose_Internal.hpp │ ├── Mongoose_Logger.hpp │ ├── Mongoose_Matching.hpp │ ├── Mongoose_QPBoundary.hpp │ ├── Mongoose_QPDelta.hpp │ ├── Mongoose_QPGradProj.hpp │ ├── Mongoose_QPLinks.hpp │ ├── Mongoose_QPMaxHeap.hpp │ ├── Mongoose_QPMinHeap.hpp │ ├── Mongoose_QPNapDown.hpp │ ├── Mongoose_QPNapUp.hpp │ ├── Mongoose_QPNapsack.hpp │ ├── Mongoose_Random.hpp │ ├── Mongoose_Refinement.hpp │ ├── Mongoose_Sanitize.hpp │ ├── Mongoose_Version.hpp │ ├── Mongoose_Version.hpp.in │ └── Mongoose_Waterdance.hpp ├── Lib │ └── .gitignore ├── MATLAB │ ├── 494_bus.mat │ ├── Contents.m │ ├── coarsen.cpp │ ├── coarsen.m │ ├── comparison │ │ ├── compare.m │ │ └── compareAll.m │ ├── edgecut.cpp │ ├── edgecut.m │ ├── edgecut_options.cpp │ ├── edgecut_options.m │ ├── mex_util │ │ ├── mex_get_graph.cpp │ │ ├── mex_get_options.cpp │ │ ├── mex_getput_vector.cpp │ │ ├── mex_put_options.cpp │ │ └── mex_struct_util.cpp │ ├── mongoose_demo.m │ ├── mongoose_make.m │ ├── mongoose_mex.hpp │ ├── mongoose_plot.m │ ├── mongoose_test.m │ ├── safe_coarsen.m │ ├── safe_edgecut.m │ ├── sanitize.cpp │ └── sanitize.m ├── Makefile ├── Matrix │ ├── Erdos971.mtx │ ├── G51.mtx │ ├── GD97_b.mtx │ ├── NotreDame_www.mtx │ ├── Pd.mtx │ ├── bcspwr01.mtx │ ├── bcspwr02.mtx │ ├── bcspwr03.mtx │ ├── bcspwr04.mtx │ ├── bcspwr05.mtx │ ├── bcspwr06.mtx │ ├── bcspwr07.mtx │ ├── bcspwr08.mtx │ ├── bcspwr09.mtx │ ├── bcspwr10.mtx │ ├── dwt_992.mtx │ └── jagmesh7.mtx ├── README.md ├── Source │ ├── Mongoose_BoundaryHeap.cpp │ ├── Mongoose_CSparse.cpp │ ├── Mongoose_Coarsening.cpp │ ├── Mongoose_Debug.cpp │ ├── Mongoose_EdgeCut.cpp │ ├── Mongoose_EdgeCutOptions.cpp │ ├── Mongoose_EdgeCutProblem.cpp │ ├── Mongoose_Graph.cpp │ ├── Mongoose_GuessCut.cpp │ ├── Mongoose_IO.cpp │ ├── Mongoose_ImproveFM.cpp │ ├── Mongoose_ImproveQP.cpp │ ├── Mongoose_Logger.cpp │ ├── Mongoose_Matching.cpp │ ├── Mongoose_QPBoundary.cpp │ ├── Mongoose_QPDelta.cpp │ ├── Mongoose_QPGradProj.cpp │ ├── Mongoose_QPLinks.cpp │ ├── Mongoose_QPMaxHeap.cpp │ ├── Mongoose_QPMinHeap.cpp │ ├── Mongoose_QPNapDown.cpp │ ├── Mongoose_QPNapUp.cpp │ ├── Mongoose_QPNapsack.cpp │ ├── Mongoose_Random.cpp │ ├── Mongoose_Refinement.cpp │ ├── Mongoose_Sanitize.cpp │ ├── Mongoose_Version.cpp │ └── Mongoose_Waterdance.cpp ├── Tests │ ├── Matrix │ │ ├── Trec4.mtx │ │ ├── bad_dimensions.mtx │ │ ├── bad_header.mtx │ │ └── bad_matrix_type.mtx │ ├── Mongoose_Test.hpp │ ├── Mongoose_Test_EdgeSeparator.cpp │ ├── Mongoose_Test_EdgeSeparator_exe.cpp │ ├── Mongoose_Test_IO.cpp │ ├── Mongoose_Test_IO_exe.cpp │ ├── Mongoose_Test_Memory.cpp │ ├── Mongoose_Test_Memory_exe.cpp │ ├── Mongoose_Test_Performance.cpp │ ├── Mongoose_Test_Performance_exe.cpp │ ├── Mongoose_Test_Reference.cpp │ ├── Mongoose_Test_Reference_exe.cpp │ ├── Mongoose_UnitTest_EdgeSep_exe.cpp │ ├── Mongoose_UnitTest_Graph_exe.cpp │ ├── Mongoose_UnitTest_IO_exe.cpp │ ├── Results │ │ ├── Pd_result.txt │ │ ├── bcspwr01_result.txt │ │ ├── bcspwr02_result.txt │ │ ├── bcspwr03_result.txt │ │ ├── bcspwr04_result.txt │ │ ├── bcspwr05_result.txt │ │ ├── bcspwr06_result.txt │ │ ├── bcspwr07_result.txt │ │ ├── bcspwr08_result.txt │ │ ├── bcspwr09_result.txt │ │ └── bcspwr10_result.txt │ └── runTests ├── Version │ ├── Mongoose_Version.hpp.in │ ├── codemeta.json.in │ └── title-info.tex.in ├── build │ └── .gitignore ├── codecov.yml └── codemeta.json ├── RBio ├── Demo │ ├── Makefile │ ├── RBdemo.c │ └── RBdemo.out ├── Doc │ ├── ChangeLog │ ├── License.txt │ └── gpl.txt ├── Include │ └── RBio.h ├── Lib │ └── Makefile ├── Makefile ├── RBio │ ├── Contents.m │ ├── RBerror.c │ ├── RBfix.m │ ├── RBinstall.m │ ├── RBmake.m │ ├── RBraw.c │ ├── RBraw.m │ ├── RBread.c │ ├── RBread.m │ ├── RBreade.m │ ├── RBtype.c │ ├── RBtype.m │ ├── RBwrite.c │ ├── RBwrite.m │ ├── mywest │ └── private │ │ ├── bcsstk01.rb │ │ ├── farm.rb │ │ ├── lap_25.pse │ │ ├── lap_25.rb │ │ ├── testRB1.m │ │ ├── testRB2.m │ │ ├── testRB3.m │ │ ├── west0479.rb │ │ └── west0479.rua ├── README.txt ├── Source │ └── RBio.c └── Tcov │ ├── Makefile │ ├── RBtest.c │ ├── README.txt │ ├── mangled │ ├── 1.rb │ ├── 10.rb │ ├── 11.rb │ ├── 12.rb │ ├── 13.rb │ ├── 14.rb │ ├── 15.rb │ ├── 2.rb │ ├── 3.rb │ ├── 4.rb │ ├── 5.rb │ ├── 6.rb │ ├── 7.rb │ ├── 8.rb │ └── 9.rb │ └── matrices │ ├── Tina_DisCog.tar.gz │ ├── dwg961a.tar.gz │ ├── m4.rb │ ├── m4b.rb │ ├── mhd1280a.tar.gz │ ├── mhd1280b.tar.gz │ ├── plskz362.tar.gz │ ├── qc324.tar.gz │ ├── s4.rb │ └── west0067.tar.gz ├── README.md ├── README.md.suitesparse ├── SLIP_LU ├── Demo │ ├── .gitignore │ ├── Makefile │ ├── SLIPLU.c │ ├── demos.c │ ├── demos.h │ ├── example.c │ └── example2.c ├── Doc │ ├── ChangeLog │ ├── Makefile │ ├── SLIP_LU_UserGuide.bib │ ├── SLIP_LU_UserGuide.pdf │ ├── SLIP_LU_UserGuide.tex │ ├── appendix_A.pdf │ └── appendix_A.tex ├── ExampleMats │ ├── 10teams_mat.txt │ ├── 10teams_v.txt │ ├── NSR8K_mat.txt │ ├── NSR8K_v.txt │ ├── test_mat.txt │ └── test_rhs.txt ├── Include │ └── SLIP_LU.h ├── Lib │ └── Makefile ├── License │ ├── CONTRIBUTOR-LICENSE.txt │ ├── GPLv2.txt │ ├── lesserv3.txt │ └── license.txt ├── MATLAB │ ├── SLIP_backslash.m │ ├── SLIP_demo.m │ ├── SLIP_install.m │ ├── SLIP_mex_soln.c │ ├── SLIP_test.m │ ├── Source │ │ ├── SLIP_LU_mex.h │ │ ├── slip_get_matlab_options.c │ │ ├── slip_mex_check_for_inf.c │ │ ├── slip_mex_error.c │ │ └── slip_mex_get_A_and_b.c │ └── html │ │ └── SLIP_demo.html ├── Makefile ├── README.md ├── Source │ ├── SLIP_LU_analysis_free.c │ ├── SLIP_LU_analyze.c │ ├── SLIP_LU_factorize.c │ ├── SLIP_LU_solve.c │ ├── SLIP_backslash.c │ ├── SLIP_calloc.c │ ├── SLIP_create_default_options.c │ ├── SLIP_finalize.c │ ├── SLIP_free.c │ ├── SLIP_gmp.c │ ├── SLIP_gmp.h │ ├── SLIP_initialize.c │ ├── SLIP_initialize_expert.c │ ├── SLIP_malloc.c │ ├── SLIP_matrix_allocate.c │ ├── SLIP_matrix_check.c │ ├── SLIP_matrix_copy.c │ ├── SLIP_matrix_free.c │ ├── SLIP_matrix_nnz.c │ ├── SLIP_realloc.c │ ├── slip_back_sub.c │ ├── slip_cast_array.c │ ├── slip_cast_matrix.c │ ├── slip_check_solution.c │ ├── slip_create_mpfr_array.c │ ├── slip_create_mpq_array.c │ ├── slip_create_mpz_array.c │ ├── slip_cumsum.c │ ├── slip_dfs.c │ ├── slip_expand_double_array.c │ ├── slip_expand_mpfr_array.c │ ├── slip_expand_mpq_array.c │ ├── slip_forward_sub.c │ ├── slip_get_largest_pivot.c │ ├── slip_get_nonzero_pivot.c │ ├── slip_get_pivot.c │ ├── slip_get_smallest_pivot.c │ ├── slip_internal.h │ ├── slip_matrix_div.c │ ├── slip_matrix_mul.c │ ├── slip_permute_b.c │ ├── slip_permute_x.c │ ├── slip_reach.c │ ├── slip_ref_triangular_solve.c │ ├── slip_sparse_collapse.c │ └── slip_sparse_realloc.c └── Tcov │ ├── .gitignore │ ├── Makefile │ ├── README.txt │ ├── cov.awk │ ├── covall │ ├── covall.linux │ ├── covall.sol │ ├── cover │ ├── covs │ ├── gcovs │ ├── tcov_malloc_test.c │ ├── tcov_malloc_test.h │ └── tcov_test.c ├── SPQR ├── Demo │ ├── Makefile │ ├── README.txt │ ├── demo_colamd.sh │ ├── demo_colamd2.sh │ ├── demo_colamd3.sh │ ├── demo_metis.sh │ ├── demo_metis2.sh │ ├── demo_metis3.sh │ ├── go4.m │ ├── go5.m │ ├── qrdemo.cpp │ ├── qrdemo.m │ ├── qrdemo_gpu.cpp │ ├── qrdemo_gpu.out │ ├── qrdemo_gpu2.cpp │ ├── qrdemo_gpu3.cpp │ ├── qrdemo_out.txt │ ├── qrdemoc.c │ ├── qrdemoc_out.txt │ ├── qrsimple.cpp │ ├── qrsimplec.c │ ├── spqr_gpu.m │ ├── spqr_gpu2.m │ └── spqr_gpu3.m ├── Doc │ ├── ChangeLog │ ├── License.txt │ ├── Makefile │ ├── README.txt │ ├── algo_spqr.pdf │ ├── gpl.txt │ ├── qrgpu_paper.pdf │ ├── spqr.pdf │ ├── spqr_user_guide.bib │ ├── spqr_user_guide.pdf │ └── spqr_user_guide.tex ├── Include │ ├── SuiteSparseQR.hpp │ ├── SuiteSparseQR_C.h │ ├── SuiteSparseQR_definitions.h │ ├── spqr.hpp │ └── spqrgpu.hpp ├── Lib │ └── Makefile ├── MATLAB │ ├── Contents.m │ ├── spqr.cpp │ ├── spqr.m │ ├── spqr_demo.m │ ├── spqr_install.m │ ├── spqr_make.m │ ├── spqr_mx.cpp │ ├── spqr_mx.hpp │ ├── spqr_mx_error.c │ ├── spqr_qmult.cpp │ ├── spqr_qmult.m │ ├── spqr_singletons.cpp │ ├── spqr_singletons.m │ ├── spqr_solve.cpp │ └── spqr_solve.m ├── Makefile ├── Matrix │ ├── Franz6_id1959_aug.mtx │ ├── GD01_b.mtx │ ├── GD06_theory.mtx │ ├── GD98_a.mtx │ ├── Groebner_id2003_aug.mtx │ ├── LFAT5.mtx │ ├── README.txt │ ├── Ragusa16.mtx │ ├── Tina_AskCal.mtx │ ├── Tina_AskCal_perm.mtx │ ├── a0.mtx │ ├── a04.mtx │ ├── a1.mtx │ ├── a2.mtx │ ├── a4.mtx │ ├── arrow.mtx │ ├── ash219.mtx │ ├── b1_ss.mtx │ ├── bcspwr01.mtx │ ├── bfwa62.mtx │ ├── c2.mtx │ ├── c32.mtx │ ├── lfat5b.mtx │ ├── lp_e226.mtx │ ├── lp_e226_transposed.mtx │ ├── lp_share1b.mtx │ ├── lpi_galenet.mtx │ ├── lpi_itest6.mtx │ ├── pwr01b.mtx │ ├── r2.mtx │ ├── s32.mtx │ ├── west0067.mtx │ └── young1c.mtx ├── README.txt ├── SPQRGPU │ ├── spqrgpu_buildAssemblyMaps.cpp │ ├── spqrgpu_computeFrontStaging.cpp │ └── spqrgpu_kernel.cpp ├── Source │ ├── SuiteSparseQR.cpp │ ├── SuiteSparseQR_C.cpp │ ├── SuiteSparseQR_expert.cpp │ ├── SuiteSparseQR_qmult.cpp │ ├── spqr_1colamd.cpp │ ├── spqr_1factor.cpp │ ├── spqr_1fixed.cpp │ ├── spqr_analyze.cpp │ ├── spqr_append.cpp │ ├── spqr_assemble.cpp │ ├── spqr_cpack.cpp │ ├── spqr_csize.cpp │ ├── spqr_cumsum.cpp │ ├── spqr_debug.cpp │ ├── spqr_factorize.cpp │ ├── spqr_fcsize.cpp │ ├── spqr_freefac.cpp │ ├── spqr_freenum.cpp │ ├── spqr_freesym.cpp │ ├── spqr_front.cpp │ ├── spqr_fsize.cpp │ ├── spqr_happly.cpp │ ├── spqr_happly_work.cpp │ ├── spqr_hpinv.cpp │ ├── spqr_kernel.cpp │ ├── spqr_larftb.cpp │ ├── spqr_maxcolnorm.cpp │ ├── spqr_panel.cpp │ ├── spqr_parallel.cpp │ ├── spqr_rconvert.cpp │ ├── spqr_rcount.cpp │ ├── spqr_rhpack.cpp │ ├── spqr_rmap.cpp │ ├── spqr_rsolve.cpp │ ├── spqr_shift.cpp │ ├── spqr_stranspose1.cpp │ ├── spqr_stranspose2.cpp │ ├── spqr_tol.cpp │ ├── spqr_trapezoidal.cpp │ └── spqr_type.cpp └── Tcov │ ├── Makefile │ ├── README.txt │ ├── cov │ ├── matrix1.txt │ ├── matrixlist.txt │ ├── qrtest.cpp │ └── qrtestc.c ├── SuiteSparse_GPURuntime ├── Doc │ ├── ChangeLog │ ├── License.txt │ └── gpl.txt ├── Include │ ├── SuiteSparseGPU_Runtime.hpp │ ├── SuiteSparseGPU_Workspace.hpp │ ├── SuiteSparseGPU_debug.hpp │ ├── SuiteSparseGPU_macros.hpp │ └── SuiteSparseGPU_workspace_macros.hpp ├── Lib │ └── Makefile ├── Makefile ├── README.txt └── Source │ ├── SuiteSparseGPU_Workspace.cpp │ ├── SuiteSparseGPU_Workspace_cpuAllocators.cpp │ ├── SuiteSparseGPU_Workspace_gpuAllocators.cpp │ └── SuiteSparseGPU_Workspace_transfer.cpp ├── SuiteSparse_config ├── Makefile ├── README.txt ├── SuiteSparse_config.c ├── SuiteSparse_config.h ├── SuiteSparse_config.mk └── xerbla │ ├── Makefile │ ├── xerbla.c │ ├── xerbla.f │ └── xerbla.h ├── SuiteSparse_demo.m ├── SuiteSparse_install.m ├── SuiteSparse_paths.m ├── SuiteSparse_test.m ├── UMFPACK ├── Demo │ ├── HB │ │ ├── arc130.rua │ │ ├── can_24.psa │ │ ├── fs_183_6.rua │ │ ├── qc324.cua │ │ └── west0067.rua │ ├── Makefile │ ├── dodefault │ ├── dospd │ ├── readhb.f │ ├── readhb_nozeros.f │ ├── readhb_size.f │ ├── simple_compile │ ├── tmp │ │ └── .gitignore │ ├── umf4.c │ ├── umf4.out │ ├── umf4_f77wrapper.c │ ├── umf4_f77zwrapper.c │ ├── umf4hb.f │ ├── umf4hb.out │ ├── umf4hb64.f │ ├── umf4hb64.out │ ├── umf4zhb.f │ ├── umf4zhb.out │ ├── umfpack_di_demo.c │ ├── umfpack_di_demo.out │ ├── umfpack_di_demo.sed │ ├── umfpack_dl_demo.c │ ├── umfpack_dl_demo.out │ ├── umfpack_dl_demo.sed │ ├── umfpack_simple.c │ ├── umfpack_xx_demo.c │ ├── umfpack_zi_demo.c │ ├── umfpack_zi_demo.out │ ├── umfpack_zi_demo.sed │ ├── umfpack_zl_demo.c │ ├── umfpack_zl_demo.out │ └── umfpack_zl_demo.sed ├── Doc │ ├── ChangeLog │ ├── License.txt │ ├── Makefile │ ├── UMFPACK_QuickStart.pdf │ ├── UMFPACK_QuickStart.tex │ ├── UMFPACK_UserGuide.pdf │ ├── UMFPACK_UserGuide.stex │ ├── UserGuide.bib │ ├── UserGuide.sed1 │ ├── UserGuide.sed2 │ └── gpl.txt ├── Include │ ├── umfpack.h │ ├── umfpack_col_to_triplet.h │ ├── umfpack_defaults.h │ ├── umfpack_free_numeric.h │ ├── umfpack_free_symbolic.h │ ├── umfpack_get_determinant.h │ ├── umfpack_get_lunz.h │ ├── umfpack_get_numeric.h │ ├── umfpack_get_symbolic.h │ ├── umfpack_global.h │ ├── umfpack_load_numeric.h │ ├── umfpack_load_symbolic.h │ ├── umfpack_numeric.h │ ├── umfpack_qsymbolic.h │ ├── umfpack_report_control.h │ ├── umfpack_report_info.h │ ├── umfpack_report_matrix.h │ ├── umfpack_report_numeric.h │ ├── umfpack_report_perm.h │ ├── umfpack_report_status.h │ ├── umfpack_report_symbolic.h │ ├── umfpack_report_triplet.h │ ├── umfpack_report_vector.h │ ├── umfpack_save_numeric.h │ ├── umfpack_save_symbolic.h │ ├── umfpack_scale.h │ ├── umfpack_solve.h │ ├── umfpack_symbolic.h │ ├── umfpack_tictoc.h │ ├── umfpack_timer.h │ ├── umfpack_transpose.h │ ├── umfpack_triplet_to_col.h │ └── umfpack_wsolve.h ├── Lib │ └── Makefile ├── MATLAB │ ├── Contents.m │ ├── Makefile │ ├── lu_normest.m │ ├── luflop.m │ ├── luflopmex.c │ ├── umfpack.m │ ├── umfpack2.m │ ├── umfpack_btf.m │ ├── umfpack_demo.m │ ├── umfpack_demo.m.out │ ├── umfpack_details.m │ ├── umfpack_install.m │ ├── umfpack_make.m │ ├── umfpack_report.m │ ├── umfpack_simple.m │ ├── umfpack_simple.m.out │ ├── umfpack_solve.m │ ├── umfpack_test.m │ ├── umfpack_test2.m │ ├── umfpackmex.c │ ├── west.mat │ └── west0067_triplet ├── Makefile ├── README.txt ├── Source │ ├── cholmod_blas.h │ ├── umf_analyze.c │ ├── umf_analyze.h │ ├── umf_apply_order.c │ ├── umf_apply_order.h │ ├── umf_assemble.c │ ├── umf_assemble.h │ ├── umf_blas3_update.c │ ├── umf_blas3_update.h │ ├── umf_build_tuples.c │ ├── umf_build_tuples.h │ ├── umf_cholmod.c │ ├── umf_cholmod.h │ ├── umf_colamd.c │ ├── umf_colamd.h │ ├── umf_config.h │ ├── umf_create_element.c │ ├── umf_create_element.h │ ├── umf_dump.c │ ├── umf_dump.h │ ├── umf_extend_front.c │ ├── umf_extend_front.h │ ├── umf_free.c │ ├── umf_free.h │ ├── umf_fsize.c │ ├── umf_fsize.h │ ├── umf_garbage_collection.c │ ├── umf_garbage_collection.h │ ├── umf_get_memory.c │ ├── umf_get_memory.h │ ├── umf_grow_front.c │ ├── umf_grow_front.h │ ├── umf_init_front.c │ ├── umf_init_front.h │ ├── umf_internal.h │ ├── umf_is_permutation.c │ ├── umf_is_permutation.h │ ├── umf_kernel.c │ ├── umf_kernel.h │ ├── umf_kernel_init.c │ ├── umf_kernel_init.h │ ├── umf_kernel_wrapup.c │ ├── umf_kernel_wrapup.h │ ├── umf_local_search.c │ ├── umf_local_search.h │ ├── umf_lsolve.c │ ├── umf_lsolve.h │ ├── umf_ltsolve.c │ ├── umf_ltsolve.h │ ├── umf_malloc.c │ ├── umf_malloc.h │ ├── umf_mem_alloc_element.c │ ├── umf_mem_alloc_element.h │ ├── umf_mem_alloc_head_block.c │ ├── umf_mem_alloc_head_block.h │ ├── umf_mem_alloc_tail_block.c │ ├── umf_mem_alloc_tail_block.h │ ├── umf_mem_free_tail_block.c │ ├── umf_mem_free_tail_block.h │ ├── umf_mem_init_memoryspace.c │ ├── umf_mem_init_memoryspace.h │ ├── umf_multicompile.c │ ├── umf_realloc.c │ ├── umf_realloc.h │ ├── umf_report_perm.c │ ├── umf_report_perm.h │ ├── umf_report_vector.c │ ├── umf_report_vector.h │ ├── umf_row_search.c │ ├── umf_row_search.h │ ├── umf_scale.c │ ├── umf_scale.h │ ├── umf_scale_column.c │ ├── umf_scale_column.h │ ├── umf_set_stats.c │ ├── umf_set_stats.h │ ├── umf_singletons.c │ ├── umf_singletons.h │ ├── umf_solve.c │ ├── umf_solve.h │ ├── umf_start_front.c │ ├── umf_start_front.h │ ├── umf_store_lu.c │ ├── umf_store_lu.h │ ├── umf_symbolic_usage.c │ ├── umf_symbolic_usage.h │ ├── umf_transpose.c │ ├── umf_transpose.h │ ├── umf_triplet.c │ ├── umf_triplet.h │ ├── umf_tuple_lengths.c │ ├── umf_tuple_lengths.h │ ├── umf_usolve.c │ ├── umf_usolve.h │ ├── umf_utsolve.c │ ├── umf_utsolve.h │ ├── umf_valid_numeric.c │ ├── umf_valid_numeric.h │ ├── umf_valid_symbolic.c │ ├── umf_valid_symbolic.h │ ├── umf_version.h │ ├── umfpack_col_to_triplet.c │ ├── umfpack_defaults.c │ ├── umfpack_free_numeric.c │ ├── umfpack_free_symbolic.c │ ├── umfpack_get_determinant.c │ ├── umfpack_get_lunz.c │ ├── umfpack_get_numeric.c │ ├── umfpack_get_symbolic.c │ ├── umfpack_global.c │ ├── umfpack_load_numeric.c │ ├── umfpack_load_symbolic.c │ ├── umfpack_numeric.c │ ├── umfpack_qsymbolic.c │ ├── umfpack_report_control.c │ ├── umfpack_report_info.c │ ├── umfpack_report_matrix.c │ ├── umfpack_report_numeric.c │ ├── umfpack_report_perm.c │ ├── umfpack_report_status.c │ ├── umfpack_report_symbolic.c │ ├── umfpack_report_triplet.c │ ├── umfpack_report_vector.c │ ├── umfpack_save_numeric.c │ ├── umfpack_save_symbolic.c │ ├── umfpack_scale.c │ ├── umfpack_solve.c │ ├── umfpack_symbolic.c │ ├── umfpack_tictoc.c │ ├── umfpack_timer.c │ ├── umfpack_transpose.c │ └── umfpack_triplet_to_col.c └── Tcov │ ├── DO │ ├── DO.all │ ├── Make.1 │ ├── Make.2 │ ├── Make.3 │ ├── Make.4 │ ├── Make.5 │ ├── Make.6 │ ├── Make.7 │ ├── Make.8 │ ├── Makefile │ ├── Makefile.di │ ├── Makefile.dl │ ├── Makefile.zi │ ├── Makefile.zl │ ├── README.txt │ ├── TestMat │ ├── S_d2q06c │ ├── adlittle │ ├── arc130 │ ├── cage3 │ ├── d_dyn │ ├── galenet │ ├── matrix1 │ ├── matrix10 │ ├── matrix11 │ ├── matrix12 │ ├── matrix13 │ ├── matrix14 │ ├── matrix15 │ ├── matrix16 │ ├── matrix17 │ ├── matrix18 │ ├── matrix19 │ ├── matrix2 │ ├── matrix20 │ ├── matrix21 │ ├── matrix22 │ ├── matrix23 │ ├── matrix24 │ ├── matrix25 │ ├── matrix26 │ ├── matrix27 │ ├── matrix28 │ ├── matrix29 │ ├── matrix3 │ ├── matrix30 │ ├── matrix4 │ ├── matrix5 │ ├── matrix6 │ ├── matrix7 │ ├── matrix8 │ ├── nug07 │ └── shl0 │ ├── acov.di │ ├── acov.dl │ ├── acov.zi │ ├── acov.zl │ ├── badnum.umf │ ├── badnum2.umf │ ├── badsym.umf │ ├── badsym2.umf │ ├── cov │ ├── covall │ ├── cover.awk │ ├── debug.amd │ ├── debug.umf │ ├── ucov.di │ ├── ucov.dl │ ├── ucov.zi │ ├── ucov.zl │ └── ut.c ├── cmake ├── ComponentVersion.cmake ├── FindMETIS.cmake ├── FindPatch.cmake ├── SuiteSparseBase.cmake └── superbuild │ ├── CMakeLists.txt │ ├── README.md │ └── metis_msvc.diff ├── ssget ├── Contents.m ├── Doc │ ├── ChangeLog │ ├── License.txt │ ├── MatrixMarket.pdf │ ├── hb.pdf │ ├── nep.pdf │ └── rb.pdf ├── MM │ └── .gitignore ├── Makefile ├── RB │ └── .gitignore ├── README.txt ├── UFget.m ├── UFkinds.m ├── files │ ├── ACUSIM │ │ └── Pres_Poisson.png │ ├── AG-Monien │ │ ├── 3elt.png │ │ ├── 3elt_dual.png │ │ ├── L-9.png │ │ ├── L.png │ │ ├── airfoil1.png │ │ ├── airfoil1_dual.png │ │ ├── bfly.png │ │ ├── big_dual.png │ │ ├── biplane-9.png │ │ ├── brack2.png │ │ ├── cage.png │ │ ├── cca.png │ │ ├── ccc.png │ │ ├── crack.png │ │ ├── crack_dual.png │ │ ├── debr.png │ │ ├── diag.png │ │ ├── grid1.png │ │ ├── grid1_dual.png │ │ ├── grid2.png │ │ ├── grid2_dual.png │ │ ├── netz4504.png │ │ ├── netz4504_dual.png │ │ ├── se.png │ │ ├── shock-9.png │ │ ├── stufe-10.png │ │ ├── stufe.png │ │ ├── ukerbe1.png │ │ ├── ukerbe1_dual.png │ │ ├── wave.png │ │ ├── whitaker3.png │ │ └── whitaker3_dual.png │ ├── AMD │ │ ├── G2_circuit.png │ │ └── G3_circuit.png │ ├── ANSYS │ │ ├── Delor295K.png │ │ ├── Delor338K.png │ │ └── Delor64K.png │ ├── ATandT │ │ ├── onetone1.png │ │ ├── onetone2.png │ │ ├── pre2.png │ │ └── twotone.png │ ├── Alemdar │ │ └── Alemdar.png │ ├── Andrews │ │ └── Andrews.png │ ├── Andrianov │ │ ├── ex3sta1.png │ │ ├── fxm3_6.png │ │ ├── fxm4_6.png │ │ ├── ins2.png │ │ ├── lp1.png │ │ ├── lpl1.png │ │ ├── mip1.png │ │ ├── net100.png │ │ ├── net125.png │ │ ├── net150.png │ │ ├── net25.png │ │ ├── net4-1.png │ │ ├── net50.png │ │ ├── net75.png │ │ ├── pattern1.png │ │ └── pf2177.png │ ├── Arenas │ │ ├── PGPgiantcompo.png │ │ ├── celegans_metabolic.png │ │ ├── email.png │ │ └── jazz.png │ ├── Averous │ │ ├── epb0.png │ │ ├── epb1.png │ │ ├── epb2.png │ │ └── epb3.png │ ├── Bai │ │ ├── af23560.png │ │ ├── bfwa398.png │ │ ├── bfwa62.png │ │ ├── bfwa782.png │ │ ├── bfwb398.png │ │ ├── bfwb62.png │ │ ├── bfwb782.png │ │ ├── bwm200.png │ │ ├── bwm2000.png │ │ ├── cdde1.png │ │ ├── cdde2.png │ │ ├── cdde3.png │ │ ├── cdde4.png │ │ ├── cdde5.png │ │ ├── cdde6.png │ │ ├── ck104.png │ │ ├── ck400.png │ │ ├── ck656.png │ │ ├── cryg10000.png │ │ ├── cryg2500.png │ │ ├── dw1024.png │ │ ├── dw2048.png │ │ ├── dw256A.png │ │ ├── dw256B.png │ │ ├── dw4096.png │ │ ├── dw8192.png │ │ ├── dwa512.png │ │ ├── dwb512.png │ │ ├── dwg961a.png │ │ ├── dwg961b.png │ │ ├── lop163.png │ │ ├── mhd1280a.png │ │ ├── mhd1280b.png │ │ ├── mhd3200a.png │ │ ├── mhd3200b.png │ │ ├── mhd4800a.png │ │ ├── mhd4800b.png │ │ ├── mhda416.png │ │ ├── mhdb416.png │ │ ├── odepa400.png │ │ ├── odepb400.png │ │ ├── olm100.png │ │ ├── olm1000.png │ │ ├── olm2000.png │ │ ├── olm500.png │ │ ├── olm5000.png │ │ ├── pde225.png │ │ ├── pde2961.png │ │ ├── pde900.png │ │ ├── qc2534.png │ │ ├── qc324.png │ │ ├── qh1484.png │ │ ├── qh768.png │ │ ├── qh882.png │ │ ├── rbsa480.png │ │ ├── rbsb480.png │ │ ├── rdb1250.png │ │ ├── rdb1250l.png │ │ ├── rdb200.png │ │ ├── rdb200l.png │ │ ├── rdb2048.png │ │ ├── rdb2048_noL.png │ │ ├── rdb3200l.png │ │ ├── rdb450.png │ │ ├── rdb450l.png │ │ ├── rdb5000.png │ │ ├── rdb800l.png │ │ ├── rdb968.png │ │ ├── rw136.png │ │ ├── rw496.png │ │ ├── rw5151.png │ │ ├── tols1090.png │ │ ├── tols2000.png │ │ ├── tols340.png │ │ ├── tols4000.png │ │ ├── tols90.png │ │ ├── tub100.png │ │ └── tub1000.png │ ├── Barabasi │ │ ├── NotreDame_actors.png │ │ ├── NotreDame_www.png │ │ └── NotreDame_yeast.png │ ├── Bates │ │ ├── Chem97Zt.png │ │ ├── Chem97ZtZ.png │ │ └── sls.png │ ├── Belcastro │ │ ├── human_gene1.png │ │ ├── human_gene2.png │ │ └── mouse_gene.png │ ├── BenElechi │ │ └── BenElechi1.png │ ├── Bindel │ │ ├── ted_A.png │ │ ├── ted_AB.png │ │ ├── ted_AB_unscaled.png │ │ ├── ted_A_unscaled.png │ │ ├── ted_B.png │ │ └── ted_B_unscaled.png │ ├── Bodendiek │ │ ├── CurlCurl_0.png │ │ ├── CurlCurl_1.png │ │ ├── CurlCurl_2.png │ │ ├── CurlCurl_3.png │ │ └── CurlCurl_4.png │ ├── Boeing │ │ ├── bcsstk34.png │ │ ├── bcsstk35.png │ │ ├── bcsstk36.png │ │ ├── bcsstk37.png │ │ ├── bcsstk38.png │ │ ├── bcsstk39.png │ │ ├── bcsstm34.png │ │ ├── bcsstm35.png │ │ ├── bcsstm36.png │ │ ├── bcsstm37.png │ │ ├── bcsstm38.png │ │ ├── bcsstm39.png │ │ ├── crystk01.png │ │ ├── crystk02.png │ │ ├── crystk03.png │ │ ├── crystm01.png │ │ ├── crystm02.png │ │ ├── crystm03.png │ │ ├── ct20stif.png │ │ ├── msc00726.png │ │ ├── msc01050.png │ │ ├── msc01440.png │ │ ├── msc04515.png │ │ ├── msc10848.png │ │ ├── msc23052.png │ │ ├── nasa1824.png │ │ ├── nasa2910.png │ │ ├── nasa4704.png │ │ ├── pcrystk02.png │ │ ├── pcrystk03.png │ │ ├── pct20stif.png │ │ └── pwtk.png │ ├── Bomhof │ │ ├── circuit_1.png │ │ ├── circuit_2.png │ │ ├── circuit_3.png │ │ └── circuit_4.png │ ├── Botonakis │ │ ├── FEM_3D_thermal1.png │ │ ├── FEM_3D_thermal2.png │ │ ├── thermomech_TC.png │ │ ├── thermomech_TK.png │ │ ├── thermomech_dK.png │ │ └── thermomech_dM.png │ ├── Bourchtein │ │ ├── atmosmodd.png │ │ ├── atmosmodj.png │ │ ├── atmosmodl.png │ │ └── atmosmodm.png │ ├── Bova │ │ └── rma10.png │ ├── Brethour │ │ ├── coater1.png │ │ └── coater2.png │ ├── Brogan │ │ └── specular.png │ ├── Brunetiere │ │ └── thermal.png │ ├── Buss │ │ ├── 12month1.png │ │ └── connectus.png │ ├── Bydder │ │ ├── mri1.png │ │ └── mri2.png │ ├── CEMW │ │ ├── t2em.png │ │ ├── tmt_sym.png │ │ ├── tmt_unsym.png │ │ └── vfem.png │ ├── CPM │ │ ├── cz10228.png │ │ ├── cz1268.png │ │ ├── cz148.png │ │ ├── cz20468.png │ │ ├── cz2548.png │ │ ├── cz308.png │ │ ├── cz40948.png │ │ ├── cz5108.png │ │ └── cz628.png │ ├── Cannizzo │ │ └── sts4098.png │ ├── Castrillon │ │ └── denormal.png │ ├── Chen │ │ ├── pkustk01.png │ │ ├── pkustk02.png │ │ ├── pkustk03.png │ │ ├── pkustk04.png │ │ ├── pkustk05.png │ │ ├── pkustk06.png │ │ ├── pkustk07.png │ │ ├── pkustk08.png │ │ ├── pkustk09.png │ │ ├── pkustk10.png │ │ ├── pkustk11.png │ │ ├── pkustk12.png │ │ ├── pkustk13.png │ │ └── pkustk14.png │ ├── Chevron │ │ ├── Chevron1.png │ │ ├── Chevron2.png │ │ ├── Chevron3.png │ │ └── Chevron4.png │ ├── Clark │ │ └── tomographic1.png │ ├── Cote │ │ ├── mplate.png │ │ └── vibrobox.png │ ├── Cunningham │ │ ├── k3plates.png │ │ ├── m3plates.png │ │ ├── qa8fk.png │ │ └── qa8fm.png │ ├── Cylshell │ │ ├── s1rmq4m1.png │ │ ├── s1rmt3m1.png │ │ ├── s2rmq4m1.png │ │ ├── s2rmt3m1.png │ │ ├── s3rmq4m1.png │ │ ├── s3rmt3m1.png │ │ └── s3rmt3m3.png │ ├── DIMACS10 │ │ ├── 144.png │ │ ├── 333SP.png │ │ ├── 598a.png │ │ ├── AS365.png │ │ ├── G_n_pin_pout.png │ │ ├── M6.png │ │ ├── NACA0015.png │ │ ├── NLR.png │ │ ├── adaptive.png │ │ ├── ak2010.png │ │ ├── al2010.png │ │ ├── ar2010.png │ │ ├── asia_osm.png │ │ ├── auto.png │ │ ├── az2010.png │ │ ├── belgium_osm.png │ │ ├── ca2010.png │ │ ├── caidaRouterLevel.png │ │ ├── channel-500x100x100-b050.png │ │ ├── chesapeake.png │ │ ├── citationCiteseer.png │ │ ├── co2010.png │ │ ├── coAuthorsCiteseer.png │ │ ├── coAuthorsDBLP.png │ │ ├── coPapersCiteseer.png │ │ ├── coPapersDBLP.png │ │ ├── cs4.png │ │ ├── ct2010.png │ │ ├── cti.png │ │ ├── data.png │ │ ├── de2010.png │ │ ├── delaunay_n10.png │ │ ├── delaunay_n11.png │ │ ├── delaunay_n12.png │ │ ├── delaunay_n13.png │ │ ├── delaunay_n14.png │ │ ├── delaunay_n15.png │ │ ├── delaunay_n16.png │ │ ├── delaunay_n17.png │ │ ├── delaunay_n18.png │ │ ├── delaunay_n19.png │ │ ├── delaunay_n20.png │ │ ├── delaunay_n21.png │ │ ├── delaunay_n22.png │ │ ├── delaunay_n23.png │ │ ├── delaunay_n24.png │ │ ├── europe_osm.png │ │ ├── fe_4elt2.png │ │ ├── fe_body.png │ │ ├── fe_ocean.png │ │ ├── fe_rotor.png │ │ ├── fe_sphere.png │ │ ├── fe_tooth.png │ │ ├── fl2010.png │ │ ├── ga2010.png │ │ ├── germany_osm.png │ │ ├── great-britain_osm.png │ │ ├── hi2010.png │ │ ├── hugebubbles-00000.png │ │ ├── hugebubbles-00010.png │ │ ├── hugebubbles-00020.png │ │ ├── hugetrace-00000.png │ │ ├── hugetrace-00010.png │ │ ├── hugetrace-00020.png │ │ ├── hugetric-00000.png │ │ ├── hugetric-00010.png │ │ ├── hugetric-00020.png │ │ ├── ia2010.png │ │ ├── id2010.png │ │ ├── il2010.png │ │ ├── in2010.png │ │ ├── italy_osm.png │ │ ├── kron_g500-logn16.png │ │ ├── kron_g500-logn17.png │ │ ├── kron_g500-logn18.png │ │ ├── kron_g500-logn19.png │ │ ├── kron_g500-logn20.png │ │ ├── kron_g500-logn21.png │ │ ├── ks2010.png │ │ ├── ky2010.png │ │ ├── la2010.png │ │ ├── luxembourg_osm.png │ │ ├── m14b.png │ │ ├── ma2010.png │ │ ├── md2010.png │ │ ├── me2010.png │ │ ├── mi2010.png │ │ ├── mn2010.png │ │ ├── mo2010.png │ │ ├── ms2010.png │ │ ├── mt2010.png │ │ ├── nc2010.png │ │ ├── nd2010.png │ │ ├── ne2010.png │ │ ├── netherlands_osm.png │ │ ├── nh2010.png │ │ ├── nj2010.png │ │ ├── nm2010.png │ │ ├── nv2010.png │ │ ├── ny2010.png │ │ ├── oh2010.png │ │ ├── ok2010.png │ │ ├── or2010.png │ │ ├── pa2010.png │ │ ├── packing-500x100x100-b050.png │ │ ├── preferentialAttachment.png │ │ ├── rgg_n_2_15_s0.png │ │ ├── rgg_n_2_16_s0.png │ │ ├── rgg_n_2_17_s0.png │ │ ├── rgg_n_2_18_s0.png │ │ ├── rgg_n_2_19_s0.png │ │ ├── rgg_n_2_20_s0.png │ │ ├── rgg_n_2_21_s0.png │ │ ├── rgg_n_2_22_s0.png │ │ ├── rgg_n_2_23_s0.png │ │ ├── rgg_n_2_24_s0.png │ │ ├── ri2010.png │ │ ├── road_central.png │ │ ├── road_usa.png │ │ ├── sc2010.png │ │ ├── sd2010.png │ │ ├── smallworld.png │ │ ├── t60k.png │ │ ├── tn2010.png │ │ ├── tx2010.png │ │ ├── uk.png │ │ ├── ut2010.png │ │ ├── va2010.png │ │ ├── venturiLevel3.png │ │ ├── vsp_barth5_1Ksep_50in_5Kout.png │ │ ├── vsp_bcsstk30_500sep_10in_1Kout.png │ │ ├── vsp_befref_fxm_2_4_air02.png │ │ ├── vsp_bump2_e18_aa01_model1_crew1.png │ │ ├── vsp_c-30_data_data.png │ │ ├── vsp_c-60_data_cti_cs4.png │ │ ├── vsp_data_and_seymourl.png │ │ ├── vsp_finan512_scagr7-2c_rlfddd.png │ │ ├── vsp_mod2_pgp2_slptsk.png │ │ ├── vsp_model1_crew1_cr42_south31.png │ │ ├── vsp_msc10848_300sep_100in_1Kout.png │ │ ├── vsp_p0291_seymourl_iiasa.png │ │ ├── vsp_sctap1-2b_and_seymourl.png │ │ ├── vsp_south31_slptsk.png │ │ ├── vsp_vibrobox_scagr7-2c_rlfddd.png │ │ ├── vt2010.png │ │ ├── wa2010.png │ │ ├── wi2010.png │ │ ├── wing.png │ │ ├── wing_nodal.png │ │ ├── wv2010.png │ │ └── wy2010.png │ ├── DNVS │ │ ├── crplat2.png │ │ ├── fcondp2.png │ │ ├── fullb.png │ │ ├── halfb.png │ │ ├── m_t1.png │ │ ├── ship_001.png │ │ ├── ship_003.png │ │ ├── shipsec1.png │ │ ├── shipsec5.png │ │ ├── shipsec8.png │ │ ├── thread.png │ │ ├── trdheim.png │ │ ├── troll.png │ │ ├── tsyl201.png │ │ └── x104.png │ ├── DRIVCAV │ │ ├── cavity01.png │ │ ├── cavity02.png │ │ ├── cavity03.png │ │ ├── cavity04.png │ │ ├── cavity05.png │ │ ├── cavity06.png │ │ ├── cavity07.png │ │ ├── cavity08.png │ │ ├── cavity09.png │ │ ├── cavity10.png │ │ ├── cavity11.png │ │ ├── cavity12.png │ │ ├── cavity13.png │ │ ├── cavity14.png │ │ ├── cavity15.png │ │ ├── cavity16.png │ │ ├── cavity17.png │ │ ├── cavity18.png │ │ ├── cavity19.png │ │ ├── cavity20.png │ │ ├── cavity21.png │ │ ├── cavity22.png │ │ ├── cavity23.png │ │ ├── cavity24.png │ │ ├── cavity25.png │ │ └── cavity26.png │ ├── Dattorro │ │ ├── EternityII_A.png │ │ ├── EternityII_E.png │ │ └── EternityII_Etilde.png │ ├── Davis │ │ └── FX_March2010.png │ ├── Dehghani │ │ └── light_in_tissue.png │ ├── Dziekonski │ │ ├── dielFilterV2clx.png │ │ ├── dielFilterV2real.png │ │ ├── dielFilterV3clx.png │ │ ├── dielFilterV3real.png │ │ └── gsm_106857.png │ ├── Embree │ │ └── ifiss_mat.png │ ├── Engwirda │ │ └── airfoil_2d.png │ ├── FEMLAB │ │ ├── ns3Da.png │ │ ├── poisson2D.png │ │ ├── poisson3Da.png │ │ ├── poisson3Db.png │ │ ├── problem1.png │ │ ├── sme3Da.png │ │ ├── sme3Db.png │ │ ├── sme3Dc.png │ │ └── waveguide3D.png │ ├── FIDAP │ │ ├── ex1.png │ │ ├── ex10.png │ │ ├── ex10hs.png │ │ ├── ex11.png │ │ ├── ex12.png │ │ ├── ex13.png │ │ ├── ex14.png │ │ ├── ex15.png │ │ ├── ex18.png │ │ ├── ex19.png │ │ ├── ex2.png │ │ ├── ex20.png │ │ ├── ex21.png │ │ ├── ex22.png │ │ ├── ex23.png │ │ ├── ex24.png │ │ ├── ex25.png │ │ ├── ex26.png │ │ ├── ex27.png │ │ ├── ex28.png │ │ ├── ex29.png │ │ ├── ex3.png │ │ ├── ex31.png │ │ ├── ex32.png │ │ ├── ex33.png │ │ ├── ex35.png │ │ ├── ex36.png │ │ ├── ex37.png │ │ ├── ex4.png │ │ ├── ex40.png │ │ ├── ex5.png │ │ ├── ex6.png │ │ ├── ex7.png │ │ ├── ex8.png │ │ └── ex9.png │ ├── Fluorem │ │ ├── DK01R.png │ │ ├── GT01R.png │ │ ├── HV15R.png │ │ ├── PR02R.png │ │ └── RM07R.png │ ├── FreeFieldTechnologies │ │ └── mono_500Hz.png │ ├── Freescale │ │ ├── Freescale1.png │ │ ├── Freescale2.png │ │ ├── FullChip.png │ │ ├── circuit5M.png │ │ ├── circuit5M_dc.png │ │ ├── memchip.png │ │ ├── nxp1.png │ │ └── transient.png │ ├── GAP │ │ ├── GAP-kron.png │ │ ├── GAP-road.png │ │ ├── GAP-twitter.png │ │ ├── GAP-urand.png │ │ └── GAP-web.png │ ├── GHS_indef │ │ ├── a0nsdsil.png │ │ ├── a2nnsnsl.png │ │ ├── a5esindl.png │ │ ├── aug2d.png │ │ ├── aug2dc.png │ │ ├── aug3d.png │ │ ├── aug3dcqp.png │ │ ├── blockqp1.png │ │ ├── bloweya.png │ │ ├── bloweybl.png │ │ ├── bloweybq.png │ │ ├── bmw3_2.png │ │ ├── boyd1.png │ │ ├── boyd2.png │ │ ├── brainpc2.png │ │ ├── bratu3d.png │ │ ├── c-55.png │ │ ├── c-58.png │ │ ├── c-59.png │ │ ├── c-62ghs.png │ │ ├── c-63.png │ │ ├── c-68.png │ │ ├── c-69.png │ │ ├── c-70.png │ │ ├── c-71.png │ │ ├── c-72.png │ │ ├── cont-201.png │ │ ├── cont-300.png │ │ ├── copter2.png │ │ ├── cvxqp3.png │ │ ├── d_pretok.png │ │ ├── darcy003.png │ │ ├── dawson5.png │ │ ├── dixmaanl.png │ │ ├── dtoc.png │ │ ├── exdata_1.png │ │ ├── helm2d03.png │ │ ├── helm3d01.png │ │ ├── k1_san.png │ │ ├── laser.png │ │ ├── linverse.png │ │ ├── mario001.png │ │ ├── mario002.png │ │ ├── ncvxbqp1.png │ │ ├── ncvxqp1.png │ │ ├── ncvxqp3.png │ │ ├── ncvxqp5.png │ │ ├── ncvxqp7.png │ │ ├── ncvxqp9.png │ │ ├── olesnik0.png │ │ ├── qpband.png │ │ ├── sit100.png │ │ ├── sparsine.png │ │ ├── spmsrtls.png │ │ ├── stokes128.png │ │ ├── stokes64.png │ │ ├── stokes64s.png │ │ ├── tuma1.png │ │ ├── tuma2.png │ │ └── turon_m.png │ ├── GHS_psdef │ │ ├── apache1.png │ │ ├── apache2.png │ │ ├── audikw_1.png │ │ ├── bmw7st_1.png │ │ ├── bmwcra_1.png │ │ ├── copter1.png │ │ ├── copter2.png │ │ ├── crankseg_1.png │ │ ├── crankseg_2.png │ │ ├── cvxbqp1.png │ │ ├── finance256.png │ │ ├── ford1.png │ │ ├── ford2.png │ │ ├── gridgena.png │ │ ├── hood.png │ │ ├── inline_1.png │ │ ├── jnlbrng1.png │ │ ├── ldoor.png │ │ ├── minsurfo.png │ │ ├── obstclae.png │ │ ├── oilpan.png │ │ ├── opt1.png │ │ ├── pds10.png │ │ ├── pwt.png │ │ ├── ramage02.png │ │ ├── s3dkq4m2.png │ │ ├── s3dkt3m2.png │ │ ├── srb1.png │ │ ├── torsion1.png │ │ ├── vanbody.png │ │ ├── wathen100.png │ │ └── wathen120.png │ ├── Gaertner │ │ ├── big.png │ │ ├── nopoly.png │ │ └── pesa.png │ ├── Garon │ │ ├── garon1.png │ │ └── garon2.png │ ├── GenBank │ │ ├── kmer_A2a.png │ │ ├── kmer_P1a.png │ │ ├── kmer_U1a.png │ │ ├── kmer_V1r.png │ │ └── kmer_V2a.png │ ├── Gleich │ │ ├── flickr.png │ │ ├── minnesota.png │ │ ├── usroads-48.png │ │ ├── usroads.png │ │ ├── wb-cs-stanford.png │ │ ├── wb-edu.png │ │ ├── wikipedia-20051105.png │ │ ├── wikipedia-20060925.png │ │ ├── wikipedia-20061104.png │ │ └── wikipedia-20070206.png │ ├── Goodwin │ │ ├── Goodwin_010.png │ │ ├── Goodwin_013.png │ │ ├── Goodwin_017.png │ │ ├── Goodwin_023.png │ │ ├── Goodwin_030.png │ │ ├── Goodwin_040.png │ │ ├── Goodwin_054.png │ │ ├── Goodwin_071.png │ │ ├── Goodwin_095.png │ │ ├── Goodwin_127.png │ │ ├── goodwin.png │ │ └── rim.png │ ├── Graham │ │ └── graham1.png │ ├── Grueninger │ │ ├── windtunnel_evap2d.png │ │ └── windtunnel_evap3d.png │ ├── Grund │ │ ├── b1_ss.png │ │ ├── b2_ss.png │ │ ├── b_dyn.png │ │ ├── bayer01.png │ │ ├── bayer02.png │ │ ├── bayer03.png │ │ ├── bayer04.png │ │ ├── bayer05.png │ │ ├── bayer06.png │ │ ├── bayer07.png │ │ ├── bayer08.png │ │ ├── bayer09.png │ │ ├── bayer10.png │ │ ├── d_dyn.png │ │ ├── d_dyn1.png │ │ ├── d_ss.png │ │ ├── meg1.png │ │ ├── meg4.png │ │ ├── poli.png │ │ ├── poli3.png │ │ ├── poli4.png │ │ └── poli_large.png │ ├── Gset │ │ ├── G1.png │ │ ├── G10.png │ │ ├── G11.png │ │ ├── G12.png │ │ ├── G13.png │ │ ├── G14.png │ │ ├── G15.png │ │ ├── G16.png │ │ ├── G17.png │ │ ├── G18.png │ │ ├── G19.png │ │ ├── G2.png │ │ ├── G20.png │ │ ├── G21.png │ │ ├── G22.png │ │ ├── G23.png │ │ ├── G24.png │ │ ├── G25.png │ │ ├── G26.png │ │ ├── G27.png │ │ ├── G28.png │ │ ├── G29.png │ │ ├── G3.png │ │ ├── G30.png │ │ ├── G31.png │ │ ├── G32.png │ │ ├── G33.png │ │ ├── G34.png │ │ ├── G35.png │ │ ├── G36.png │ │ ├── G37.png │ │ ├── G38.png │ │ ├── G39.png │ │ ├── G4.png │ │ ├── G40.png │ │ ├── G41.png │ │ ├── G42.png │ │ ├── G43.png │ │ ├── G44.png │ │ ├── G45.png │ │ ├── G46.png │ │ ├── G47.png │ │ ├── G48.png │ │ ├── G49.png │ │ ├── G5.png │ │ ├── G50.png │ │ ├── G51.png │ │ ├── G52.png │ │ ├── G53.png │ │ ├── G54.png │ │ ├── G55.png │ │ ├── G56.png │ │ ├── G57.png │ │ ├── G58.png │ │ ├── G59.png │ │ ├── G6.png │ │ ├── G60.png │ │ ├── G61.png │ │ ├── G62.png │ │ ├── G63.png │ │ ├── G64.png │ │ ├── G65.png │ │ ├── G66.png │ │ ├── G67.png │ │ ├── G7.png │ │ ├── G8.png │ │ └── G9.png │ ├── Guettel │ │ ├── TEM152078.png │ │ ├── TEM181302.png │ │ └── TEM27623.png │ ├── Gupta │ │ ├── gupta1.png │ │ ├── gupta2.png │ │ └── gupta3.png │ ├── HB │ │ ├── 1138_bus.png │ │ ├── 494_bus.png │ │ ├── 662_bus.png │ │ ├── 685_bus.png │ │ ├── abb313.png │ │ ├── arc130.png │ │ ├── ash219.png │ │ ├── ash292.png │ │ ├── ash331.png │ │ ├── ash608.png │ │ ├── ash85.png │ │ ├── ash958.png │ │ ├── bcspwr01.png │ │ ├── bcspwr02.png │ │ ├── bcspwr03.png │ │ ├── bcspwr04.png │ │ ├── bcspwr05.png │ │ ├── bcspwr06.png │ │ ├── bcspwr07.png │ │ ├── bcspwr08.png │ │ ├── bcspwr09.png │ │ ├── bcspwr10.png │ │ ├── bcsstk01.png │ │ ├── bcsstk02.png │ │ ├── bcsstk03.png │ │ ├── bcsstk04.png │ │ ├── bcsstk05.png │ │ ├── bcsstk06.png │ │ ├── bcsstk07.png │ │ ├── bcsstk08.png │ │ ├── bcsstk09.png │ │ ├── bcsstk10.png │ │ ├── bcsstk11.png │ │ ├── bcsstk12.png │ │ ├── bcsstk13.png │ │ ├── bcsstk14.png │ │ ├── bcsstk15.png │ │ ├── bcsstk16.png │ │ ├── bcsstk17.png │ │ ├── bcsstk18.png │ │ ├── bcsstk19.png │ │ ├── bcsstk20.png │ │ ├── bcsstk21.png │ │ ├── bcsstk22.png │ │ ├── bcsstk23.png │ │ ├── bcsstk24.png │ │ ├── bcsstk25.png │ │ ├── bcsstk26.png │ │ ├── bcsstk27.png │ │ ├── bcsstk28.png │ │ ├── bcsstk29.png │ │ ├── bcsstk30.png │ │ ├── bcsstk31.png │ │ ├── bcsstk32.png │ │ ├── bcsstk33.png │ │ ├── bcsstm01.png │ │ ├── bcsstm02.png │ │ ├── bcsstm03.png │ │ ├── bcsstm04.png │ │ ├── bcsstm05.png │ │ ├── bcsstm06.png │ │ ├── bcsstm07.png │ │ ├── bcsstm08.png │ │ ├── bcsstm09.png │ │ ├── bcsstm10.png │ │ ├── bcsstm11.png │ │ ├── bcsstm12.png │ │ ├── bcsstm13.png │ │ ├── bcsstm19.png │ │ ├── bcsstm20.png │ │ ├── bcsstm21.png │ │ ├── bcsstm22.png │ │ ├── bcsstm23.png │ │ ├── bcsstm24.png │ │ ├── bcsstm25.png │ │ ├── bcsstm26.png │ │ ├── bcsstm27.png │ │ ├── beacxc.png │ │ ├── beaflw.png │ │ ├── beause.png │ │ ├── blckhole.png │ │ ├── bp_0.png │ │ ├── bp_1000.png │ │ ├── bp_1200.png │ │ ├── bp_1400.png │ │ ├── bp_1600.png │ │ ├── bp_200.png │ │ ├── bp_400.png │ │ ├── bp_600.png │ │ ├── bp_800.png │ │ ├── can_1054.png │ │ ├── can_1072.png │ │ ├── can_144.png │ │ ├── can_161.png │ │ ├── can_187.png │ │ ├── can_229.png │ │ ├── can_24.png │ │ ├── can_256.png │ │ ├── can_268.png │ │ ├── can_292.png │ │ ├── can_445.png │ │ ├── can_61.png │ │ ├── can_62.png │ │ ├── can_634.png │ │ ├── can_715.png │ │ ├── can_73.png │ │ ├── can_838.png │ │ ├── can_96.png │ │ ├── cegb2802.png │ │ ├── cegb2919.png │ │ ├── cegb3024.png │ │ ├── cegb3306.png │ │ ├── curtis54.png │ │ ├── dwt_1005.png │ │ ├── dwt_1007.png │ │ ├── dwt_1242.png │ │ ├── dwt_162.png │ │ ├── dwt_193.png │ │ ├── dwt_198.png │ │ ├── dwt_209.png │ │ ├── dwt_221.png │ │ ├── dwt_234.png │ │ ├── dwt_245.png │ │ ├── dwt_2680.png │ │ ├── dwt_307.png │ │ ├── dwt_310.png │ │ ├── dwt_346.png │ │ ├── dwt_361.png │ │ ├── dwt_419.png │ │ ├── dwt_492.png │ │ ├── dwt_503.png │ │ ├── dwt_512.png │ │ ├── dwt_59.png │ │ ├── dwt_592.png │ │ ├── dwt_607.png │ │ ├── dwt_66.png │ │ ├── dwt_72.png │ │ ├── dwt_758.png │ │ ├── dwt_869.png │ │ ├── dwt_87.png │ │ ├── dwt_878.png │ │ ├── dwt_918.png │ │ ├── dwt_992.png │ │ ├── eris1176.png │ │ ├── fs_183_1.png │ │ ├── fs_183_3.png │ │ ├── fs_183_4.png │ │ ├── fs_183_6.png │ │ ├── fs_541_1.png │ │ ├── fs_541_2.png │ │ ├── fs_541_3.png │ │ ├── fs_541_4.png │ │ ├── fs_680_1.png │ │ ├── fs_680_2.png │ │ ├── fs_680_3.png │ │ ├── fs_760_1.png │ │ ├── fs_760_2.png │ │ ├── fs_760_3.png │ │ ├── gemat1.png │ │ ├── gemat11.png │ │ ├── gemat12.png │ │ ├── gent113.png │ │ ├── gr_30_30.png │ │ ├── gre_1107.png │ │ ├── gre_115.png │ │ ├── gre_185.png │ │ ├── gre_216a.png │ │ ├── gre_216b.png │ │ ├── gre_343.png │ │ ├── gre_512.png │ │ ├── hor_131.png │ │ ├── ibm32.png │ │ ├── illc1033.png │ │ ├── illc1850.png │ │ ├── impcol_a.png │ │ ├── impcol_b.png │ │ ├── impcol_c.png │ │ ├── impcol_d.png │ │ ├── impcol_e.png │ │ ├── jagmesh1.png │ │ ├── jagmesh2.png │ │ ├── jagmesh3.png │ │ ├── jagmesh4.png │ │ ├── jagmesh5.png │ │ ├── jagmesh6.png │ │ ├── jagmesh7.png │ │ ├── jagmesh8.png │ │ ├── jagmesh9.png │ │ ├── jgl009.png │ │ ├── jgl011.png │ │ ├── jpwh_991.png │ │ ├── lap_25.png │ │ ├── lns_131.png │ │ ├── lns_3937.png │ │ ├── lns_511.png │ │ ├── lnsp3937.png │ │ ├── lnsp_131.png │ │ ├── lnsp_511.png │ │ ├── lock1074.png │ │ ├── lock2232.png │ │ ├── lock3491.png │ │ ├── lock_700.png │ │ ├── lshp1009.png │ │ ├── lshp1270.png │ │ ├── lshp1561.png │ │ ├── lshp1882.png │ │ ├── lshp2233.png │ │ ├── lshp2614.png │ │ ├── lshp3025.png │ │ ├── lshp3466.png │ │ ├── lshp_265.png │ │ ├── lshp_406.png │ │ ├── lshp_577.png │ │ ├── lshp_778.png │ │ ├── lund_a.png │ │ ├── lund_b.png │ │ ├── mahindas.png │ │ ├── man_5976.png │ │ ├── mbeacxc.png │ │ ├── mbeaflw.png │ │ ├── mbeause.png │ │ ├── mcca.png │ │ ├── mcfe.png │ │ ├── nnc1374.png │ │ ├── nnc261.png │ │ ├── nnc666.png │ │ ├── nos1.png │ │ ├── nos2.png │ │ ├── nos3.png │ │ ├── nos4.png │ │ ├── nos5.png │ │ ├── nos6.png │ │ ├── nos7.png │ │ ├── orani678.png │ │ ├── orsirr_1.png │ │ ├── orsirr_2.png │ │ ├── orsreg_1.png │ │ ├── plat1919.png │ │ ├── plat362.png │ │ ├── plsk1919.png │ │ ├── plskz362.png │ │ ├── pores_1.png │ │ ├── pores_2.png │ │ ├── pores_3.png │ │ ├── psmigr_1.png │ │ ├── psmigr_2.png │ │ ├── psmigr_3.png │ │ ├── rgg010.png │ │ ├── saylr1.png │ │ ├── saylr3.png │ │ ├── saylr4.png │ │ ├── sherman1.png │ │ ├── sherman2.png │ │ ├── sherman3.png │ │ ├── sherman4.png │ │ ├── sherman5.png │ │ ├── shl_0.png │ │ ├── shl_200.png │ │ ├── shl_400.png │ │ ├── sstmodel.png │ │ ├── steam1.png │ │ ├── steam2.png │ │ ├── steam3.png │ │ ├── str_0.png │ │ ├── str_200.png │ │ ├── str_400.png │ │ ├── str_600.png │ │ ├── watt_1.png │ │ ├── watt_2.png │ │ ├── well1033.png │ │ ├── well1850.png │ │ ├── west0067.png │ │ ├── west0132.png │ │ ├── west0156.png │ │ ├── west0167.png │ │ ├── west0381.png │ │ ├── west0479.png │ │ ├── west0497.png │ │ ├── west0655.png │ │ ├── west0989.png │ │ ├── west1505.png │ │ ├── west2021.png │ │ ├── will199.png │ │ ├── will57.png │ │ ├── wm1.png │ │ ├── wm2.png │ │ ├── wm3.png │ │ ├── young1c.png │ │ ├── young2c.png │ │ ├── young3c.png │ │ ├── young4c.png │ │ └── zenios.png │ ├── HVDC │ │ ├── hvdc1.png │ │ └── hvdc2.png │ ├── Hamm │ │ ├── add20.png │ │ ├── add32.png │ │ ├── bcircuit.png │ │ ├── hcircuit.png │ │ ├── memplus.png │ │ └── scircuit.png │ ├── Hamrle │ │ ├── Hamrle1.png │ │ ├── Hamrle2.png │ │ └── Hamrle3.png │ ├── Hardesty │ │ ├── Hardesty1.png │ │ ├── Hardesty2.png │ │ └── Hardesty3.png │ ├── Harvard_Seismology │ │ └── JP.png │ ├── Hohn │ │ ├── fd12.png │ │ ├── fd15.png │ │ ├── fd18.png │ │ ├── sinc12.png │ │ ├── sinc15.png │ │ └── sinc18.png │ ├── Hollinger │ │ ├── g7jac010.png │ │ ├── g7jac010sc.png │ │ ├── g7jac020.png │ │ ├── g7jac020sc.png │ │ ├── g7jac040.png │ │ ├── g7jac040sc.png │ │ ├── g7jac050sc.png │ │ ├── g7jac060.png │ │ ├── g7jac060sc.png │ │ ├── g7jac080.png │ │ ├── g7jac080sc.png │ │ ├── g7jac100.png │ │ ├── g7jac100sc.png │ │ ├── g7jac120.png │ │ ├── g7jac120sc.png │ │ ├── g7jac140.png │ │ ├── g7jac140sc.png │ │ ├── g7jac160.png │ │ ├── g7jac160sc.png │ │ ├── g7jac180.png │ │ ├── g7jac180sc.png │ │ ├── g7jac200.png │ │ ├── g7jac200sc.png │ │ ├── jan99jac020.png │ │ ├── jan99jac020sc.png │ │ ├── jan99jac040.png │ │ ├── jan99jac040sc.png │ │ ├── jan99jac060.png │ │ ├── jan99jac060sc.png │ │ ├── jan99jac080.png │ │ ├── jan99jac080sc.png │ │ ├── jan99jac100.png │ │ ├── jan99jac100sc.png │ │ ├── jan99jac120.png │ │ ├── jan99jac120sc.png │ │ ├── mark3jac020.png │ │ ├── mark3jac020sc.png │ │ ├── mark3jac040.png │ │ ├── mark3jac040sc.png │ │ ├── mark3jac060.png │ │ ├── mark3jac060sc.png │ │ ├── mark3jac080.png │ │ ├── mark3jac080sc.png │ │ ├── mark3jac100.png │ │ ├── mark3jac100sc.png │ │ ├── mark3jac120.png │ │ ├── mark3jac120sc.png │ │ ├── mark3jac140.png │ │ └── mark3jac140sc.png │ ├── IBM_Austin │ │ └── coupled.png │ ├── IBM_EDA │ │ ├── ckt11752_dc_1.png │ │ ├── ckt11752_tr_0.png │ │ ├── dc1.png │ │ ├── dc2.png │ │ ├── dc3.png │ │ ├── trans4.png │ │ └── trans5.png │ ├── INPRO │ │ └── msdoor.png │ ├── IPSO │ │ ├── HTC_336_4438.png │ │ ├── HTC_336_9129.png │ │ ├── OPF_10000.png │ │ ├── OPF_3754.png │ │ ├── OPF_6000.png │ │ ├── TSC_OPF_1047.png │ │ └── TSC_OPF_300.png │ ├── JGD_BIBD │ │ ├── bibd_11_5.png │ │ ├── bibd_12_4.png │ │ ├── bibd_12_5.png │ │ ├── bibd_13_6.png │ │ ├── bibd_14_7.png │ │ ├── bibd_15_3.png │ │ ├── bibd_15_7.png │ │ ├── bibd_16_8.png │ │ ├── bibd_17_3.png │ │ ├── bibd_17_4.png │ │ ├── bibd_17_4b.png │ │ ├── bibd_17_8.png │ │ ├── bibd_18_9.png │ │ ├── bibd_19_9.png │ │ ├── bibd_20_10.png │ │ ├── bibd_22_8.png │ │ ├── bibd_49_3.png │ │ ├── bibd_81_2.png │ │ ├── bibd_81_3.png │ │ ├── bibd_9_3.png │ │ └── bibd_9_5.png │ ├── JGD_CAG │ │ ├── CAG_mat1916.png │ │ ├── CAG_mat364.png │ │ └── CAG_mat72.png │ ├── JGD_Forest │ │ ├── TF10.png │ │ ├── TF11.png │ │ ├── TF12.png │ │ ├── TF13.png │ │ ├── TF14.png │ │ ├── TF15.png │ │ ├── TF16.png │ │ ├── TF17.png │ │ ├── TF18.png │ │ └── TF19.png │ ├── JGD_Franz │ │ ├── Franz1.png │ │ ├── Franz10.png │ │ ├── Franz11.png │ │ ├── Franz2.png │ │ ├── Franz3.png │ │ ├── Franz4.png │ │ ├── Franz5.png │ │ ├── Franz6.png │ │ ├── Franz7.png │ │ ├── Franz8.png │ │ └── Franz9.png │ ├── JGD_G5 │ │ ├── IG5-10.png │ │ ├── IG5-11.png │ │ ├── IG5-12.png │ │ ├── IG5-13.png │ │ ├── IG5-14.png │ │ ├── IG5-15.png │ │ ├── IG5-16.png │ │ ├── IG5-17.png │ │ ├── IG5-18.png │ │ ├── IG5-6.png │ │ ├── IG5-7.png │ │ ├── IG5-8.png │ │ └── IG5-9.png │ ├── JGD_GL6 │ │ ├── GL6_D_10.png │ │ ├── GL6_D_6.png │ │ ├── GL6_D_7.png │ │ ├── GL6_D_8.png │ │ └── GL6_D_9.png │ ├── JGD_GL7d │ │ ├── GL7d10.png │ │ ├── GL7d11.png │ │ ├── GL7d12.png │ │ ├── GL7d13.png │ │ ├── GL7d14.png │ │ ├── GL7d15.png │ │ ├── GL7d16.png │ │ ├── GL7d17.png │ │ ├── GL7d18.png │ │ ├── GL7d19.png │ │ ├── GL7d20.png │ │ ├── GL7d21.png │ │ ├── GL7d22.png │ │ ├── GL7d23.png │ │ ├── GL7d24.png │ │ ├── GL7d25.png │ │ └── GL7d26.png │ ├── JGD_Groebner │ │ ├── HFE18_96_in.png │ │ ├── c8_mat11.png │ │ ├── c8_mat11_I.png │ │ ├── f855_mat9.png │ │ ├── f855_mat9_I.png │ │ ├── rkat7_mat5.png │ │ ├── robot24c1_mat5.png │ │ └── robot24c1_mat5_J.png │ ├── JGD_Homology │ │ ├── D6-6.png │ │ ├── ch3-3-b1.png │ │ ├── ch3-3-b2.png │ │ ├── ch4-4-b1.png │ │ ├── ch4-4-b2.png │ │ ├── ch4-4-b3.png │ │ ├── ch5-5-b1.png │ │ ├── ch5-5-b2.png │ │ ├── ch5-5-b3.png │ │ ├── ch5-5-b4.png │ │ ├── ch6-6-b1.png │ │ ├── ch6-6-b2.png │ │ ├── ch6-6-b3.png │ │ ├── ch6-6-b4.png │ │ ├── ch6-6-b5.png │ │ ├── ch7-6-b1.png │ │ ├── ch7-6-b2.png │ │ ├── ch7-6-b3.png │ │ ├── ch7-6-b4.png │ │ ├── ch7-6-b5.png │ │ ├── ch7-7-b1.png │ │ ├── ch7-7-b2.png │ │ ├── ch7-7-b5.png │ │ ├── ch7-8-b1.png │ │ ├── ch7-8-b2.png │ │ ├── ch7-8-b3.png │ │ ├── ch7-8-b4.png │ │ ├── ch7-8-b5.png │ │ ├── ch7-9-b1.png │ │ ├── ch7-9-b2.png │ │ ├── ch7-9-b3.png │ │ ├── ch7-9-b4.png │ │ ├── ch7-9-b5.png │ │ ├── ch8-8-b1.png │ │ ├── ch8-8-b2.png │ │ ├── ch8-8-b3.png │ │ ├── ch8-8-b4.png │ │ ├── ch8-8-b5.png │ │ ├── cis-n4c6-b1.png │ │ ├── cis-n4c6-b13.png │ │ ├── cis-n4c6-b14.png │ │ ├── cis-n4c6-b15.png │ │ ├── cis-n4c6-b2.png │ │ ├── cis-n4c6-b3.png │ │ ├── cis-n4c6-b4.png │ │ ├── klein-b1.png │ │ ├── klein-b2.png │ │ ├── lutz30-23-b6.png │ │ ├── m133-b3.png │ │ ├── mk10-b1.png │ │ ├── mk10-b2.png │ │ ├── mk10-b3.png │ │ ├── mk10-b4.png │ │ ├── mk11-b1.png │ │ ├── mk11-b2.png │ │ ├── mk11-b3.png │ │ ├── mk11-b4.png │ │ ├── mk11-b4b.png │ │ ├── mk12-b1.png │ │ ├── mk12-b2.png │ │ ├── mk12-b3.png │ │ ├── mk12-b4.png │ │ ├── mk12-b5.png │ │ ├── mk13-b5.png │ │ ├── mk9-b1.png │ │ ├── mk9-b2.png │ │ ├── mk9-b3.png │ │ ├── n2c6-b1.png │ │ ├── n2c6-b10.png │ │ ├── n2c6-b2.png │ │ ├── n2c6-b3.png │ │ ├── n2c6-b4.png │ │ ├── n2c6-b5.png │ │ ├── n2c6-b6.png │ │ ├── n2c6-b7.png │ │ ├── n2c6-b8.png │ │ ├── n2c6-b9.png │ │ ├── n3c4-b1.png │ │ ├── n3c4-b2.png │ │ ├── n3c4-b3.png │ │ ├── n3c4-b4.png │ │ ├── n3c5-b1.png │ │ ├── n3c5-b2.png │ │ ├── n3c5-b3.png │ │ ├── n3c5-b4.png │ │ ├── n3c5-b5.png │ │ ├── n3c5-b6.png │ │ ├── n3c5-b7.png │ │ ├── n3c6-b1.png │ │ ├── n3c6-b10.png │ │ ├── n3c6-b11.png │ │ ├── n3c6-b2.png │ │ ├── n3c6-b3.png │ │ ├── n3c6-b4.png │ │ ├── n3c6-b5.png │ │ ├── n3c6-b6.png │ │ ├── n3c6-b7.png │ │ ├── n3c6-b8.png │ │ ├── n3c6-b9.png │ │ ├── n4c5-b1.png │ │ ├── n4c5-b10.png │ │ ├── n4c5-b11.png │ │ ├── n4c5-b2.png │ │ ├── n4c5-b3.png │ │ ├── n4c5-b4.png │ │ ├── n4c5-b5.png │ │ ├── n4c5-b6.png │ │ ├── n4c5-b7.png │ │ ├── n4c5-b8.png │ │ ├── n4c5-b9.png │ │ ├── n4c6-b1.png │ │ ├── n4c6-b10.png │ │ ├── n4c6-b11.png │ │ ├── n4c6-b12.png │ │ ├── n4c6-b13.png │ │ ├── n4c6-b14.png │ │ ├── n4c6-b15.png │ │ ├── n4c6-b2.png │ │ ├── n4c6-b3.png │ │ ├── n4c6-b4.png │ │ ├── n4c6-b5.png │ │ ├── n4c6-b6.png │ │ ├── n4c6-b7.png │ │ ├── n4c6-b8.png │ │ ├── n4c6-b9.png │ │ ├── shar_te2-b1.png │ │ ├── shar_te2-b2.png │ │ └── shar_te2-b3.png │ ├── JGD_Kocay │ │ ├── Trec10.png │ │ ├── Trec11.png │ │ ├── Trec12.png │ │ ├── Trec13.png │ │ ├── Trec14.png │ │ ├── Trec3.png │ │ ├── Trec4.png │ │ ├── Trec5.png │ │ ├── Trec6.png │ │ ├── Trec7.png │ │ ├── Trec8.png │ │ └── Trec9.png │ ├── JGD_Margulies │ │ ├── cat_ears_2_1.png │ │ ├── cat_ears_2_4.png │ │ ├── cat_ears_3_1.png │ │ ├── cat_ears_3_4.png │ │ ├── cat_ears_4_1.png │ │ ├── cat_ears_4_4.png │ │ ├── flower_4_1.png │ │ ├── flower_4_4.png │ │ ├── flower_5_1.png │ │ ├── flower_5_4.png │ │ ├── flower_7_1.png │ │ ├── flower_7_4.png │ │ ├── flower_8_1.png │ │ ├── flower_8_4.png │ │ ├── kneser_10_4_1.png │ │ ├── kneser_6_2_1.png │ │ ├── kneser_8_3_1.png │ │ ├── wheel_3_1.png │ │ ├── wheel_4_1.png │ │ ├── wheel_5_1.png │ │ ├── wheel_601.png │ │ ├── wheel_6_1.png │ │ └── wheel_7_1.png │ ├── JGD_Relat │ │ ├── rel3.png │ │ ├── rel4.png │ │ ├── rel5.png │ │ ├── rel6.png │ │ ├── rel7.png │ │ ├── rel8.png │ │ ├── rel9.png │ │ ├── relat3.png │ │ ├── relat4.png │ │ ├── relat5.png │ │ ├── relat6.png │ │ ├── relat7.png │ │ ├── relat7b.png │ │ ├── relat8.png │ │ └── relat9.png │ ├── JGD_SL6 │ │ ├── D_10.png │ │ ├── D_11.png │ │ ├── D_5.png │ │ ├── D_6.png │ │ ├── D_7.png │ │ ├── D_8.png │ │ └── D_9.png │ ├── JGD_SPG │ │ ├── 08blocks.png │ │ ├── EX1.png │ │ ├── EX2.png │ │ ├── EX3.png │ │ ├── EX4.png │ │ ├── EX5.png │ │ └── EX6.png │ ├── JGD_Taha │ │ ├── abtaha1.png │ │ └── abtaha2.png │ ├── JGD_Trefethen │ │ ├── Trefethen_150.png │ │ ├── Trefethen_20.png │ │ ├── Trefethen_200.png │ │ ├── Trefethen_2000.png │ │ ├── Trefethen_20000.png │ │ ├── Trefethen_20000b.png │ │ ├── Trefethen_200b.png │ │ ├── Trefethen_20b.png │ │ ├── Trefethen_300.png │ │ ├── Trefethen_500.png │ │ └── Trefethen_700.png │ ├── Janna │ │ ├── Bump_2911.png │ │ ├── CoupCons3D.png │ │ ├── Cube_Coup_dt0.png │ │ ├── Cube_Coup_dt6.png │ │ ├── Emilia_923.png │ │ ├── Fault_639.png │ │ ├── Flan_1565.png │ │ ├── Geo_1438.png │ │ ├── Hook_1498.png │ │ ├── Long_Coup_dt0.png │ │ ├── Long_Coup_dt6.png │ │ ├── ML_Geer.png │ │ ├── ML_Laplace.png │ │ ├── PFlow_742.png │ │ ├── Queen_4147.png │ │ ├── Serena.png │ │ ├── StocF-1465.png │ │ └── Transport.png │ ├── Kamvar │ │ ├── Stanford.png │ │ └── Stanford_Berkeley.png │ ├── Kemelmacher │ │ └── Kemelmacher.png │ ├── Kim │ │ ├── kim1.png │ │ └── kim2.png │ ├── Koutsovasilis │ │ ├── F1.png │ │ └── F2.png │ ├── LAW │ │ ├── amazon-2008.png │ │ ├── arabic-2005.png │ │ ├── cnr-2000.png │ │ ├── dblp-2010.png │ │ ├── enron.png │ │ ├── eu-2005.png │ │ ├── hollywood-2009.png │ │ ├── in-2004.png │ │ ├── indochina-2004.png │ │ ├── it-2004.png │ │ ├── ljournal-2008.png │ │ ├── sk-2005.png │ │ ├── uk-2002.png │ │ ├── uk-2005.png │ │ └── webbase-2001.png │ ├── LPnetlib │ │ ├── lp_25fv47.png │ │ ├── lp_80bau3b.png │ │ ├── lp_adlittle.png │ │ ├── lp_afiro.png │ │ ├── lp_agg.png │ │ ├── lp_agg2.png │ │ ├── lp_agg3.png │ │ ├── lp_bandm.png │ │ ├── lp_beaconfd.png │ │ ├── lp_blend.png │ │ ├── lp_bnl1.png │ │ ├── lp_bnl2.png │ │ ├── lp_bore3d.png │ │ ├── lp_brandy.png │ │ ├── lp_capri.png │ │ ├── lp_cre_a.png │ │ ├── lp_cre_b.png │ │ ├── lp_cre_c.png │ │ ├── lp_cre_d.png │ │ ├── lp_cycle.png │ │ ├── lp_czprob.png │ │ ├── lp_d2q06c.png │ │ ├── lp_d6cube.png │ │ ├── lp_degen2.png │ │ ├── lp_degen3.png │ │ ├── lp_dfl001.png │ │ ├── lp_e226.png │ │ ├── lp_etamacro.png │ │ ├── lp_fffff800.png │ │ ├── lp_finnis.png │ │ ├── lp_fit1d.png │ │ ├── lp_fit1p.png │ │ ├── lp_fit2d.png │ │ ├── lp_fit2p.png │ │ ├── lp_ganges.png │ │ ├── lp_gfrd_pnc.png │ │ ├── lp_greenbea.png │ │ ├── lp_greenbeb.png │ │ ├── lp_grow15.png │ │ ├── lp_grow22.png │ │ ├── lp_grow7.png │ │ ├── lp_israel.png │ │ ├── lp_kb2.png │ │ ├── lp_ken_07.png │ │ ├── lp_ken_11.png │ │ ├── lp_ken_13.png │ │ ├── lp_ken_18.png │ │ ├── lp_lotfi.png │ │ ├── lp_maros.png │ │ ├── lp_maros_r7.png │ │ ├── lp_modszk1.png │ │ ├── lp_osa_07.png │ │ ├── lp_osa_14.png │ │ ├── lp_osa_30.png │ │ ├── lp_osa_60.png │ │ ├── lp_pds_02.png │ │ ├── lp_pds_06.png │ │ ├── lp_pds_10.png │ │ ├── lp_pds_20.png │ │ ├── lp_perold.png │ │ ├── lp_pilot.png │ │ ├── lp_pilot4.png │ │ ├── lp_pilot87.png │ │ ├── lp_pilot_ja.png │ │ ├── lp_pilot_we.png │ │ ├── lp_pilotnov.png │ │ ├── lp_qap12.png │ │ ├── lp_qap15.png │ │ ├── lp_qap8.png │ │ ├── lp_recipe.png │ │ ├── lp_sc105.png │ │ ├── lp_sc205.png │ │ ├── lp_sc50a.png │ │ ├── lp_sc50b.png │ │ ├── lp_scagr25.png │ │ ├── lp_scagr7.png │ │ ├── lp_scfxm1.png │ │ ├── lp_scfxm2.png │ │ ├── lp_scfxm3.png │ │ ├── lp_scorpion.png │ │ ├── lp_scrs8.png │ │ ├── lp_scsd1.png │ │ ├── lp_scsd6.png │ │ ├── lp_scsd8.png │ │ ├── lp_sctap1.png │ │ ├── lp_sctap2.png │ │ ├── lp_sctap3.png │ │ ├── lp_share1b.png │ │ ├── lp_share2b.png │ │ ├── lp_shell.png │ │ ├── lp_ship04l.png │ │ ├── lp_ship04s.png │ │ ├── lp_ship08l.png │ │ ├── lp_ship08s.png │ │ ├── lp_ship12l.png │ │ ├── lp_ship12s.png │ │ ├── lp_sierra.png │ │ ├── lp_stair.png │ │ ├── lp_standata.png │ │ ├── lp_standgub.png │ │ ├── lp_standmps.png │ │ ├── lp_stocfor1.png │ │ ├── lp_stocfor2.png │ │ ├── lp_stocfor3.png │ │ ├── lp_truss.png │ │ ├── lp_tuff.png │ │ ├── lp_vtp_base.png │ │ ├── lp_wood1p.png │ │ ├── lp_woodw.png │ │ ├── lpi_bgdbg1.png │ │ ├── lpi_bgetam.png │ │ ├── lpi_bgindy.png │ │ ├── lpi_bgprtr.png │ │ ├── lpi_box1.png │ │ ├── lpi_ceria3d.png │ │ ├── lpi_chemcom.png │ │ ├── lpi_cplex1.png │ │ ├── lpi_cplex2.png │ │ ├── lpi_ex72a.png │ │ ├── lpi_ex73a.png │ │ ├── lpi_forest6.png │ │ ├── lpi_galenet.png │ │ ├── lpi_gosh.png │ │ ├── lpi_gran.png │ │ ├── lpi_greenbea.png │ │ ├── lpi_itest2.png │ │ ├── lpi_itest6.png │ │ ├── lpi_klein1.png │ │ ├── lpi_klein2.png │ │ ├── lpi_klein3.png │ │ ├── lpi_mondou2.png │ │ ├── lpi_pang.png │ │ ├── lpi_pilot4i.png │ │ ├── lpi_qual.png │ │ ├── lpi_reactor.png │ │ ├── lpi_refinery.png │ │ ├── lpi_vol1.png │ │ └── lpi_woodinfe.png │ ├── Langemyr │ │ └── comsol.png │ ├── LeGresley │ │ ├── LeGresley_2508.png │ │ ├── LeGresley_4908.png │ │ └── LeGresley_87936.png │ ├── Lee │ │ ├── fem_filter.png │ │ └── fem_hifreq_circuit.png │ ├── Li │ │ ├── li.png │ │ └── pli.png │ ├── Lin │ │ └── Lin.png │ ├── LiuWenzhuo │ │ └── powersim.png │ ├── Lourakis │ │ └── bundle1.png │ ├── Lucifora │ │ ├── cell1.png │ │ └── cell2.png │ ├── Luong │ │ ├── photogrammetry.png │ │ └── photogrammetry2.png │ ├── MAWI │ │ ├── mawi_201512012345.png │ │ ├── mawi_201512020000.png │ │ ├── mawi_201512020030.png │ │ ├── mawi_201512020130.png │ │ └── mawi_201512020330.png │ ├── MKS │ │ └── fp.png │ ├── Mallya │ │ ├── lhr01.png │ │ ├── lhr02.png │ │ ├── lhr04.png │ │ ├── lhr04c.png │ │ ├── lhr07.png │ │ ├── lhr07c.png │ │ ├── lhr10.png │ │ ├── lhr10c.png │ │ ├── lhr11.png │ │ ├── lhr11c.png │ │ ├── lhr14.png │ │ ├── lhr14c.png │ │ ├── lhr17.png │ │ ├── lhr17c.png │ │ ├── lhr34.png │ │ ├── lhr34c.png │ │ ├── lhr71.png │ │ └── lhr71c.png │ ├── Mancktelow │ │ └── viscorocks.png │ ├── Marini │ │ └── eurqsa.png │ ├── Martin │ │ └── marine1.png │ ├── MathWorks │ │ ├── Harvard500.png │ │ ├── Kaufhold.png │ │ ├── Kuu.png │ │ ├── Muu.png │ │ ├── Pd.png │ │ ├── Pd_rhs.png │ │ ├── QRpivot.png │ │ ├── Sieber.png │ │ ├── TS.png │ │ ├── pivtol.png │ │ └── tomography.png │ ├── MaxPlanck │ │ ├── shallow_water1.png │ │ └── shallow_water2.png │ ├── Mazaheri │ │ └── bundle_adj.png │ ├── McRae │ │ ├── ecology1.png │ │ └── ecology2.png │ ├── Meng │ │ └── iChem_Jacobian.png │ ├── Meszaros │ │ ├── aa01.png │ │ ├── aa03.png │ │ ├── aa3.png │ │ ├── aa4.png │ │ ├── aa5.png │ │ ├── aa6.png │ │ ├── air02.png │ │ ├── air03.png │ │ ├── air04.png │ │ ├── air05.png │ │ ├── air06.png │ │ ├── aircraft.png │ │ ├── bas1lp.png │ │ ├── baxter.png │ │ ├── car4.png │ │ ├── cari.png │ │ ├── cep1.png │ │ ├── ch.png │ │ ├── co5.png │ │ ├── co9.png │ │ ├── complex.png │ │ ├── cq5.png │ │ ├── cq9.png │ │ ├── cr42.png │ │ ├── crew1.png │ │ ├── dano3mip.png │ │ ├── dbic1.png │ │ ├── dbir1.png │ │ ├── dbir2.png │ │ ├── de063155.png │ │ ├── de063157.png │ │ ├── de080285.png │ │ ├── degme.png │ │ ├── delf.png │ │ ├── deter0.png │ │ ├── deter1.png │ │ ├── deter2.png │ │ ├── deter3.png │ │ ├── deter4.png │ │ ├── deter5.png │ │ ├── deter6.png │ │ ├── deter7.png │ │ ├── deter8.png │ │ ├── df2177.png │ │ ├── e18.png │ │ ├── ex3sta1.png │ │ ├── farm.png │ │ ├── fxm2-16.png │ │ ├── fxm2-6.png │ │ ├── fxm3_16.png │ │ ├── fxm3_6.png │ │ ├── fxm4_6.png │ │ ├── gams10a.png │ │ ├── gams10am.png │ │ ├── gams30a.png │ │ ├── gams30am.png │ │ ├── gams60am.png │ │ ├── gas11.png │ │ ├── ge.png │ │ ├── gen.png │ │ ├── gen1.png │ │ ├── gen2.png │ │ ├── gen4.png │ │ ├── iiasa.png │ │ ├── iprob.png │ │ ├── jendrec1.png │ │ ├── karted.png │ │ ├── kl02.png │ │ ├── kleemin.png │ │ ├── l30.png │ │ ├── l9.png │ │ ├── large.png │ │ ├── lp22.png │ │ ├── lpl2.png │ │ ├── lpl3.png │ │ ├── mod2.png │ │ ├── model1.png │ │ ├── model10.png │ │ ├── model2.png │ │ ├── model3.png │ │ ├── model4.png │ │ ├── model5.png │ │ ├── model6.png │ │ ├── model7.png │ │ ├── model8.png │ │ ├── model9.png │ │ ├── nemsafm.png │ │ ├── nemscem.png │ │ ├── nemsemm1.png │ │ ├── nemsemm2.png │ │ ├── nemspmm1.png │ │ ├── nemspmm2.png │ │ ├── nemswrld.png │ │ ├── nl.png │ │ ├── nsct.png │ │ ├── nsic.png │ │ ├── nsir.png │ │ ├── nw14.png │ │ ├── p0033.png │ │ ├── p0040.png │ │ ├── p010.png │ │ ├── p0201.png │ │ ├── p0282.png │ │ ├── p0291.png │ │ ├── p05.png │ │ ├── p0548.png │ │ ├── p2756.png │ │ ├── p6000.png │ │ ├── pcb1000.png │ │ ├── pcb3000.png │ │ ├── pf2177.png │ │ ├── pgp2.png │ │ ├── plddb.png │ │ ├── pltexpa.png │ │ ├── primagaz.png │ │ ├── problem.png │ │ ├── progas.png │ │ ├── qiulp.png │ │ ├── r05.png │ │ ├── rat.png │ │ ├── refine.png │ │ ├── rlfddd.png │ │ ├── rlfdual.png │ │ ├── rlfprim.png │ │ ├── rosen1.png │ │ ├── rosen10.png │ │ ├── rosen2.png │ │ ├── rosen7.png │ │ ├── rosen8.png │ │ ├── route.png │ │ ├── sc205-2r.png │ │ ├── scagr7-2b.png │ │ ├── scagr7-2c.png │ │ ├── scagr7-2r.png │ │ ├── scfxm1-2b.png │ │ ├── scfxm1-2r.png │ │ ├── scrs8-2b.png │ │ ├── scrs8-2c.png │ │ ├── scrs8-2r.png │ │ ├── scsd8-2b.png │ │ ├── scsd8-2c.png │ │ ├── scsd8-2r.png │ │ ├── sctap1-2b.png │ │ ├── sctap1-2c.png │ │ ├── sctap1-2r.png │ │ ├── seymourl.png │ │ ├── slptsk.png │ │ ├── small.png │ │ ├── south31.png │ │ ├── stat96v1.png │ │ ├── stat96v2.png │ │ ├── stat96v3.png │ │ ├── stat96v4.png │ │ ├── stat96v5.png │ │ ├── stoch_aircraft.png │ │ ├── stormg2-125.png │ │ ├── stormg2-27.png │ │ ├── stormg2-8.png │ │ ├── t0331-4l.png │ │ ├── testbig.png │ │ ├── tp-6.png │ │ ├── ts-palko.png │ │ ├── ulevimin.png │ │ ├── us04.png │ │ ├── world.png │ │ └── zed.png │ ├── Mittelmann │ │ ├── cont11_l.png │ │ ├── cont1_l.png │ │ ├── fome11.png │ │ ├── fome12.png │ │ ├── fome13.png │ │ ├── fome20.png │ │ ├── fome21.png │ │ ├── neos.png │ │ ├── neos1.png │ │ ├── neos2.png │ │ ├── neos3.png │ │ ├── nug08-3rd.png │ │ ├── pds-100.png │ │ ├── pds-30.png │ │ ├── pds-40.png │ │ ├── pds-50.png │ │ ├── pds-60.png │ │ ├── pds-70.png │ │ ├── pds-80.png │ │ ├── pds-90.png │ │ ├── rail2586.png │ │ ├── rail4284.png │ │ ├── rail507.png │ │ ├── rail516.png │ │ ├── rail582.png │ │ ├── sgpf5y6.png │ │ ├── spal_004.png │ │ ├── stormG2_1000.png │ │ ├── watson_1.png │ │ └── watson_2.png │ ├── Moqri │ │ └── MISKnowledgeMap.png │ ├── Morandini │ │ ├── robot.png │ │ ├── rotor1.png │ │ └── rotor2.png │ ├── Muite │ │ ├── Chebyshev1.png │ │ ├── Chebyshev2.png │ │ ├── Chebyshev3.png │ │ └── Chebyshev4.png │ ├── Mulvey │ │ ├── finan512.png │ │ └── pfinan512.png │ ├── Mycielski │ │ ├── mycielskian10.png │ │ ├── mycielskian11.png │ │ ├── mycielskian12.png │ │ ├── mycielskian13.png │ │ ├── mycielskian14.png │ │ ├── mycielskian15.png │ │ ├── mycielskian16.png │ │ ├── mycielskian17.png │ │ ├── mycielskian18.png │ │ ├── mycielskian19.png │ │ ├── mycielskian2.png │ │ ├── mycielskian20.png │ │ ├── mycielskian3.png │ │ ├── mycielskian4.png │ │ ├── mycielskian5.png │ │ ├── mycielskian6.png │ │ ├── mycielskian7.png │ │ ├── mycielskian8.png │ │ └── mycielskian9.png │ ├── ND │ │ ├── nd12k.png │ │ ├── nd24k.png │ │ ├── nd3k.png │ │ └── nd6k.png │ ├── NYPA │ │ ├── Maragal_1.png │ │ ├── Maragal_2.png │ │ ├── Maragal_3.png │ │ ├── Maragal_4.png │ │ ├── Maragal_5.png │ │ ├── Maragal_6.png │ │ ├── Maragal_7.png │ │ └── Maragal_8.png │ ├── Nasa │ │ ├── barth.png │ │ ├── barth4.png │ │ ├── barth5.png │ │ ├── nasa1824.png │ │ ├── nasa2146.png │ │ ├── nasa2910.png │ │ ├── nasa4704.png │ │ ├── nasasrb.png │ │ ├── pwt.png │ │ ├── shuttle_eddy.png │ │ └── skirt.png │ ├── Negre │ │ └── dendrimer.png │ ├── Nemeth │ │ ├── nemeth01.png │ │ ├── nemeth02.png │ │ ├── nemeth03.png │ │ ├── nemeth04.png │ │ ├── nemeth05.png │ │ ├── nemeth06.png │ │ ├── nemeth07.png │ │ ├── nemeth08.png │ │ ├── nemeth09.png │ │ ├── nemeth10.png │ │ ├── nemeth11.png │ │ ├── nemeth12.png │ │ ├── nemeth13.png │ │ ├── nemeth14.png │ │ ├── nemeth15.png │ │ ├── nemeth16.png │ │ ├── nemeth17.png │ │ ├── nemeth18.png │ │ ├── nemeth19.png │ │ ├── nemeth20.png │ │ ├── nemeth21.png │ │ ├── nemeth22.png │ │ ├── nemeth23.png │ │ ├── nemeth24.png │ │ ├── nemeth25.png │ │ └── nemeth26.png │ ├── Newman │ │ ├── adjnoun.png │ │ ├── as-22july06.png │ │ ├── astro-ph.png │ │ ├── celegansneural.png │ │ ├── cond-mat-2003.png │ │ ├── cond-mat-2005.png │ │ ├── cond-mat.png │ │ ├── dolphins.png │ │ ├── football.png │ │ ├── hep-th.png │ │ ├── karate.png │ │ ├── lesmis.png │ │ ├── netscience.png │ │ ├── polblogs.png │ │ ├── polbooks.png │ │ └── power.png │ ├── Norris │ │ ├── fv1.png │ │ ├── fv2.png │ │ ├── fv3.png │ │ ├── heart1.png │ │ ├── heart2.png │ │ ├── heart3.png │ │ ├── lung1.png │ │ ├── lung2.png │ │ ├── stomach.png │ │ ├── torso1.png │ │ ├── torso2.png │ │ └── torso3.png │ ├── Oberwolfach │ │ ├── LF10.png │ │ ├── LF10000.png │ │ ├── LFAT5.png │ │ ├── LFAT5000.png │ │ ├── bone010.png │ │ ├── boneS01.png │ │ ├── boneS10.png │ │ ├── chipcool0.png │ │ ├── chipcool1.png │ │ ├── filter2D.png │ │ ├── filter3D.png │ │ ├── flowmeter0.png │ │ ├── flowmeter5.png │ │ ├── gas_sensor.png │ │ ├── gyro.png │ │ ├── gyro_k.png │ │ ├── gyro_m.png │ │ ├── inlet.png │ │ ├── piston.png │ │ ├── rail_1357.png │ │ ├── rail_20209.png │ │ ├── rail_5177.png │ │ ├── rail_79841.png │ │ ├── spiral.png │ │ ├── t2dah.png │ │ ├── t2dah_a.png │ │ ├── t2dah_e.png │ │ ├── t2dal.png │ │ ├── t2dal_a.png │ │ ├── t2dal_bci.png │ │ ├── t2dal_e.png │ │ ├── t3dh.png │ │ ├── t3dh_a.png │ │ ├── t3dh_e.png │ │ ├── t3dl.png │ │ ├── t3dl_a.png │ │ ├── t3dl_e.png │ │ └── windscreen.png │ ├── Okunbor │ │ ├── aft01.png │ │ └── aft02.png │ ├── PARSEC │ │ ├── CO.png │ │ ├── Ga10As10H30.png │ │ ├── Ga19As19H42.png │ │ ├── Ga3As3H12.png │ │ ├── Ga41As41H72.png │ │ ├── GaAsH6.png │ │ ├── Ge87H76.png │ │ ├── Ge99H100.png │ │ ├── H2O.png │ │ ├── Na5.png │ │ ├── Si10H16.png │ │ ├── Si2.png │ │ ├── Si34H36.png │ │ ├── Si41Ge41H72.png │ │ ├── Si5H12.png │ │ ├── Si87H76.png │ │ ├── SiH4.png │ │ ├── SiNa.png │ │ ├── SiO.png │ │ ├── SiO2.png │ │ └── benzene.png │ ├── POLYFLOW │ │ ├── invextr1_new.png │ │ └── mixtank_new.png │ ├── Pajek │ │ ├── CSphd.png │ │ ├── California.png │ │ ├── Cities.png │ │ ├── EAT_RS.png │ │ ├── EAT_SR.png │ │ ├── EPA.png │ │ ├── EVA.png │ │ ├── Erdos02.png │ │ ├── Erdos971.png │ │ ├── Erdos972.png │ │ ├── Erdos981.png │ │ ├── Erdos982.png │ │ ├── Erdos991.png │ │ ├── Erdos992.png │ │ ├── FA.png │ │ ├── GD00_a.png │ │ ├── GD00_c.png │ │ ├── GD01_Acap.png │ │ ├── GD01_a.png │ │ ├── GD01_b.png │ │ ├── GD01_c.png │ │ ├── GD02_a.png │ │ ├── GD02_b.png │ │ ├── GD06_Java.png │ │ ├── GD06_theory.png │ │ ├── GD95_a.png │ │ ├── GD95_b.png │ │ ├── GD95_c.png │ │ ├── GD96_a.png │ │ ├── GD96_b.png │ │ ├── GD96_c.png │ │ ├── GD96_d.png │ │ ├── GD97_a.png │ │ ├── GD97_b.png │ │ ├── GD97_c.png │ │ ├── GD98_a.png │ │ ├── GD98_b.png │ │ ├── GD98_c.png │ │ ├── GD99_b.png │ │ ├── GD99_c.png │ │ ├── GlossGT.png │ │ ├── HEP-th-new.png │ │ ├── HEP-th.png │ │ ├── IMDB.png │ │ ├── Journals.png │ │ ├── Kohonen.png │ │ ├── Lederberg.png │ │ ├── ODLIS.png │ │ ├── Ragusa16.png │ │ ├── Ragusa18.png │ │ ├── Reuters911.png │ │ ├── Roget.png │ │ ├── Sandi_authors.png │ │ ├── Sandi_sandi.png │ │ ├── SciMet.png │ │ ├── SmaGri.png │ │ ├── SmallW.png │ │ ├── Stranke94.png │ │ ├── Tina_AskCal.png │ │ ├── Tina_AskCog.png │ │ ├── Tina_DisCal.png │ │ ├── Tina_DisCog.png │ │ ├── USAir97.png │ │ ├── USpowerGrid.png │ │ ├── Wordnet3.png │ │ ├── WorldCities.png │ │ ├── Zewail.png │ │ ├── dictionary28.png │ │ ├── divorce.png │ │ ├── foldoc.png │ │ ├── football.png │ │ ├── geom.png │ │ ├── internet.png │ │ ├── patents.png │ │ ├── patents_main.png │ │ └── yeast.png │ ├── Pereyra │ │ └── landmark.png │ ├── Pothen │ │ ├── barth.png │ │ ├── barth4.png │ │ ├── barth5.png │ │ ├── bodyy4.png │ │ ├── bodyy5.png │ │ ├── bodyy6.png │ │ ├── commanche_dual.png │ │ ├── mesh1e1.png │ │ ├── mesh1em1.png │ │ ├── mesh1em6.png │ │ ├── mesh2e1.png │ │ ├── mesh2em5.png │ │ ├── mesh3e1.png │ │ ├── mesh3em5.png │ │ ├── onera_dual.png │ │ ├── pwt.png │ │ ├── shuttle_eddy.png │ │ ├── skirt.png │ │ ├── sphere2.png │ │ ├── sphere3.png │ │ ├── tandem_dual.png │ │ └── tandem_vtx.png │ ├── PowerSystem │ │ └── power197k.png │ ├── Precima │ │ └── analytics.png │ ├── Priebel │ │ ├── 130bit.png │ │ ├── 145bit.png │ │ ├── 162bit.png │ │ ├── 176bit.png │ │ ├── 192bit.png │ │ └── 208bit.png │ ├── Puri │ │ ├── ABACUS_shell_hd.png │ │ ├── ABACUS_shell_ld.png │ │ ├── ABACUS_shell_md.png │ │ └── ABACUS_shell_ud.png │ ├── QCD │ │ ├── conf5_0-4x4-10.png │ │ ├── conf5_0-4x4-14.png │ │ ├── conf5_0-4x4-18.png │ │ ├── conf5_0-4x4-22.png │ │ ├── conf5_0-4x4-26.png │ │ ├── conf5_4-8x8-05.png │ │ ├── conf5_4-8x8-10.png │ │ ├── conf5_4-8x8-15.png │ │ ├── conf5_4-8x8-20.png │ │ ├── conf6_0-4x4-20.png │ │ ├── conf6_0-4x4-30.png │ │ ├── conf6_0-8x8-20.png │ │ ├── conf6_0-8x8-30.png │ │ └── conf6_0-8x8-80.png │ ├── QLi │ │ ├── crashbasis.png │ │ ├── largebasis.png │ │ └── majorbasis.png │ ├── QY │ │ ├── case39.png │ │ └── case9.png │ ├── Qaplib │ │ ├── lp_nug05.png │ │ ├── lp_nug06.png │ │ ├── lp_nug07.png │ │ ├── lp_nug08.png │ │ ├── lp_nug12.png │ │ ├── lp_nug15.png │ │ ├── lp_nug20.png │ │ └── lp_nug30.png │ ├── Quaglino │ │ ├── viscoplastic1.png │ │ └── viscoplastic2.png │ ├── Rajat │ │ ├── Raj1.png │ │ ├── rajat01.png │ │ ├── rajat02.png │ │ ├── rajat03.png │ │ ├── rajat04.png │ │ ├── rajat05.png │ │ ├── rajat06.png │ │ ├── rajat07.png │ │ ├── rajat08.png │ │ ├── rajat09.png │ │ ├── rajat10.png │ │ ├── rajat11.png │ │ ├── rajat12.png │ │ ├── rajat13.png │ │ ├── rajat14.png │ │ ├── rajat15.png │ │ ├── rajat16.png │ │ ├── rajat17.png │ │ ├── rajat18.png │ │ ├── rajat19.png │ │ ├── rajat20.png │ │ ├── rajat21.png │ │ ├── rajat22.png │ │ ├── rajat23.png │ │ ├── rajat24.png │ │ ├── rajat25.png │ │ ├── rajat26.png │ │ ├── rajat27.png │ │ ├── rajat28.png │ │ ├── rajat29.png │ │ ├── rajat30.png │ │ └── rajat31.png │ ├── Raju │ │ └── laminar_duct3D.png │ ├── Rommes │ │ ├── M10PI_n.png │ │ ├── M10PI_n1.png │ │ ├── M20PI_n.png │ │ ├── M20PI_n1.png │ │ ├── M40PI_n.png │ │ ├── M40PI_n1.png │ │ ├── M80PI_n.png │ │ ├── M80PI_n1.png │ │ ├── S10PI_n.png │ │ ├── S10PI_n1.png │ │ ├── S20PI_n.png │ │ ├── S20PI_n1.png │ │ ├── S40PI_n.png │ │ ├── S40PI_n1.png │ │ ├── S80PI_n.png │ │ ├── S80PI_n1.png │ │ ├── bauru5727.png │ │ ├── bips07_1693.png │ │ ├── bips07_1998.png │ │ ├── bips07_2476.png │ │ ├── bips07_3078.png │ │ ├── bips98_1142.png │ │ ├── bips98_1450.png │ │ ├── bips98_606.png │ │ ├── descriptor_xingo6u.png │ │ ├── juba40k.png │ │ ├── mimo28x28_system.png │ │ ├── mimo46x46_system.png │ │ ├── mimo8x8_system.png │ │ ├── nopss_11k.png │ │ ├── ww_36_pmec_36.png │ │ ├── ww_vref_6405.png │ │ ├── xingo3012.png │ │ ├── xingo_afonso_itaipu.png │ │ └── zeros_nopss_13k.png │ ├── Ronis │ │ ├── xenon1.png │ │ └── xenon2.png │ ├── Rost │ │ └── RFdevice.png │ ├── Rothberg │ │ ├── 3dtube.png │ │ ├── cfd1.png │ │ ├── cfd2.png │ │ ├── gearbox.png │ │ ├── struct3.png │ │ └── struct4.png │ ├── Rucci │ │ └── Rucci1.png │ ├── Rudnyi │ │ └── water_tank.png │ ├── SNAP │ │ ├── CollegeMsg.png │ │ ├── Oregon-1.png │ │ ├── Oregon-2.png │ │ ├── amazon0302.png │ │ ├── amazon0312.png │ │ ├── amazon0505.png │ │ ├── amazon0601.png │ │ ├── as-735.png │ │ ├── as-Skitter.png │ │ ├── as-caida.png │ │ ├── ca-AstroPh.png │ │ ├── ca-CondMat.png │ │ ├── ca-GrQc.png │ │ ├── ca-HepPh.png │ │ ├── ca-HepTh.png │ │ ├── cit-HepPh.png │ │ ├── cit-HepTh.png │ │ ├── cit-Patents.png │ │ ├── com-Amazon.png │ │ ├── com-DBLP.png │ │ ├── com-Friendster.png │ │ ├── com-LiveJournal.png │ │ ├── com-Orkut.png │ │ ├── com-Youtube.png │ │ ├── email-Enron.png │ │ ├── email-Eu-core-temporal.png │ │ ├── email-Eu-core.png │ │ ├── email-EuAll.png │ │ ├── higgs-twitter.png │ │ ├── loc-Brightkite.png │ │ ├── loc-Gowalla.png │ │ ├── p2p-Gnutella04.png │ │ ├── p2p-Gnutella05.png │ │ ├── p2p-Gnutella06.png │ │ ├── p2p-Gnutella08.png │ │ ├── p2p-Gnutella09.png │ │ ├── p2p-Gnutella24.png │ │ ├── p2p-Gnutella25.png │ │ ├── p2p-Gnutella30.png │ │ ├── p2p-Gnutella31.png │ │ ├── roadNet-CA.png │ │ ├── roadNet-PA.png │ │ ├── roadNet-TX.png │ │ ├── soc-Epinions1.png │ │ ├── soc-LiveJournal1.png │ │ ├── soc-Pokec.png │ │ ├── soc-Slashdot0811.png │ │ ├── soc-Slashdot0902.png │ │ ├── soc-sign-Slashdot081106.png │ │ ├── soc-sign-Slashdot090216.png │ │ ├── soc-sign-Slashdot090221.png │ │ ├── soc-sign-bitcoin-alpha.png │ │ ├── soc-sign-bitcoin-otc.png │ │ ├── soc-sign-epinions.png │ │ ├── sx-askubuntu.png │ │ ├── sx-mathoverflow.png │ │ ├── sx-stackoverflow.png │ │ ├── sx-superuser.png │ │ ├── twitter7.png │ │ ├── web-BerkStan.png │ │ ├── web-Google.png │ │ ├── web-NotreDame.png │ │ ├── web-Stanford.png │ │ ├── wiki-RfA.png │ │ ├── wiki-Talk.png │ │ ├── wiki-Vote.png │ │ ├── wiki-talk-temporal.png │ │ └── wiki-topcats.png │ ├── Sandia │ │ ├── ASIC_100k.png │ │ ├── ASIC_100ks.png │ │ ├── ASIC_320k.png │ │ ├── ASIC_320ks.png │ │ ├── ASIC_680k.png │ │ ├── ASIC_680ks.png │ │ ├── adder_dcop_01.png │ │ ├── adder_dcop_02.png │ │ ├── adder_dcop_03.png │ │ ├── adder_dcop_04.png │ │ ├── adder_dcop_05.png │ │ ├── adder_dcop_06.png │ │ ├── adder_dcop_07.png │ │ ├── adder_dcop_08.png │ │ ├── adder_dcop_09.png │ │ ├── adder_dcop_10.png │ │ ├── adder_dcop_11.png │ │ ├── adder_dcop_12.png │ │ ├── adder_dcop_13.png │ │ ├── adder_dcop_14.png │ │ ├── adder_dcop_15.png │ │ ├── adder_dcop_16.png │ │ ├── adder_dcop_17.png │ │ ├── adder_dcop_18.png │ │ ├── adder_dcop_19.png │ │ ├── adder_dcop_20.png │ │ ├── adder_dcop_21.png │ │ ├── adder_dcop_22.png │ │ ├── adder_dcop_23.png │ │ ├── adder_dcop_24.png │ │ ├── adder_dcop_25.png │ │ ├── adder_dcop_26.png │ │ ├── adder_dcop_27.png │ │ ├── adder_dcop_28.png │ │ ├── adder_dcop_29.png │ │ ├── adder_dcop_30.png │ │ ├── adder_dcop_31.png │ │ ├── adder_dcop_32.png │ │ ├── adder_dcop_33.png │ │ ├── adder_dcop_34.png │ │ ├── adder_dcop_35.png │ │ ├── adder_dcop_36.png │ │ ├── adder_dcop_37.png │ │ ├── adder_dcop_38.png │ │ ├── adder_dcop_39.png │ │ ├── adder_dcop_40.png │ │ ├── adder_dcop_41.png │ │ ├── adder_dcop_42.png │ │ ├── adder_dcop_43.png │ │ ├── adder_dcop_44.png │ │ ├── adder_dcop_45.png │ │ ├── adder_dcop_46.png │ │ ├── adder_dcop_47.png │ │ ├── adder_dcop_48.png │ │ ├── adder_dcop_49.png │ │ ├── adder_dcop_50.png │ │ ├── adder_dcop_51.png │ │ ├── adder_dcop_52.png │ │ ├── adder_dcop_53.png │ │ ├── adder_dcop_54.png │ │ ├── adder_dcop_55.png │ │ ├── adder_dcop_56.png │ │ ├── adder_dcop_57.png │ │ ├── adder_dcop_58.png │ │ ├── adder_dcop_59.png │ │ ├── adder_dcop_60.png │ │ ├── adder_dcop_61.png │ │ ├── adder_dcop_62.png │ │ ├── adder_dcop_63.png │ │ ├── adder_dcop_64.png │ │ ├── adder_dcop_65.png │ │ ├── adder_dcop_66.png │ │ ├── adder_dcop_67.png │ │ ├── adder_dcop_68.png │ │ ├── adder_dcop_69.png │ │ ├── adder_trans_01.png │ │ ├── adder_trans_02.png │ │ ├── fpga_dcop_01.png │ │ ├── fpga_dcop_02.png │ │ ├── fpga_dcop_03.png │ │ ├── fpga_dcop_04.png │ │ ├── fpga_dcop_05.png │ │ ├── fpga_dcop_06.png │ │ ├── fpga_dcop_07.png │ │ ├── fpga_dcop_08.png │ │ ├── fpga_dcop_09.png │ │ ├── fpga_dcop_10.png │ │ ├── fpga_dcop_11.png │ │ ├── fpga_dcop_12.png │ │ ├── fpga_dcop_13.png │ │ ├── fpga_dcop_14.png │ │ ├── fpga_dcop_15.png │ │ ├── fpga_dcop_16.png │ │ ├── fpga_dcop_17.png │ │ ├── fpga_dcop_18.png │ │ ├── fpga_dcop_19.png │ │ ├── fpga_dcop_20.png │ │ ├── fpga_dcop_21.png │ │ ├── fpga_dcop_22.png │ │ ├── fpga_dcop_23.png │ │ ├── fpga_dcop_24.png │ │ ├── fpga_dcop_25.png │ │ ├── fpga_dcop_26.png │ │ ├── fpga_dcop_27.png │ │ ├── fpga_dcop_28.png │ │ ├── fpga_dcop_29.png │ │ ├── fpga_dcop_30.png │ │ ├── fpga_dcop_31.png │ │ ├── fpga_dcop_32.png │ │ ├── fpga_dcop_33.png │ │ ├── fpga_dcop_34.png │ │ ├── fpga_dcop_35.png │ │ ├── fpga_dcop_36.png │ │ ├── fpga_dcop_37.png │ │ ├── fpga_dcop_38.png │ │ ├── fpga_dcop_39.png │ │ ├── fpga_dcop_40.png │ │ ├── fpga_dcop_41.png │ │ ├── fpga_dcop_42.png │ │ ├── fpga_dcop_43.png │ │ ├── fpga_dcop_44.png │ │ ├── fpga_dcop_45.png │ │ ├── fpga_dcop_46.png │ │ ├── fpga_dcop_47.png │ │ ├── fpga_dcop_48.png │ │ ├── fpga_dcop_49.png │ │ ├── fpga_dcop_50.png │ │ ├── fpga_dcop_51.png │ │ ├── fpga_trans_01.png │ │ ├── fpga_trans_02.png │ │ ├── init_adder1.png │ │ ├── mult_dcop_01.png │ │ ├── mult_dcop_02.png │ │ ├── mult_dcop_03.png │ │ ├── oscil_dcop_01.png │ │ ├── oscil_dcop_02.png │ │ ├── oscil_dcop_03.png │ │ ├── oscil_dcop_04.png │ │ ├── oscil_dcop_05.png │ │ ├── oscil_dcop_06.png │ │ ├── oscil_dcop_07.png │ │ ├── oscil_dcop_08.png │ │ ├── oscil_dcop_09.png │ │ ├── oscil_dcop_10.png │ │ ├── oscil_dcop_11.png │ │ ├── oscil_dcop_12.png │ │ ├── oscil_dcop_13.png │ │ ├── oscil_dcop_14.png │ │ ├── oscil_dcop_15.png │ │ ├── oscil_dcop_16.png │ │ ├── oscil_dcop_17.png │ │ ├── oscil_dcop_18.png │ │ ├── oscil_dcop_19.png │ │ ├── oscil_dcop_20.png │ │ ├── oscil_dcop_21.png │ │ ├── oscil_dcop_22.png │ │ ├── oscil_dcop_23.png │ │ ├── oscil_dcop_24.png │ │ ├── oscil_dcop_25.png │ │ ├── oscil_dcop_26.png │ │ ├── oscil_dcop_27.png │ │ ├── oscil_dcop_28.png │ │ ├── oscil_dcop_29.png │ │ ├── oscil_dcop_30.png │ │ ├── oscil_dcop_31.png │ │ ├── oscil_dcop_32.png │ │ ├── oscil_dcop_33.png │ │ ├── oscil_dcop_34.png │ │ ├── oscil_dcop_35.png │ │ ├── oscil_dcop_36.png │ │ ├── oscil_dcop_37.png │ │ ├── oscil_dcop_38.png │ │ ├── oscil_dcop_39.png │ │ ├── oscil_dcop_40.png │ │ ├── oscil_dcop_41.png │ │ ├── oscil_dcop_42.png │ │ ├── oscil_dcop_43.png │ │ ├── oscil_dcop_44.png │ │ ├── oscil_dcop_45.png │ │ ├── oscil_dcop_46.png │ │ ├── oscil_dcop_47.png │ │ ├── oscil_dcop_48.png │ │ ├── oscil_dcop_49.png │ │ ├── oscil_dcop_50.png │ │ ├── oscil_dcop_51.png │ │ ├── oscil_dcop_52.png │ │ ├── oscil_dcop_53.png │ │ ├── oscil_dcop_54.png │ │ ├── oscil_dcop_55.png │ │ ├── oscil_dcop_56.png │ │ ├── oscil_dcop_57.png │ │ └── oscil_trans_01.png │ ├── Sanghavi │ │ └── ecl32.png │ ├── Schenk │ │ ├── nlpkkt120.png │ │ ├── nlpkkt160.png │ │ ├── nlpkkt200.png │ │ ├── nlpkkt240.png │ │ └── nlpkkt80.png │ ├── Schenk_AFE │ │ ├── af_0_k101.png │ │ ├── af_1_k101.png │ │ ├── af_2_k101.png │ │ ├── af_3_k101.png │ │ ├── af_4_k101.png │ │ ├── af_5_k101.png │ │ ├── af_shell1.png │ │ ├── af_shell10.png │ │ ├── af_shell2.png │ │ ├── af_shell3.png │ │ ├── af_shell4.png │ │ ├── af_shell5.png │ │ ├── af_shell6.png │ │ ├── af_shell7.png │ │ ├── af_shell8.png │ │ └── af_shell9.png │ ├── Schenk_IBMNA │ │ ├── c-18.png │ │ ├── c-19.png │ │ ├── c-20.png │ │ ├── c-21.png │ │ ├── c-22.png │ │ ├── c-23.png │ │ ├── c-24.png │ │ ├── c-25.png │ │ ├── c-26.png │ │ ├── c-27.png │ │ ├── c-28.png │ │ ├── c-29.png │ │ ├── c-30.png │ │ ├── c-31.png │ │ ├── c-32.png │ │ ├── c-33.png │ │ ├── c-34.png │ │ ├── c-35.png │ │ ├── c-36.png │ │ ├── c-37.png │ │ ├── c-38.png │ │ ├── c-39.png │ │ ├── c-40.png │ │ ├── c-41.png │ │ ├── c-42.png │ │ ├── c-43.png │ │ ├── c-44.png │ │ ├── c-45.png │ │ ├── c-46.png │ │ ├── c-47.png │ │ ├── c-48.png │ │ ├── c-49.png │ │ ├── c-50.png │ │ ├── c-51.png │ │ ├── c-52.png │ │ ├── c-53.png │ │ ├── c-54.png │ │ ├── c-56.png │ │ ├── c-57.png │ │ ├── c-60.png │ │ ├── c-61.png │ │ ├── c-62.png │ │ ├── c-64.png │ │ ├── c-64b.png │ │ ├── c-65.png │ │ ├── c-66.png │ │ ├── c-66b.png │ │ ├── c-67.png │ │ ├── c-67b.png │ │ ├── c-73.png │ │ ├── c-73b.png │ │ └── c-big.png │ ├── Schenk_IBMSDS │ │ ├── 2D_27628_bjtcai.png │ │ ├── 2D_54019_highK.png │ │ ├── 3D_28984_Tetra.png │ │ ├── 3D_51448_3D.png │ │ ├── ibm_matrix_2.png │ │ ├── matrix-new_3.png │ │ └── matrix_9.png │ ├── Schenk_ISEI │ │ ├── barrier2-1.png │ │ ├── barrier2-10.png │ │ ├── barrier2-11.png │ │ ├── barrier2-12.png │ │ ├── barrier2-2.png │ │ ├── barrier2-3.png │ │ ├── barrier2-4.png │ │ ├── barrier2-9.png │ │ ├── igbt3.png │ │ ├── nmos3.png │ │ ├── ohne2.png │ │ ├── para-10.png │ │ ├── para-4.png │ │ ├── para-5.png │ │ ├── para-6.png │ │ ├── para-7.png │ │ ├── para-8.png │ │ └── para-9.png │ ├── Schmid │ │ ├── thermal1.png │ │ └── thermal2.png │ ├── Schulthess │ │ ├── N_biocarta.png │ │ ├── N_pid.png │ │ └── N_reactome.png │ ├── Shen │ │ ├── e40r0100.png │ │ ├── shermanACa.png │ │ ├── shermanACb.png │ │ └── shermanACd.png │ ├── Shyy │ │ ├── shyy161.png │ │ └── shyy41.png │ ├── Simon │ │ ├── appu.png │ │ ├── bbmat.png │ │ ├── olafu.png │ │ ├── raefsky1.png │ │ ├── raefsky2.png │ │ ├── raefsky3.png │ │ ├── raefsky4.png │ │ ├── raefsky5.png │ │ ├── raefsky6.png │ │ ├── venkat01.png │ │ ├── venkat25.png │ │ └── venkat50.png │ ├── Sinclair │ │ ├── 3Dspectralwave.png │ │ └── 3Dspectralwave2.png │ ├── Sorensen │ │ └── Linux_call_graph.png │ ├── Springer │ │ └── ESOC.png │ ├── Stevenson │ │ └── LargeRegFile.png │ ├── Sumner │ │ └── graphics.png │ ├── Sybrandt │ │ └── MOLIERE_2016.png │ ├── Szczerba │ │ └── Ill_Stokes.png │ ├── TAMU_SmartGridCenter │ │ ├── ACTIVSg10K.png │ │ ├── ACTIVSg2000.png │ │ └── ACTIVSg70K.png │ ├── TKK │ │ ├── cbuckle.png │ │ ├── cyl6.png │ │ ├── engine.png │ │ ├── g3rmt3m3.png │ │ ├── plbuckle.png │ │ ├── s4dkt3m2.png │ │ ├── smt.png │ │ ├── t2d_q4.png │ │ ├── t2d_q9.png │ │ ├── t520.png │ │ ├── tube1.png │ │ └── tube2.png │ ├── TOKAMAK │ │ ├── utm1700b.png │ │ ├── utm300.png │ │ ├── utm3060.png │ │ └── utm5940.png │ ├── TSOPF │ │ ├── TSOPF_FS_b162_c1.png │ │ ├── TSOPF_FS_b162_c3.png │ │ ├── TSOPF_FS_b162_c4.png │ │ ├── TSOPF_FS_b300.png │ │ ├── TSOPF_FS_b300_c1.png │ │ ├── TSOPF_FS_b300_c2.png │ │ ├── TSOPF_FS_b300_c3.png │ │ ├── TSOPF_FS_b39_c19.png │ │ ├── TSOPF_FS_b39_c30.png │ │ ├── TSOPF_FS_b39_c7.png │ │ ├── TSOPF_FS_b9_c1.png │ │ ├── TSOPF_FS_b9_c6.png │ │ ├── TSOPF_RS_b162_c1.png │ │ ├── TSOPF_RS_b162_c3.png │ │ ├── TSOPF_RS_b162_c4.png │ │ ├── TSOPF_RS_b2052_c1.png │ │ ├── TSOPF_RS_b2383.png │ │ ├── TSOPF_RS_b2383_c1.png │ │ ├── TSOPF_RS_b300_c1.png │ │ ├── TSOPF_RS_b300_c2.png │ │ ├── TSOPF_RS_b300_c3.png │ │ ├── TSOPF_RS_b39_c19.png │ │ ├── TSOPF_RS_b39_c30.png │ │ ├── TSOPF_RS_b39_c7.png │ │ ├── TSOPF_RS_b678_c1.png │ │ ├── TSOPF_RS_b678_c2.png │ │ └── TSOPF_RS_b9_c6.png │ ├── Toledo │ │ └── deltaX.png │ ├── Tromble │ │ └── language.png │ ├── UTEP │ │ ├── Dubcova1.png │ │ ├── Dubcova2.png │ │ └── Dubcova3.png │ ├── Um │ │ ├── 2cubes_sphere.png │ │ └── offshore.png │ ├── VDOL │ │ ├── dynamicSoaringProblem_1.png │ │ ├── dynamicSoaringProblem_2.png │ │ ├── dynamicSoaringProblem_3.png │ │ ├── dynamicSoaringProblem_4.png │ │ ├── dynamicSoaringProblem_5.png │ │ ├── dynamicSoaringProblem_6.png │ │ ├── dynamicSoaringProblem_7.png │ │ ├── dynamicSoaringProblem_8.png │ │ ├── freeFlyingRobot_1.png │ │ ├── freeFlyingRobot_10.png │ │ ├── freeFlyingRobot_11.png │ │ ├── freeFlyingRobot_12.png │ │ ├── freeFlyingRobot_13.png │ │ ├── freeFlyingRobot_14.png │ │ ├── freeFlyingRobot_15.png │ │ ├── freeFlyingRobot_16.png │ │ ├── freeFlyingRobot_2.png │ │ ├── freeFlyingRobot_3.png │ │ ├── freeFlyingRobot_4.png │ │ ├── freeFlyingRobot_5.png │ │ ├── freeFlyingRobot_6.png │ │ ├── freeFlyingRobot_7.png │ │ ├── freeFlyingRobot_8.png │ │ ├── freeFlyingRobot_9.png │ │ ├── goddardRocketProblem_1.png │ │ ├── goddardRocketProblem_2.png │ │ ├── hangGlider_1.png │ │ ├── hangGlider_2.png │ │ ├── hangGlider_3.png │ │ ├── hangGlider_4.png │ │ ├── hangGlider_5.png │ │ ├── kineticBatchReactor_1.png │ │ ├── kineticBatchReactor_2.png │ │ ├── kineticBatchReactor_3.png │ │ ├── kineticBatchReactor_4.png │ │ ├── kineticBatchReactor_5.png │ │ ├── kineticBatchReactor_6.png │ │ ├── kineticBatchReactor_7.png │ │ ├── kineticBatchReactor_8.png │ │ ├── kineticBatchReactor_9.png │ │ ├── lowThrust_1.png │ │ ├── lowThrust_10.png │ │ ├── lowThrust_11.png │ │ ├── lowThrust_12.png │ │ ├── lowThrust_13.png │ │ ├── lowThrust_2.png │ │ ├── lowThrust_3.png │ │ ├── lowThrust_4.png │ │ ├── lowThrust_5.png │ │ ├── lowThrust_6.png │ │ ├── lowThrust_7.png │ │ ├── lowThrust_8.png │ │ ├── lowThrust_9.png │ │ ├── orbitRaising_1.png │ │ ├── orbitRaising_2.png │ │ ├── orbitRaising_3.png │ │ ├── orbitRaising_4.png │ │ ├── reorientation_1.png │ │ ├── reorientation_2.png │ │ ├── reorientation_3.png │ │ ├── reorientation_4.png │ │ ├── reorientation_5.png │ │ ├── reorientation_6.png │ │ ├── reorientation_7.png │ │ ├── reorientation_8.png │ │ ├── spaceShuttleEntry_1.png │ │ ├── spaceShuttleEntry_2.png │ │ ├── spaceShuttleEntry_3.png │ │ ├── spaceShuttleEntry_4.png │ │ ├── spaceStation_1.png │ │ ├── spaceStation_10.png │ │ ├── spaceStation_11.png │ │ ├── spaceStation_12.png │ │ ├── spaceStation_13.png │ │ ├── spaceStation_14.png │ │ ├── spaceStation_2.png │ │ ├── spaceStation_3.png │ │ ├── spaceStation_4.png │ │ ├── spaceStation_5.png │ │ ├── spaceStation_6.png │ │ ├── spaceStation_7.png │ │ ├── spaceStation_8.png │ │ ├── spaceStation_9.png │ │ ├── tumorAntiAngiogenesis_1.png │ │ ├── tumorAntiAngiogenesis_2.png │ │ ├── tumorAntiAngiogenesis_3.png │ │ ├── tumorAntiAngiogenesis_4.png │ │ ├── tumorAntiAngiogenesis_5.png │ │ ├── tumorAntiAngiogenesis_6.png │ │ ├── tumorAntiAngiogenesis_7.png │ │ └── tumorAntiAngiogenesis_8.png │ ├── VLSI │ │ ├── dgreen.png │ │ ├── imagesensor.png │ │ ├── mosfet2.png │ │ ├── nv1.png │ │ ├── nv2.png │ │ ├── power9.png │ │ ├── radiation.png │ │ ├── ss.png │ │ ├── ss1.png │ │ ├── stokes.png │ │ ├── test1.png │ │ ├── vas_stokes_1M.png │ │ ├── vas_stokes_2M.png │ │ └── vas_stokes_4M.png │ ├── VanVelzen │ │ ├── Zd_Jac2.png │ │ ├── Zd_Jac2_db.png │ │ ├── Zd_Jac3.png │ │ ├── Zd_Jac3_db.png │ │ ├── Zd_Jac6.png │ │ ├── Zd_Jac6_db.png │ │ ├── std1_Jac2.png │ │ ├── std1_Jac2_db.png │ │ ├── std1_Jac3.png │ │ └── std1_Jac3_db.png │ ├── Vavasis │ │ └── av41092.png │ ├── Wang │ │ ├── swang1.png │ │ ├── swang2.png │ │ ├── wang1.png │ │ ├── wang2.png │ │ ├── wang3.png │ │ └── wang4.png │ ├── Watson │ │ ├── Baumann.png │ │ └── chem_master1.png │ ├── Williams │ │ ├── cant.png │ │ ├── consph.png │ │ ├── cop20k_A.png │ │ ├── mac_econ_fwd500.png │ │ ├── mc2depi.png │ │ ├── pdb1HYS.png │ │ └── webbase-1M.png │ ├── Wissgott │ │ └── parabolic_fem.png │ ├── YCheng │ │ ├── psse0.png │ │ ├── psse1.png │ │ └── psse2.png │ ├── YZhou │ │ └── circuit204.png │ ├── Yoshiyasu │ │ ├── image_interp.png │ │ └── mesh_deform.png │ ├── Zaoui │ │ └── kkt_power.png │ ├── Zhao │ │ ├── Zhao1.png │ │ └── Zhao2.png │ ├── Zitney │ │ ├── extr1.png │ │ ├── extr1b.png │ │ ├── hydr1.png │ │ ├── hydr1c.png │ │ ├── radfr1.png │ │ ├── rdist1.png │ │ ├── rdist2.png │ │ └── rdist3a.png │ ├── ss_index.mat │ ├── ss_listing.txt │ ├── ssget_java.png │ ├── ssstats.csv │ └── vanHeukelum │ │ ├── cage10.png │ │ ├── cage11.png │ │ ├── cage12.png │ │ ├── cage13.png │ │ ├── cage14.png │ │ ├── cage15.png │ │ ├── cage3.png │ │ ├── cage4.png │ │ ├── cage5.png │ │ ├── cage6.png │ │ ├── cage7.png │ │ ├── cage8.png │ │ └── cage9.png ├── mat │ └── .gitignore ├── ssget.m ├── ssget_defaults.m ├── ssget_example.m ├── ssget_lookup.m ├── ssgrep.m ├── ssgui.jar ├── ssgui.java ├── sshelp.html ├── sskinds.m ├── sssvd.m ├── ssweb.m └── svd │ └── .gitignore └── suitesparse-config.cmake.in /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /AMD/Demo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/AMD/Demo/Makefile -------------------------------------------------------------------------------- /AMD/Demo/amd_demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/AMD/Demo/amd_demo.c -------------------------------------------------------------------------------- /AMD/Demo/amd_demo.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/AMD/Demo/amd_demo.out -------------------------------------------------------------------------------- /AMD/Demo/amd_demo2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/AMD/Demo/amd_demo2.c -------------------------------------------------------------------------------- /AMD/Demo/amd_demo2.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/AMD/Demo/amd_demo2.out -------------------------------------------------------------------------------- /AMD/Demo/amd_f77cross.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/AMD/Demo/amd_f77cross.f -------------------------------------------------------------------------------- /AMD/Demo/amd_f77demo.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/AMD/Demo/amd_f77demo.f -------------------------------------------------------------------------------- /AMD/Demo/amd_f77demo.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/AMD/Demo/amd_f77demo.out -------------------------------------------------------------------------------- /AMD/Demo/amd_f77simple.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/AMD/Demo/amd_f77simple.f -------------------------------------------------------------------------------- /AMD/Demo/amd_l_demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/AMD/Demo/amd_l_demo.c -------------------------------------------------------------------------------- /AMD/Demo/amd_l_demo.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/AMD/Demo/amd_l_demo.out -------------------------------------------------------------------------------- /AMD/Demo/amd_simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/AMD/Demo/amd_simple.c -------------------------------------------------------------------------------- /AMD/Demo/amd_simple.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/AMD/Demo/amd_simple.out -------------------------------------------------------------------------------- /AMD/Doc/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/AMD/Doc/ChangeLog -------------------------------------------------------------------------------- /AMD/Doc/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/AMD/Doc/License.txt -------------------------------------------------------------------------------- /AMD/Doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/AMD/Doc/Makefile -------------------------------------------------------------------------------- /AMD/Doc/lesser.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/AMD/Doc/lesser.txt -------------------------------------------------------------------------------- /AMD/Include/amd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/AMD/Include/amd.h -------------------------------------------------------------------------------- /AMD/Lib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/AMD/Lib/Makefile -------------------------------------------------------------------------------- /AMD/MATLAB/Contents.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/AMD/MATLAB/Contents.m -------------------------------------------------------------------------------- /AMD/MATLAB/amd2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/AMD/MATLAB/amd2.m -------------------------------------------------------------------------------- /AMD/MATLAB/amd_demo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/AMD/MATLAB/amd_demo.m -------------------------------------------------------------------------------- /AMD/MATLAB/amd_install.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/AMD/MATLAB/amd_install.m -------------------------------------------------------------------------------- /AMD/MATLAB/amd_make.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/AMD/MATLAB/amd_make.m -------------------------------------------------------------------------------- /AMD/MATLAB/amd_mex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/AMD/MATLAB/amd_mex.c -------------------------------------------------------------------------------- /AMD/MATLAB/can_24: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/AMD/MATLAB/can_24 -------------------------------------------------------------------------------- /AMD/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/AMD/Makefile -------------------------------------------------------------------------------- /AMD/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/AMD/README.txt -------------------------------------------------------------------------------- /AMD/Source/amd.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/AMD/Source/amd.f -------------------------------------------------------------------------------- /AMD/Source/amd_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/AMD/Source/amd_1.c -------------------------------------------------------------------------------- /AMD/Source/amd_2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/AMD/Source/amd_2.c -------------------------------------------------------------------------------- /AMD/Source/amd_aat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/AMD/Source/amd_aat.c -------------------------------------------------------------------------------- /AMD/Source/amd_control.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/AMD/Source/amd_control.c -------------------------------------------------------------------------------- /AMD/Source/amd_dump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/AMD/Source/amd_dump.c -------------------------------------------------------------------------------- /AMD/Source/amd_global.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/AMD/Source/amd_global.c -------------------------------------------------------------------------------- /AMD/Source/amd_info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/AMD/Source/amd_info.c -------------------------------------------------------------------------------- /AMD/Source/amd_order.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/AMD/Source/amd_order.c -------------------------------------------------------------------------------- /AMD/Source/amd_valid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/AMD/Source/amd_valid.c -------------------------------------------------------------------------------- /AMD/Source/amdbar.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/AMD/Source/amdbar.f -------------------------------------------------------------------------------- /BTF/Doc/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/BTF/Doc/ChangeLog -------------------------------------------------------------------------------- /BTF/Doc/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/BTF/Doc/License.txt -------------------------------------------------------------------------------- /BTF/Doc/lesser.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/BTF/Doc/lesser.txt -------------------------------------------------------------------------------- /BTF/Include/btf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/BTF/Include/btf.h -------------------------------------------------------------------------------- /BTF/Lib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/BTF/Lib/Makefile -------------------------------------------------------------------------------- /BTF/MATLAB/Contents.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/BTF/MATLAB/Contents.m -------------------------------------------------------------------------------- /BTF/MATLAB/Test/test1.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/BTF/MATLAB/Test/test1.m -------------------------------------------------------------------------------- /BTF/MATLAB/Test/test2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/BTF/MATLAB/Test/test2.m -------------------------------------------------------------------------------- /BTF/MATLAB/Test/test3.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/BTF/MATLAB/Test/test3.m -------------------------------------------------------------------------------- /BTF/MATLAB/Test/test4.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/BTF/MATLAB/Test/test4.m -------------------------------------------------------------------------------- /BTF/MATLAB/Test/test5.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/BTF/MATLAB/Test/test5.m -------------------------------------------------------------------------------- /BTF/MATLAB/Test/test6.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/BTF/MATLAB/Test/test6.m -------------------------------------------------------------------------------- /BTF/MATLAB/btf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/BTF/MATLAB/btf.c -------------------------------------------------------------------------------- /BTF/MATLAB/btf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/BTF/MATLAB/btf.m -------------------------------------------------------------------------------- /BTF/MATLAB/btf_demo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/BTF/MATLAB/btf_demo.m -------------------------------------------------------------------------------- /BTF/MATLAB/btf_install.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/BTF/MATLAB/btf_install.m -------------------------------------------------------------------------------- /BTF/MATLAB/btf_make.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/BTF/MATLAB/btf_make.m -------------------------------------------------------------------------------- /BTF/MATLAB/drawbtf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/BTF/MATLAB/drawbtf.m -------------------------------------------------------------------------------- /BTF/MATLAB/maxtrans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/BTF/MATLAB/maxtrans.c -------------------------------------------------------------------------------- /BTF/MATLAB/maxtrans.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/BTF/MATLAB/maxtrans.m -------------------------------------------------------------------------------- /BTF/MATLAB/strongcomp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/BTF/MATLAB/strongcomp.c -------------------------------------------------------------------------------- /BTF/MATLAB/strongcomp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/BTF/MATLAB/strongcomp.m -------------------------------------------------------------------------------- /BTF/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/BTF/Makefile -------------------------------------------------------------------------------- /BTF/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/BTF/README.txt -------------------------------------------------------------------------------- /BTF/Source/btf_order.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/BTF/Source/btf_order.c -------------------------------------------------------------------------------- /CAMD/Demo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CAMD/Demo/Makefile -------------------------------------------------------------------------------- /CAMD/Demo/camd_demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CAMD/Demo/camd_demo.c -------------------------------------------------------------------------------- /CAMD/Demo/camd_demo.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CAMD/Demo/camd_demo.out -------------------------------------------------------------------------------- /CAMD/Demo/camd_demo2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CAMD/Demo/camd_demo2.c -------------------------------------------------------------------------------- /CAMD/Demo/camd_demo2.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CAMD/Demo/camd_demo2.out -------------------------------------------------------------------------------- /CAMD/Demo/camd_l_demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CAMD/Demo/camd_l_demo.c -------------------------------------------------------------------------------- /CAMD/Demo/camd_simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CAMD/Demo/camd_simple.c -------------------------------------------------------------------------------- /CAMD/Doc/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CAMD/Doc/ChangeLog -------------------------------------------------------------------------------- /CAMD/Doc/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CAMD/Doc/License.txt -------------------------------------------------------------------------------- /CAMD/Doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CAMD/Doc/Makefile -------------------------------------------------------------------------------- /CAMD/Doc/camd.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CAMD/Doc/camd.sed -------------------------------------------------------------------------------- /CAMD/Doc/cdiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CAMD/Doc/cdiff -------------------------------------------------------------------------------- /CAMD/Doc/docdiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CAMD/Doc/docdiff -------------------------------------------------------------------------------- /CAMD/Doc/lesser.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CAMD/Doc/lesser.txt -------------------------------------------------------------------------------- /CAMD/Include/camd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CAMD/Include/camd.h -------------------------------------------------------------------------------- /CAMD/Lib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CAMD/Lib/Makefile -------------------------------------------------------------------------------- /CAMD/MATLAB/Contents.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CAMD/MATLAB/Contents.m -------------------------------------------------------------------------------- /CAMD/MATLAB/camd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CAMD/MATLAB/camd.m -------------------------------------------------------------------------------- /CAMD/MATLAB/camd_demo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CAMD/MATLAB/camd_demo.m -------------------------------------------------------------------------------- /CAMD/MATLAB/camd_make.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CAMD/MATLAB/camd_make.m -------------------------------------------------------------------------------- /CAMD/MATLAB/camd_mex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CAMD/MATLAB/camd_mex.c -------------------------------------------------------------------------------- /CAMD/MATLAB/can_24: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CAMD/MATLAB/can_24 -------------------------------------------------------------------------------- /CAMD/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CAMD/Makefile -------------------------------------------------------------------------------- /CAMD/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CAMD/README.txt -------------------------------------------------------------------------------- /CAMD/Source/camd_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CAMD/Source/camd_1.c -------------------------------------------------------------------------------- /CAMD/Source/camd_2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CAMD/Source/camd_2.c -------------------------------------------------------------------------------- /CAMD/Source/camd_aat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CAMD/Source/camd_aat.c -------------------------------------------------------------------------------- /CAMD/Source/camd_dump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CAMD/Source/camd_dump.c -------------------------------------------------------------------------------- /CAMD/Source/camd_info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CAMD/Source/camd_info.c -------------------------------------------------------------------------------- /CAMD/Source/camd_order.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CAMD/Source/camd_order.c -------------------------------------------------------------------------------- /CAMD/Source/camd_valid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CAMD/Source/camd_valid.c -------------------------------------------------------------------------------- /CCOLAMD/Demo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CCOLAMD/Demo/Makefile -------------------------------------------------------------------------------- /CCOLAMD/Doc/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CCOLAMD/Doc/ChangeLog -------------------------------------------------------------------------------- /CCOLAMD/Doc/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CCOLAMD/Doc/License.txt -------------------------------------------------------------------------------- /CCOLAMD/Doc/lesser.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CCOLAMD/Doc/lesser.txt -------------------------------------------------------------------------------- /CCOLAMD/Lib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CCOLAMD/Lib/Makefile -------------------------------------------------------------------------------- /CCOLAMD/MATLAB/ccolamd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CCOLAMD/MATLAB/ccolamd.m -------------------------------------------------------------------------------- /CCOLAMD/MATLAB/csymamd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CCOLAMD/MATLAB/csymamd.m -------------------------------------------------------------------------------- /CCOLAMD/MATLAB/luflops.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CCOLAMD/MATLAB/luflops.m -------------------------------------------------------------------------------- /CCOLAMD/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CCOLAMD/Makefile -------------------------------------------------------------------------------- /CCOLAMD/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CCOLAMD/README.txt -------------------------------------------------------------------------------- /CCOLAMD/Source/ccolamd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CCOLAMD/Source/ccolamd.c -------------------------------------------------------------------------------- /CHOLMOD/Check/lesser.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CHOLMOD/Check/lesser.txt -------------------------------------------------------------------------------- /CHOLMOD/Core/lesser.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CHOLMOD/Core/lesser.txt -------------------------------------------------------------------------------- /CHOLMOD/Demo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CHOLMOD/Demo/Makefile -------------------------------------------------------------------------------- /CHOLMOD/Demo/Matrix/0.tri: -------------------------------------------------------------------------------- 1 | 3P0A. -------------------------------------------------------------------------------- /CHOLMOD/Demo/Matrix/empty.tri: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CHOLMOD/Demo/Matrix/mangle1.mtx: -------------------------------------------------------------------------------- 1 | %%MatrixMarket junk coordinate real general 2 | -------------------------------------------------------------------------------- /CHOLMOD/Demo/Matrix/mangle6.tri: -------------------------------------------------------------------------------- 1 | 3 3 1 0 2 | 5 3 | -------------------------------------------------------------------------------- /CHOLMOD/Demo/Matrix/n5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CHOLMOD/Demo/Matrix/n5 -------------------------------------------------------------------------------- /CHOLMOD/Demo/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CHOLMOD/Demo/README.txt -------------------------------------------------------------------------------- /CHOLMOD/Demo/gpl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CHOLMOD/Demo/gpl.txt -------------------------------------------------------------------------------- /CHOLMOD/Demo/gpu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CHOLMOD/Demo/gpu.sh -------------------------------------------------------------------------------- /CHOLMOD/Demo/lperf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CHOLMOD/Demo/lperf.m -------------------------------------------------------------------------------- /CHOLMOD/Demo/reade.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CHOLMOD/Demo/reade.f -------------------------------------------------------------------------------- /CHOLMOD/Demo/readhb.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CHOLMOD/Demo/readhb.f -------------------------------------------------------------------------------- /CHOLMOD/Demo/readhb2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CHOLMOD/Demo/readhb2.f -------------------------------------------------------------------------------- /CHOLMOD/Doc/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CHOLMOD/Doc/ChangeLog -------------------------------------------------------------------------------- /CHOLMOD/Doc/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CHOLMOD/Doc/License.txt -------------------------------------------------------------------------------- /CHOLMOD/Doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CHOLMOD/Doc/Makefile -------------------------------------------------------------------------------- /CHOLMOD/Doc/footer.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CHOLMOD/Doc/footer.tex -------------------------------------------------------------------------------- /CHOLMOD/Doc/getmproto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CHOLMOD/Doc/getmproto -------------------------------------------------------------------------------- /CHOLMOD/Doc/getproto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CHOLMOD/Doc/getproto -------------------------------------------------------------------------------- /CHOLMOD/Doc/header.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CHOLMOD/Doc/header.tex -------------------------------------------------------------------------------- /CHOLMOD/Doc/mfile.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CHOLMOD/Doc/mfile.awk -------------------------------------------------------------------------------- /CHOLMOD/Doc/mfooter.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CHOLMOD/Doc/mfooter.tex -------------------------------------------------------------------------------- /CHOLMOD/Doc/mheader.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CHOLMOD/Doc/mheader.tex -------------------------------------------------------------------------------- /CHOLMOD/Doc/rule.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CHOLMOD/Doc/rule.awk -------------------------------------------------------------------------------- /CHOLMOD/Lib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CHOLMOD/Lib/Makefile -------------------------------------------------------------------------------- /CHOLMOD/MATLAB/Test/dg.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CHOLMOD/MATLAB/Test/dg.m -------------------------------------------------------------------------------- /CHOLMOD/MATLAB/Test/n2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CHOLMOD/MATLAB/Test/n2.m -------------------------------------------------------------------------------- /CHOLMOD/MATLAB/Test/nn.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CHOLMOD/MATLAB/Test/nn.m -------------------------------------------------------------------------------- /CHOLMOD/MATLAB/analyze.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CHOLMOD/MATLAB/analyze.c -------------------------------------------------------------------------------- /CHOLMOD/MATLAB/analyze.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CHOLMOD/MATLAB/analyze.m -------------------------------------------------------------------------------- /CHOLMOD/MATLAB/bisect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CHOLMOD/MATLAB/bisect.c -------------------------------------------------------------------------------- /CHOLMOD/MATLAB/bisect.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CHOLMOD/MATLAB/bisect.m -------------------------------------------------------------------------------- /CHOLMOD/MATLAB/chol2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CHOLMOD/MATLAB/chol2.c -------------------------------------------------------------------------------- /CHOLMOD/MATLAB/chol2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CHOLMOD/MATLAB/chol2.m -------------------------------------------------------------------------------- /CHOLMOD/MATLAB/etree2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CHOLMOD/MATLAB/etree2.c -------------------------------------------------------------------------------- /CHOLMOD/MATLAB/etree2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CHOLMOD/MATLAB/etree2.m -------------------------------------------------------------------------------- /CHOLMOD/MATLAB/gpl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CHOLMOD/MATLAB/gpl.txt -------------------------------------------------------------------------------- /CHOLMOD/MATLAB/lchol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CHOLMOD/MATLAB/lchol.c -------------------------------------------------------------------------------- /CHOLMOD/MATLAB/lchol.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CHOLMOD/MATLAB/lchol.m -------------------------------------------------------------------------------- /CHOLMOD/MATLAB/ldlchol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CHOLMOD/MATLAB/ldlchol.c -------------------------------------------------------------------------------- /CHOLMOD/MATLAB/ldlchol.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CHOLMOD/MATLAB/ldlchol.m -------------------------------------------------------------------------------- /CHOLMOD/MATLAB/metis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CHOLMOD/MATLAB/metis.c -------------------------------------------------------------------------------- /CHOLMOD/MATLAB/metis.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CHOLMOD/MATLAB/metis.m -------------------------------------------------------------------------------- /CHOLMOD/MATLAB/mread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CHOLMOD/MATLAB/mread.c -------------------------------------------------------------------------------- /CHOLMOD/MATLAB/mread.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CHOLMOD/MATLAB/mread.m -------------------------------------------------------------------------------- /CHOLMOD/MATLAB/mwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CHOLMOD/MATLAB/mwrite.c -------------------------------------------------------------------------------- /CHOLMOD/MATLAB/mwrite.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CHOLMOD/MATLAB/mwrite.m -------------------------------------------------------------------------------- /CHOLMOD/MATLAB/nesdis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CHOLMOD/MATLAB/nesdis.c -------------------------------------------------------------------------------- /CHOLMOD/MATLAB/nesdis.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CHOLMOD/MATLAB/nesdis.m -------------------------------------------------------------------------------- /CHOLMOD/MATLAB/sdmult.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CHOLMOD/MATLAB/sdmult.c -------------------------------------------------------------------------------- /CHOLMOD/MATLAB/sdmult.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CHOLMOD/MATLAB/sdmult.m -------------------------------------------------------------------------------- /CHOLMOD/MATLAB/septree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CHOLMOD/MATLAB/septree.c -------------------------------------------------------------------------------- /CHOLMOD/MATLAB/septree.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CHOLMOD/MATLAB/septree.m -------------------------------------------------------------------------------- /CHOLMOD/MATLAB/sparse2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CHOLMOD/MATLAB/sparse2.c -------------------------------------------------------------------------------- /CHOLMOD/MATLAB/sparse2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CHOLMOD/MATLAB/sparse2.m -------------------------------------------------------------------------------- /CHOLMOD/MATLAB/spsym.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CHOLMOD/MATLAB/spsym.c -------------------------------------------------------------------------------- /CHOLMOD/MATLAB/spsym.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CHOLMOD/MATLAB/spsym.m -------------------------------------------------------------------------------- /CHOLMOD/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CHOLMOD/Makefile -------------------------------------------------------------------------------- /CHOLMOD/Modify/gpl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CHOLMOD/Modify/gpl.txt -------------------------------------------------------------------------------- /CHOLMOD/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CHOLMOD/README.txt -------------------------------------------------------------------------------- /CHOLMOD/Tcov/Make.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CHOLMOD/Tcov/Make.inc -------------------------------------------------------------------------------- /CHOLMOD/Tcov/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CHOLMOD/Tcov/Makefile -------------------------------------------------------------------------------- /CHOLMOD/Tcov/Matrix/0: -------------------------------------------------------------------------------- 1 | 3P0A. -------------------------------------------------------------------------------- /CHOLMOD/Tcov/Matrix/0_1: -------------------------------------------------------------------------------- 1 | 0 1 0 0 2 | -------------------------------------------------------------------------------- /CHOLMOD/Tcov/Matrix/1_0: -------------------------------------------------------------------------------- 1 | 3T0A. -------------------------------------------------------------------------------- /CHOLMOD/Tcov/Matrix/1e99: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CHOLMOD/Tcov/Matrix/1e99 -------------------------------------------------------------------------------- /CHOLMOD/Tcov/Matrix/20lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CHOLMOD/Tcov/Matrix/20lo -------------------------------------------------------------------------------- /CHOLMOD/Tcov/Matrix/2_3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CHOLMOD/Tcov/Matrix/2_3 -------------------------------------------------------------------------------- /CHOLMOD/Tcov/Matrix/2diag.tri: -------------------------------------------------------------------------------- 1 | 2 2 2 2 | 0 0 1 3 | 1 1 3 4 | -------------------------------------------------------------------------------- /CHOLMOD/Tcov/Matrix/3_2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CHOLMOD/Tcov/Matrix/3_2 -------------------------------------------------------------------------------- /CHOLMOD/Tcov/Matrix/3b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CHOLMOD/Tcov/Matrix/3b -------------------------------------------------------------------------------- /CHOLMOD/Tcov/Matrix/4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CHOLMOD/Tcov/Matrix/4 -------------------------------------------------------------------------------- /CHOLMOD/Tcov/Matrix/4lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CHOLMOD/Tcov/Matrix/4lo -------------------------------------------------------------------------------- /CHOLMOD/Tcov/Matrix/5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CHOLMOD/Tcov/Matrix/5 -------------------------------------------------------------------------------- /CHOLMOD/Tcov/Matrix/a1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CHOLMOD/Tcov/Matrix/a1 -------------------------------------------------------------------------------- /CHOLMOD/Tcov/Matrix/a2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CHOLMOD/Tcov/Matrix/a2 -------------------------------------------------------------------------------- /CHOLMOD/Tcov/Matrix/c10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CHOLMOD/Tcov/Matrix/c10 -------------------------------------------------------------------------------- /CHOLMOD/Tcov/Matrix/c5lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CHOLMOD/Tcov/Matrix/c5lo -------------------------------------------------------------------------------- /CHOLMOD/Tcov/Matrix/c5up: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CHOLMOD/Tcov/Matrix/c5up -------------------------------------------------------------------------------- /CHOLMOD/Tcov/Matrix/cha: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CHOLMOD/Tcov/Matrix/cha -------------------------------------------------------------------------------- /CHOLMOD/Tcov/Matrix/cpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CHOLMOD/Tcov/Matrix/cpi -------------------------------------------------------------------------------- /CHOLMOD/Tcov/Matrix/crud1: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /CHOLMOD/Tcov/Matrix/crud2: -------------------------------------------------------------------------------- 1 | 34P0!.CC#. -------------------------------------------------------------------------------- /CHOLMOD/Tcov/Matrix/cza: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CHOLMOD/Tcov/Matrix/cza -------------------------------------------------------------------------------- /CHOLMOD/Tcov/Matrix/diag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CHOLMOD/Tcov/Matrix/diag -------------------------------------------------------------------------------- /CHOLMOD/Tcov/Matrix/fullcrud1.mtx: -------------------------------------------------------------------------------- 1 | 2 2 2 | 1.3 2.4 3 | 3.4 4 | 7.7 5 | 42 6 | -------------------------------------------------------------------------------- /CHOLMOD/Tcov/Matrix/huge.tri: -------------------------------------------------------------------------------- 1 | 1 1 2147483647 0 2 | 1 1 1 3 | -------------------------------------------------------------------------------- /CHOLMOD/Tcov/Matrix/one: -------------------------------------------------------------------------------- 1 | 1 1 2 | 0 0 1 3 | -------------------------------------------------------------------------------- /CHOLMOD/Tcov/Matrix/pi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CHOLMOD/Tcov/Matrix/pi -------------------------------------------------------------------------------- /CHOLMOD/Tcov/Matrix/r5lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CHOLMOD/Tcov/Matrix/r5lo -------------------------------------------------------------------------------- /CHOLMOD/Tcov/Matrix/r5up: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CHOLMOD/Tcov/Matrix/r5up -------------------------------------------------------------------------------- /CHOLMOD/Tcov/Matrix/tri: -------------------------------------------------------------------------------- 1 | 10 10 44 3 2 | -------------------------------------------------------------------------------- /CHOLMOD/Tcov/Matrix/z10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CHOLMOD/Tcov/Matrix/z10 -------------------------------------------------------------------------------- /CHOLMOD/Tcov/Matrix/z5lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CHOLMOD/Tcov/Matrix/z5lo -------------------------------------------------------------------------------- /CHOLMOD/Tcov/Matrix/z5up: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CHOLMOD/Tcov/Matrix/z5up -------------------------------------------------------------------------------- /CHOLMOD/Tcov/Matrix/zero: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CHOLMOD/Tcov/Matrix/zero -------------------------------------------------------------------------------- /CHOLMOD/Tcov/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CHOLMOD/Tcov/README.txt -------------------------------------------------------------------------------- /CHOLMOD/Tcov/amdtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CHOLMOD/Tcov/amdtest.c -------------------------------------------------------------------------------- /CHOLMOD/Tcov/aug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CHOLMOD/Tcov/aug.c -------------------------------------------------------------------------------- /CHOLMOD/Tcov/camdtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CHOLMOD/Tcov/camdtest.c -------------------------------------------------------------------------------- /CHOLMOD/Tcov/cctest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CHOLMOD/Tcov/cctest.c -------------------------------------------------------------------------------- /CHOLMOD/Tcov/cm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CHOLMOD/Tcov/cm.c -------------------------------------------------------------------------------- /CHOLMOD/Tcov/cm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CHOLMOD/Tcov/cm.h -------------------------------------------------------------------------------- /CHOLMOD/Tcov/cmread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CHOLMOD/Tcov/cmread.c -------------------------------------------------------------------------------- /CHOLMOD/Tcov/comments.txt: -------------------------------------------------------------------------------- 1 | Comments for testing cholmod_read/write functions. 2 | -------------------------------------------------------------------------------- /CHOLMOD/Tcov/cov.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CHOLMOD/Tcov/cov.awk -------------------------------------------------------------------------------- /CHOLMOD/Tcov/covall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CHOLMOD/Tcov/covall -------------------------------------------------------------------------------- /CHOLMOD/Tcov/cover: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CHOLMOD/Tcov/cover -------------------------------------------------------------------------------- /CHOLMOD/Tcov/covs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CHOLMOD/Tcov/covs -------------------------------------------------------------------------------- /CHOLMOD/Tcov/ctest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CHOLMOD/Tcov/ctest.c -------------------------------------------------------------------------------- /CHOLMOD/Tcov/gcovs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CHOLMOD/Tcov/gcovs -------------------------------------------------------------------------------- /CHOLMOD/Tcov/go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CHOLMOD/Tcov/go -------------------------------------------------------------------------------- /CHOLMOD/Tcov/gpl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CHOLMOD/Tcov/gpl.txt -------------------------------------------------------------------------------- /CHOLMOD/Tcov/huge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CHOLMOD/Tcov/huge.c -------------------------------------------------------------------------------- /CHOLMOD/Tcov/leak.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CHOLMOD/Tcov/leak.c -------------------------------------------------------------------------------- /CHOLMOD/Tcov/lpdemo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CHOLMOD/Tcov/lpdemo.c -------------------------------------------------------------------------------- /CHOLMOD/Tcov/memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CHOLMOD/Tcov/memory.c -------------------------------------------------------------------------------- /CHOLMOD/Tcov/null.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CHOLMOD/Tcov/null.c -------------------------------------------------------------------------------- /CHOLMOD/Tcov/null2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CHOLMOD/Tcov/null2.c -------------------------------------------------------------------------------- /CHOLMOD/Tcov/solve.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CHOLMOD/Tcov/solve.c -------------------------------------------------------------------------------- /CHOLMOD/Tcov/test_ops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CHOLMOD/Tcov/test_ops.c -------------------------------------------------------------------------------- /CHOLMOD/Tcov/unpack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CHOLMOD/Tcov/unpack.c -------------------------------------------------------------------------------- /CHOLMOD/Valgrind/Matrix: -------------------------------------------------------------------------------- 1 | ../Tcov/Matrix -------------------------------------------------------------------------------- /CHOLMOD/Valgrind/amdtest.c: -------------------------------------------------------------------------------- 1 | ../Tcov/amdtest.c -------------------------------------------------------------------------------- /CHOLMOD/Valgrind/aug.c: -------------------------------------------------------------------------------- 1 | ../Tcov/aug.c -------------------------------------------------------------------------------- /CHOLMOD/Valgrind/camdtest.c: -------------------------------------------------------------------------------- 1 | ../Tcov/camdtest.c -------------------------------------------------------------------------------- /CHOLMOD/Valgrind/cctest.c: -------------------------------------------------------------------------------- 1 | ../Tcov/cctest.c -------------------------------------------------------------------------------- /CHOLMOD/Valgrind/cm.c: -------------------------------------------------------------------------------- 1 | ../Tcov/cm.c -------------------------------------------------------------------------------- /CHOLMOD/Valgrind/cm.h: -------------------------------------------------------------------------------- 1 | ../Tcov/cm.h -------------------------------------------------------------------------------- /CHOLMOD/Valgrind/cmread.c: -------------------------------------------------------------------------------- 1 | ../Tcov/cmread.c -------------------------------------------------------------------------------- /CHOLMOD/Valgrind/comments.txt: -------------------------------------------------------------------------------- 1 | ../Tcov/comments.txt -------------------------------------------------------------------------------- /CHOLMOD/Valgrind/ctest.c: -------------------------------------------------------------------------------- 1 | ../Tcov/ctest.c -------------------------------------------------------------------------------- /CHOLMOD/Valgrind/gpl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CHOLMOD/Valgrind/gpl.txt -------------------------------------------------------------------------------- /CHOLMOD/Valgrind/huge.c: -------------------------------------------------------------------------------- 1 | ../Tcov/huge.c -------------------------------------------------------------------------------- /CHOLMOD/Valgrind/leak.c: -------------------------------------------------------------------------------- 1 | ../Tcov/leak.c -------------------------------------------------------------------------------- /CHOLMOD/Valgrind/lpdemo.c: -------------------------------------------------------------------------------- 1 | ../Tcov/lpdemo.c -------------------------------------------------------------------------------- /CHOLMOD/Valgrind/memory.c: -------------------------------------------------------------------------------- 1 | ../Tcov/memory.c -------------------------------------------------------------------------------- /CHOLMOD/Valgrind/null.c: -------------------------------------------------------------------------------- 1 | ../Tcov/null.c -------------------------------------------------------------------------------- /CHOLMOD/Valgrind/null2.c: -------------------------------------------------------------------------------- 1 | ../Tcov/null2.c -------------------------------------------------------------------------------- /CHOLMOD/Valgrind/raw_factor.c: -------------------------------------------------------------------------------- 1 | ../Tcov/raw_factor.c -------------------------------------------------------------------------------- /CHOLMOD/Valgrind/solve.c: -------------------------------------------------------------------------------- 1 | ../Tcov/solve.c -------------------------------------------------------------------------------- /CHOLMOD/Valgrind/test_ops.c: -------------------------------------------------------------------------------- 1 | ../Tcov/test_ops.c -------------------------------------------------------------------------------- /CHOLMOD/Valgrind/unpack.c: -------------------------------------------------------------------------------- 1 | ../Tcov/unpack.c -------------------------------------------------------------------------------- /CITATION.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CITATION.bib -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /COLAMD/Demo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/COLAMD/Demo/Makefile -------------------------------------------------------------------------------- /COLAMD/Doc/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/COLAMD/Doc/ChangeLog -------------------------------------------------------------------------------- /COLAMD/Doc/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/COLAMD/Doc/License.txt -------------------------------------------------------------------------------- /COLAMD/Doc/lesser.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/COLAMD/Doc/lesser.txt -------------------------------------------------------------------------------- /COLAMD/Include/colamd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/COLAMD/Include/colamd.h -------------------------------------------------------------------------------- /COLAMD/Lib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/COLAMD/Lib/Makefile -------------------------------------------------------------------------------- /COLAMD/MATLAB/Contents.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/COLAMD/MATLAB/Contents.m -------------------------------------------------------------------------------- /COLAMD/MATLAB/colamd2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/COLAMD/MATLAB/colamd2.m -------------------------------------------------------------------------------- /COLAMD/MATLAB/luflops.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/COLAMD/MATLAB/luflops.m -------------------------------------------------------------------------------- /COLAMD/MATLAB/symamd2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/COLAMD/MATLAB/symamd2.m -------------------------------------------------------------------------------- /COLAMD/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/COLAMD/Makefile -------------------------------------------------------------------------------- /COLAMD/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/COLAMD/README.txt -------------------------------------------------------------------------------- /COLAMD/Source/colamd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/COLAMD/Source/colamd.c -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /CONTRIBUTOR-LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CONTRIBUTOR-LICENSE.txt -------------------------------------------------------------------------------- /CSparse/Demo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CSparse/Demo/Makefile -------------------------------------------------------------------------------- /CSparse/Demo/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CSparse/Demo/README.txt -------------------------------------------------------------------------------- /CSparse/Demo/cs_demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CSparse/Demo/cs_demo.c -------------------------------------------------------------------------------- /CSparse/Demo/cs_demo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CSparse/Demo/cs_demo.h -------------------------------------------------------------------------------- /CSparse/Demo/cs_demo.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CSparse/Demo/cs_demo.out -------------------------------------------------------------------------------- /CSparse/Demo/cs_demo1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CSparse/Demo/cs_demo1.c -------------------------------------------------------------------------------- /CSparse/Demo/cs_demo2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CSparse/Demo/cs_demo2.c -------------------------------------------------------------------------------- /CSparse/Demo/cs_demo3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CSparse/Demo/cs_demo3.c -------------------------------------------------------------------------------- /CSparse/Doc/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CSparse/Doc/ChangeLog -------------------------------------------------------------------------------- /CSparse/Doc/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CSparse/Doc/License.txt -------------------------------------------------------------------------------- /CSparse/Doc/lesser.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CSparse/Doc/lesser.txt -------------------------------------------------------------------------------- /CSparse/Include/cs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CSparse/Include/cs.h -------------------------------------------------------------------------------- /CSparse/Lib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CSparse/Lib/Makefile -------------------------------------------------------------------------------- /CSparse/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CSparse/Makefile -------------------------------------------------------------------------------- /CSparse/Matrix/ash219: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CSparse/Matrix/ash219 -------------------------------------------------------------------------------- /CSparse/Matrix/bcsstk01: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CSparse/Matrix/bcsstk01 -------------------------------------------------------------------------------- /CSparse/Matrix/bcsstk16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CSparse/Matrix/bcsstk16 -------------------------------------------------------------------------------- /CSparse/Matrix/fs_183_1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CSparse/Matrix/fs_183_1 -------------------------------------------------------------------------------- /CSparse/Matrix/ibm32a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CSparse/Matrix/ibm32a -------------------------------------------------------------------------------- /CSparse/Matrix/ibm32b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CSparse/Matrix/ibm32b -------------------------------------------------------------------------------- /CSparse/Matrix/lp_afiro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CSparse/Matrix/lp_afiro -------------------------------------------------------------------------------- /CSparse/Matrix/mbeacxc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CSparse/Matrix/mbeacxc -------------------------------------------------------------------------------- /CSparse/Matrix/t1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CSparse/Matrix/t1 -------------------------------------------------------------------------------- /CSparse/Matrix/west0067: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CSparse/Matrix/west0067 -------------------------------------------------------------------------------- /CSparse/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CSparse/README.txt -------------------------------------------------------------------------------- /CSparse/Source/cs_add.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CSparse/Source/cs_add.c -------------------------------------------------------------------------------- /CSparse/Source/cs_amd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CSparse/Source/cs_amd.c -------------------------------------------------------------------------------- /CSparse/Source/cs_chol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CSparse/Source/cs_chol.c -------------------------------------------------------------------------------- /CSparse/Source/cs_dfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CSparse/Source/cs_dfs.c -------------------------------------------------------------------------------- /CSparse/Source/cs_dupl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CSparse/Source/cs_dupl.c -------------------------------------------------------------------------------- /CSparse/Source/cs_leaf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CSparse/Source/cs_leaf.c -------------------------------------------------------------------------------- /CSparse/Source/cs_load.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CSparse/Source/cs_load.c -------------------------------------------------------------------------------- /CSparse/Source/cs_lu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CSparse/Source/cs_lu.c -------------------------------------------------------------------------------- /CSparse/Source/cs_norm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CSparse/Source/cs_norm.c -------------------------------------------------------------------------------- /CSparse/Source/cs_pinv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CSparse/Source/cs_pinv.c -------------------------------------------------------------------------------- /CSparse/Source/cs_post.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CSparse/Source/cs_post.c -------------------------------------------------------------------------------- /CSparse/Source/cs_pvec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CSparse/Source/cs_pvec.c -------------------------------------------------------------------------------- /CSparse/Source/cs_qr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CSparse/Source/cs_qr.c -------------------------------------------------------------------------------- /CSparse/Source/cs_scc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CSparse/Source/cs_scc.c -------------------------------------------------------------------------------- /CSparse/Source/cs_sqr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CSparse/Source/cs_sqr.c -------------------------------------------------------------------------------- /CSparse/Source/cs_tdfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CSparse/Source/cs_tdfs.c -------------------------------------------------------------------------------- /CSparse/Source/cs_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CSparse/Source/cs_util.c -------------------------------------------------------------------------------- /CSparse/Tcov/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CSparse/Tcov/Makefile -------------------------------------------------------------------------------- /CSparse/Tcov/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CSparse/Tcov/README.txt -------------------------------------------------------------------------------- /CSparse/Tcov/cov.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CSparse/Tcov/cov.awk -------------------------------------------------------------------------------- /CSparse/Tcov/covall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CSparse/Tcov/covall -------------------------------------------------------------------------------- /CSparse/Tcov/covall.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CSparse/Tcov/covall.sol -------------------------------------------------------------------------------- /CSparse/Tcov/cover: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CSparse/Tcov/cover -------------------------------------------------------------------------------- /CSparse/Tcov/covs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CSparse/Tcov/covs -------------------------------------------------------------------------------- /CSparse/Tcov/gcovs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CSparse/Tcov/gcovs -------------------------------------------------------------------------------- /CSparse/Tcov/nil: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CSparse/Tcov/zero: -------------------------------------------------------------------------------- 1 | 0 0 0 2 | -------------------------------------------------------------------------------- /CSparse_to_CXSparse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CSparse_to_CXSparse -------------------------------------------------------------------------------- /CXSparse/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CXSparse/CMakeLists.txt -------------------------------------------------------------------------------- /CXSparse/Demo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CXSparse/Demo/Makefile -------------------------------------------------------------------------------- /CXSparse/Demo/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CXSparse/Demo/README.txt -------------------------------------------------------------------------------- /CXSparse/Demo/cs_demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CXSparse/Demo/cs_demo.c -------------------------------------------------------------------------------- /CXSparse/Demo/cs_demo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CXSparse/Demo/cs_demo.h -------------------------------------------------------------------------------- /CXSparse/Demo/cs_demo1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CXSparse/Demo/cs_demo1.c -------------------------------------------------------------------------------- /CXSparse/Demo/cs_demo2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CXSparse/Demo/cs_demo2.c -------------------------------------------------------------------------------- /CXSparse/Demo/cs_demo3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CXSparse/Demo/cs_demo3.c -------------------------------------------------------------------------------- /CXSparse/Demo/cs_idemo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CXSparse/Demo/cs_idemo.c -------------------------------------------------------------------------------- /CXSparse/Demo/cs_ldemo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CXSparse/Demo/cs_ldemo.c -------------------------------------------------------------------------------- /CXSparse/Doc/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CXSparse/Doc/ChangeLog -------------------------------------------------------------------------------- /CXSparse/Doc/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CXSparse/Doc/License.txt -------------------------------------------------------------------------------- /CXSparse/Doc/lesser.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CXSparse/Doc/lesser.txt -------------------------------------------------------------------------------- /CXSparse/Include/cs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CXSparse/Include/cs.h -------------------------------------------------------------------------------- /CXSparse/Lib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CXSparse/Lib/Makefile -------------------------------------------------------------------------------- /CXSparse/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CXSparse/Makefile -------------------------------------------------------------------------------- /CXSparse/Matrix/ash219: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CXSparse/Matrix/ash219 -------------------------------------------------------------------------------- /CXSparse/Matrix/bcsstk01: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CXSparse/Matrix/bcsstk01 -------------------------------------------------------------------------------- /CXSparse/Matrix/bcsstk16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CXSparse/Matrix/bcsstk16 -------------------------------------------------------------------------------- /CXSparse/Matrix/c4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CXSparse/Matrix/c4 -------------------------------------------------------------------------------- /CXSparse/Matrix/c_ibm32a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CXSparse/Matrix/c_ibm32a -------------------------------------------------------------------------------- /CXSparse/Matrix/c_ibm32b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CXSparse/Matrix/c_ibm32b -------------------------------------------------------------------------------- /CXSparse/Matrix/fs_183_1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CXSparse/Matrix/fs_183_1 -------------------------------------------------------------------------------- /CXSparse/Matrix/ibm32a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CXSparse/Matrix/ibm32a -------------------------------------------------------------------------------- /CXSparse/Matrix/ibm32b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CXSparse/Matrix/ibm32b -------------------------------------------------------------------------------- /CXSparse/Matrix/lp_afiro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CXSparse/Matrix/lp_afiro -------------------------------------------------------------------------------- /CXSparse/Matrix/mbeacxc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CXSparse/Matrix/mbeacxc -------------------------------------------------------------------------------- /CXSparse/Matrix/mhd1280b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CXSparse/Matrix/mhd1280b -------------------------------------------------------------------------------- /CXSparse/Matrix/neumann: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CXSparse/Matrix/neumann -------------------------------------------------------------------------------- /CXSparse/Matrix/qc324: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CXSparse/Matrix/qc324 -------------------------------------------------------------------------------- /CXSparse/Matrix/t1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CXSparse/Matrix/t1 -------------------------------------------------------------------------------- /CXSparse/Matrix/t2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CXSparse/Matrix/t2 -------------------------------------------------------------------------------- /CXSparse/Matrix/t3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CXSparse/Matrix/t3 -------------------------------------------------------------------------------- /CXSparse/Matrix/t4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CXSparse/Matrix/t4 -------------------------------------------------------------------------------- /CXSparse/Matrix/west0067: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CXSparse/Matrix/west0067 -------------------------------------------------------------------------------- /CXSparse/Matrix/young1c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CXSparse/Matrix/young1c -------------------------------------------------------------------------------- /CXSparse/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CXSparse/README.txt -------------------------------------------------------------------------------- /CXSparse/Source/cs_add.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CXSparse/Source/cs_add.c -------------------------------------------------------------------------------- /CXSparse/Source/cs_amd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CXSparse/Source/cs_amd.c -------------------------------------------------------------------------------- /CXSparse/Source/cs_dfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CXSparse/Source/cs_dfs.c -------------------------------------------------------------------------------- /CXSparse/Source/cs_lu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CXSparse/Source/cs_lu.c -------------------------------------------------------------------------------- /CXSparse/Source/cs_qr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CXSparse/Source/cs_qr.c -------------------------------------------------------------------------------- /CXSparse/Source/cs_scc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CXSparse/Source/cs_scc.c -------------------------------------------------------------------------------- /CXSparse/Source/cs_sqr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CXSparse/Source/cs_sqr.c -------------------------------------------------------------------------------- /CXSparse/Tcov/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CXSparse/Tcov/Makefile -------------------------------------------------------------------------------- /CXSparse/Tcov/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CXSparse/Tcov/README.txt -------------------------------------------------------------------------------- /CXSparse/Tcov/cov.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CXSparse/Tcov/cov.awk -------------------------------------------------------------------------------- /CXSparse/Tcov/covall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CXSparse/Tcov/covall -------------------------------------------------------------------------------- /CXSparse/Tcov/covall.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CXSparse/Tcov/covall.sol -------------------------------------------------------------------------------- /CXSparse/Tcov/cover: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CXSparse/Tcov/cover -------------------------------------------------------------------------------- /CXSparse/Tcov/covs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CXSparse/Tcov/covs -------------------------------------------------------------------------------- /CXSparse/Tcov/czero: -------------------------------------------------------------------------------- 1 | 3P0A. -------------------------------------------------------------------------------- /CXSparse/Tcov/gcovs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/CXSparse/Tcov/gcovs -------------------------------------------------------------------------------- /CXSparse/Tcov/nil: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CXSparse/Tcov/zero: -------------------------------------------------------------------------------- 1 | 0 0 0 2 | -------------------------------------------------------------------------------- /CXSparse_newfiles/Tcov/czero: -------------------------------------------------------------------------------- 1 | 3P0A. -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/ChangeLog -------------------------------------------------------------------------------- /Contents.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/Contents.m -------------------------------------------------------------------------------- /GPUQREngine/Doc/gpl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GPUQREngine/Doc/gpl.txt -------------------------------------------------------------------------------- /GPUQREngine/Lib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GPUQREngine/Lib/Makefile -------------------------------------------------------------------------------- /GPUQREngine/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GPUQREngine/Makefile -------------------------------------------------------------------------------- /GPUQREngine/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GPUQREngine/README.txt -------------------------------------------------------------------------------- /GraphBLAS/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/.gitignore -------------------------------------------------------------------------------- /GraphBLAS/CITATION.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/CITATION.bib -------------------------------------------------------------------------------- /GraphBLAS/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/CMakeLists.txt -------------------------------------------------------------------------------- /GraphBLAS/CUDA/GB_Operator.h: -------------------------------------------------------------------------------- 1 | ../Source/Template/GB_Operator.h -------------------------------------------------------------------------------- /GraphBLAS/CUDA/GB_cuda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/CUDA/GB_cuda.h -------------------------------------------------------------------------------- /GraphBLAS/CUDA/GB_index.h: -------------------------------------------------------------------------------- 1 | ../Source/GB_index.h -------------------------------------------------------------------------------- /GraphBLAS/CUDA/GB_int64_multiply.c: -------------------------------------------------------------------------------- 1 | ../Source/GB_int64_multiply.c -------------------------------------------------------------------------------- /GraphBLAS/CUDA/GB_matrix.h: -------------------------------------------------------------------------------- 1 | ../Source/Template/GB_matrix.h -------------------------------------------------------------------------------- /GraphBLAS/CUDA/GB_opaque.h: -------------------------------------------------------------------------------- 1 | ../Source/GB_opaque.h -------------------------------------------------------------------------------- /GraphBLAS/CUDA/GB_partition.h: -------------------------------------------------------------------------------- 1 | ../Source/GB_partition.h -------------------------------------------------------------------------------- /GraphBLAS/CUDA/TODO.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/CUDA/TODO.c -------------------------------------------------------------------------------- /GraphBLAS/CUDA/templates/GB_nnz.h: -------------------------------------------------------------------------------- 1 | ../../Source/GB_nnz.h -------------------------------------------------------------------------------- /GraphBLAS/CUDA/templates/GB_nnz_full_template.c: -------------------------------------------------------------------------------- 1 | ../../Source/Template/GB_nnz_full_template.c -------------------------------------------------------------------------------- /GraphBLAS/CUDA/templates/GB_nnz_held_template.c: -------------------------------------------------------------------------------- 1 | ../../Source/Template/GB_nnz_held_template.c -------------------------------------------------------------------------------- /GraphBLAS/CUDA/templates/GB_nnz_max_template.c: -------------------------------------------------------------------------------- 1 | ../../Source/Template/GB_nnz_max_template.c -------------------------------------------------------------------------------- /GraphBLAS/CUDA/templates/GB_nnz_template.c: -------------------------------------------------------------------------------- 1 | ../../Source/Template/GB_nnz_template.c -------------------------------------------------------------------------------- /GraphBLAS/CUDA/templates/stdbool.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GraphBLAS/CUDA/test/graphblascuda_test: -------------------------------------------------------------------------------- 1 | ../../build/CUDA/graphblascuda_test -------------------------------------------------------------------------------- /GraphBLAS/Demo/Matrix/t1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Demo/Matrix/t1 -------------------------------------------------------------------------------- /GraphBLAS/Demo/Matrix/t2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Demo/Matrix/t2 -------------------------------------------------------------------------------- /GraphBLAS/Demo/demo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Demo/demo -------------------------------------------------------------------------------- /GraphBLAS/Demo/vdemo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Demo/vdemo -------------------------------------------------------------------------------- /GraphBLAS/Demo/wdemo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Demo/wdemo -------------------------------------------------------------------------------- /GraphBLAS/Doc/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Doc/ChangeLog -------------------------------------------------------------------------------- /GraphBLAS/Doc/HPEC19.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Doc/HPEC19.pdf -------------------------------------------------------------------------------- /GraphBLAS/Doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Doc/Makefile -------------------------------------------------------------------------------- /GraphBLAS/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/LICENSE -------------------------------------------------------------------------------- /GraphBLAS/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Makefile -------------------------------------------------------------------------------- /GraphBLAS/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/README.md -------------------------------------------------------------------------------- /GraphBLAS/Source/GB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Source/GB.h -------------------------------------------------------------------------------- /GraphBLAS/Source/GB_ij.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Source/GB_ij.h -------------------------------------------------------------------------------- /GraphBLAS/Source/GB_ok.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Source/GB_ok.h -------------------------------------------------------------------------------- /GraphBLAS/Source/GB_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Source/GB_op.h -------------------------------------------------------------------------------- /GraphBLAS/Source/dodiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Source/dodiff -------------------------------------------------------------------------------- /GraphBLAS/Tcov/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Tcov/Makefile -------------------------------------------------------------------------------- /GraphBLAS/Tcov/grbcov.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Tcov/grbcov.m -------------------------------------------------------------------------------- /GraphBLAS/Tcov/grbmake.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Tcov/grbmake.m -------------------------------------------------------------------------------- /GraphBLAS/Tcov/grbshow.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Tcov/grbshow.m -------------------------------------------------------------------------------- /GraphBLAS/Tcov/testcov.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Tcov/testcov.m -------------------------------------------------------------------------------- /GraphBLAS/Test/GB_mex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/GB_mex.h -------------------------------------------------------------------------------- /GraphBLAS/Test/GB_spok.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/GB_spok.m -------------------------------------------------------------------------------- /GraphBLAS/Test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/Makefile -------------------------------------------------------------------------------- /GraphBLAS/Test/atest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/atest.m -------------------------------------------------------------------------------- /GraphBLAS/Test/atest11.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/atest11.m -------------------------------------------------------------------------------- /GraphBLAS/Test/btest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/btest.m -------------------------------------------------------------------------------- /GraphBLAS/Test/ee.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/ee.m -------------------------------------------------------------------------------- /GraphBLAS/Test/eee.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/eee.m -------------------------------------------------------------------------------- /GraphBLAS/Test/etest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/etest.m -------------------------------------------------------------------------------- /GraphBLAS/Test/grbinfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/grbinfo.m -------------------------------------------------------------------------------- /GraphBLAS/Test/irand.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/irand.m -------------------------------------------------------------------------------- /GraphBLAS/Test/logstat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/logstat.m -------------------------------------------------------------------------------- /GraphBLAS/Test/make.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/make.m -------------------------------------------------------------------------------- /GraphBLAS/Test/mtest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/mtest.m -------------------------------------------------------------------------------- /GraphBLAS/Test/rtest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/rtest.m -------------------------------------------------------------------------------- /GraphBLAS/Test/runtest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/runtest.m -------------------------------------------------------------------------------- /GraphBLAS/Test/ss.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/ss.m -------------------------------------------------------------------------------- /GraphBLAS/Test/stat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/stat.m -------------------------------------------------------------------------------- /GraphBLAS/Test/stest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/stest.m -------------------------------------------------------------------------------- /GraphBLAS/Test/t74.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/t74.m -------------------------------------------------------------------------------- /GraphBLAS/Test/t99.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/t99.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test01.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test01.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test02.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test02.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test03.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test03.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test04.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test04.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test05.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test05.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test06.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test06.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test07.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test07.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test07b.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test07b.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test09.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test09.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test09b.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test09b.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test10.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test10.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test101.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test101.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test102.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test102.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test103.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test103.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test104.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test104.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test105.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test105.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test106.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test106.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test107.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test107.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test108.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test108.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test109.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test109.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test11.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test11.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test110.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test110.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test111.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test111.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test112.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test112.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test113.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test113.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test114.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test114.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test115.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test115.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test116.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test116.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test117.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test117.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test118.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test118.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test119.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test119.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test120.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test120.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test121.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test121.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test122.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test122.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test124.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test124.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test125.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test125.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test126.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test126.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test127.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test127.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test128.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test128.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test129.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test129.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test13.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test13.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test130.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test130.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test131.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test131.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test132.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test132.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test133.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test133.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test134.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test134.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test135.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test135.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test136.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test136.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test137.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test137.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test138.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test138.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test139.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test139.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test14.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test14.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test140.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test140.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test141.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test141.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test142.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test142.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test143.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test143.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test144.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test144.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test145.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test145.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test146.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test146.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test147.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test147.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test148.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test148.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test149.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test149.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test15.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test15.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test150.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test150.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test151.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test151.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test152.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test152.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test153.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test153.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test154.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test154.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test155.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test155.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test156.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test156.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test157.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test157.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test158.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test158.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test159.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test159.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test16.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test16.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test160.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test160.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test161.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test161.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test162.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test162.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test163.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test163.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test164.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test164.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test165.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test165.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test166.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test166.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test167.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test167.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test168.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test168.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test169.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test169.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test17.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test17.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test170.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test170.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test171.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test171.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test172.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test172.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test173.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test173.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test174.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test174.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test175.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test175.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test176.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test176.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test177.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test177.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test178.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test178.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test179.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test179.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test18.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test18.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test180.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test180.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test181.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test181.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test182.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test182.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test183.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test183.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test184.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test184.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test185.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test185.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test186.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test186.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test187.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test187.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test188.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test188.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test189.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test189.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test19.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test19.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test190.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test190.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test191.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test191.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test192.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test192.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test193.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test193.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test194.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test194.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test195.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test195.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test196.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test196.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test197.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test197.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test198.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test198.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test199.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test199.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test19b.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test19b.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test20.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test20.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test200.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test200.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test201.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test201.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test202.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test202.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test203.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test203.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test204.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test204.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test205.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test205.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test206.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test206.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test207.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test207.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test208.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test208.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test209.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test209.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test21.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test21.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test210.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test210.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test211.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test211.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test212.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test212.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test213.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test213.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test214.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test214.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test215.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test215.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test216.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test216.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test217.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test217.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test218.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test218.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test219.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test219.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test21b.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test21b.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test22.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test22.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test220.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test220.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test221.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test221.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test222.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test222.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test223.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test223.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test224.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test224.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test225.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test225.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test226.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test226.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test227.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test227.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test228.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test228.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test229.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test229.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test23.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test23.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test230.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test230.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test231.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test231.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test232.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test232.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test233.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test233.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test234.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test234.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test235.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test235.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test236.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test236.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test237.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test237.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test238.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test238.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test239.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test239.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test24.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test24.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test240.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test240.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test241.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test241.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test242.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test242.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test243.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test243.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test244.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test244.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test25.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test25.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test26.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test26.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test27.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test27.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test28.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test28.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test29.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test29.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test30.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test30.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test30b.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test30b.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test31.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test31.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test32.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test32.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test33.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test33.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test34.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test34.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test35.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test35.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test36.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test36.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test38.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test38.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test39.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test39.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test40.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test40.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test41.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test41.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test42.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test42.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test43.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test43.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test44.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test44.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test45.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test45.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test46.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test46.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test46b.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test46b.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test47.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test47.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test48.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test48.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test49.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test49.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test50.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test50.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test51.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test51.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test51b.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test51b.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test52.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test52.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test53.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test53.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test54.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test54.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test55.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test55.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test55b.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test55b.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test56.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test56.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test57.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test57.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test58.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test58.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test59.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test59.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test60.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test60.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test61.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test61.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test62.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test62.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test63.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test63.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test64.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test64.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test64b.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test64b.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test65.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test65.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test66.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test66.m -------------------------------------------------------------------------------- /GraphBLAS/Test/test67.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/test67.m -------------------------------------------------------------------------------- /GraphBLAS/Test/tt.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/Test/tt.m -------------------------------------------------------------------------------- /GraphBLAS/lz4/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/lz4/LICENSE -------------------------------------------------------------------------------- /GraphBLAS/lz4/lz4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/lz4/lz4.c -------------------------------------------------------------------------------- /GraphBLAS/lz4/lz4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/lz4/lz4.h -------------------------------------------------------------------------------- /GraphBLAS/lz4/lz4hc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/lz4/lz4hc.c -------------------------------------------------------------------------------- /GraphBLAS/lz4/lz4hc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/GraphBLAS/lz4/lz4hc.h -------------------------------------------------------------------------------- /KLU/Demo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/KLU/Demo/Makefile -------------------------------------------------------------------------------- /KLU/Demo/klu_simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/KLU/Demo/klu_simple.c -------------------------------------------------------------------------------- /KLU/Demo/kludemo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/KLU/Demo/kludemo.c -------------------------------------------------------------------------------- /KLU/Demo/kludemo.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/KLU/Demo/kludemo.out -------------------------------------------------------------------------------- /KLU/Demo/kluldemo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/KLU/Demo/kluldemo.c -------------------------------------------------------------------------------- /KLU/Doc/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/KLU/Doc/ChangeLog -------------------------------------------------------------------------------- /KLU/Doc/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/KLU/Doc/License.txt -------------------------------------------------------------------------------- /KLU/Doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/KLU/Doc/Makefile -------------------------------------------------------------------------------- /KLU/Doc/lesser.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/KLU/Doc/lesser.txt -------------------------------------------------------------------------------- /KLU/Include/klu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/KLU/Include/klu.h -------------------------------------------------------------------------------- /KLU/Lib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/KLU/Lib/Makefile -------------------------------------------------------------------------------- /KLU/MATLAB/Contents.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/KLU/MATLAB/Contents.m -------------------------------------------------------------------------------- /KLU/MATLAB/klu.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/KLU/MATLAB/klu.m -------------------------------------------------------------------------------- /KLU/MATLAB/klu_demo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/KLU/MATLAB/klu_demo.m -------------------------------------------------------------------------------- /KLU/MATLAB/klu_make.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/KLU/MATLAB/klu_make.m -------------------------------------------------------------------------------- /KLU/MATLAB/klu_mex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/KLU/MATLAB/klu_mex.c -------------------------------------------------------------------------------- /KLU/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/KLU/Makefile -------------------------------------------------------------------------------- /KLU/Matrix/1c.mtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/KLU/Matrix/1c.mtx -------------------------------------------------------------------------------- /KLU/Matrix/arrow.mtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/KLU/Matrix/arrow.mtx -------------------------------------------------------------------------------- /KLU/Matrix/arrowc.mtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/KLU/Matrix/arrowc.mtx -------------------------------------------------------------------------------- /KLU/Matrix/ctina.mtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/KLU/Matrix/ctina.mtx -------------------------------------------------------------------------------- /KLU/Matrix/one.mtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/KLU/Matrix/one.mtx -------------------------------------------------------------------------------- /KLU/Matrix/onec.mtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/KLU/Matrix/onec.mtx -------------------------------------------------------------------------------- /KLU/Matrix/two.mtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/KLU/Matrix/two.mtx -------------------------------------------------------------------------------- /KLU/Matrix/w156.mtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/KLU/Matrix/w156.mtx -------------------------------------------------------------------------------- /KLU/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/KLU/README.txt -------------------------------------------------------------------------------- /KLU/Source/klu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/KLU/Source/klu.c -------------------------------------------------------------------------------- /KLU/Source/klu_dump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/KLU/Source/klu_dump.c -------------------------------------------------------------------------------- /KLU/Source/klu_sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/KLU/Source/klu_sort.c -------------------------------------------------------------------------------- /KLU/Tcov/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/KLU/Tcov/Makefile -------------------------------------------------------------------------------- /KLU/Tcov/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/KLU/Tcov/README.txt -------------------------------------------------------------------------------- /KLU/Tcov/coverage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/KLU/Tcov/coverage -------------------------------------------------------------------------------- /KLU/Tcov/klultests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/KLU/Tcov/klultests -------------------------------------------------------------------------------- /KLU/Tcov/klutest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/KLU/Tcov/klutest.c -------------------------------------------------------------------------------- /KLU/Tcov/klutests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/KLU/Tcov/klutests -------------------------------------------------------------------------------- /KLU/Tcov/vklultests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/KLU/Tcov/vklultests -------------------------------------------------------------------------------- /KLU/Tcov/vklutests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/KLU/Tcov/vklutests -------------------------------------------------------------------------------- /KLU/User/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/KLU/User/Makefile -------------------------------------------------------------------------------- /KLU/User/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/KLU/User/README.txt -------------------------------------------------------------------------------- /LDL/Demo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/LDL/Demo/Makefile -------------------------------------------------------------------------------- /LDL/Demo/ldlamd.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/LDL/Demo/ldlamd.out -------------------------------------------------------------------------------- /LDL/Demo/ldllamd.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/LDL/Demo/ldllamd.out -------------------------------------------------------------------------------- /LDL/Demo/ldllmain.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/LDL/Demo/ldllmain.out -------------------------------------------------------------------------------- /LDL/Demo/ldllsimple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/LDL/Demo/ldllsimple.c -------------------------------------------------------------------------------- /LDL/Demo/ldlmain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/LDL/Demo/ldlmain.c -------------------------------------------------------------------------------- /LDL/Demo/ldlmain.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/LDL/Demo/ldlmain.out -------------------------------------------------------------------------------- /LDL/Demo/ldlsimple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/LDL/Demo/ldlsimple.c -------------------------------------------------------------------------------- /LDL/Doc/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/LDL/Doc/ChangeLog -------------------------------------------------------------------------------- /LDL/Doc/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/LDL/Doc/License.txt -------------------------------------------------------------------------------- /LDL/Doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/LDL/Doc/Makefile -------------------------------------------------------------------------------- /LDL/Doc/ldl.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/LDL/Doc/ldl.bib -------------------------------------------------------------------------------- /LDL/Doc/lesser.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/LDL/Doc/lesser.txt -------------------------------------------------------------------------------- /LDL/Include/ldl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/LDL/Include/ldl.h -------------------------------------------------------------------------------- /LDL/Lib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/LDL/Lib/Makefile -------------------------------------------------------------------------------- /LDL/MATLAB/Contents.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/LDL/MATLAB/Contents.m -------------------------------------------------------------------------------- /LDL/MATLAB/ldl_make.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/LDL/MATLAB/ldl_make.m -------------------------------------------------------------------------------- /LDL/MATLAB/ldldemo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/LDL/MATLAB/ldldemo.m -------------------------------------------------------------------------------- /LDL/MATLAB/ldlmain2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/LDL/MATLAB/ldlmain2.m -------------------------------------------------------------------------------- /LDL/MATLAB/ldlmex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/LDL/MATLAB/ldlmex.c -------------------------------------------------------------------------------- /LDL/MATLAB/ldlrow.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/LDL/MATLAB/ldlrow.m -------------------------------------------------------------------------------- /LDL/MATLAB/ldltest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/LDL/MATLAB/ldltest.m -------------------------------------------------------------------------------- /LDL/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/LDL/Makefile -------------------------------------------------------------------------------- /LDL/Matrix/A01: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/LDL/Matrix/A01 -------------------------------------------------------------------------------- /LDL/Matrix/A02: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/LDL/Matrix/A02 -------------------------------------------------------------------------------- /LDL/Matrix/A03: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/LDL/Matrix/A03 -------------------------------------------------------------------------------- /LDL/Matrix/A04: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/LDL/Matrix/A04 -------------------------------------------------------------------------------- /LDL/Matrix/A05: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/LDL/Matrix/A05 -------------------------------------------------------------------------------- /LDL/Matrix/A06: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/LDL/Matrix/A06 -------------------------------------------------------------------------------- /LDL/Matrix/A07: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/LDL/Matrix/A07 -------------------------------------------------------------------------------- /LDL/Matrix/A08: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/LDL/Matrix/A08 -------------------------------------------------------------------------------- /LDL/Matrix/A09: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/LDL/Matrix/A09 -------------------------------------------------------------------------------- /LDL/Matrix/A10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/LDL/Matrix/A10 -------------------------------------------------------------------------------- /LDL/Matrix/A11: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/LDL/Matrix/A11 -------------------------------------------------------------------------------- /LDL/Matrix/A12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/LDL/Matrix/A12 -------------------------------------------------------------------------------- /LDL/Matrix/A13: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/LDL/Matrix/A13 -------------------------------------------------------------------------------- /LDL/Matrix/A14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/LDL/Matrix/A14 -------------------------------------------------------------------------------- /LDL/Matrix/A15: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/LDL/Matrix/A15 -------------------------------------------------------------------------------- /LDL/Matrix/A16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/LDL/Matrix/A16 -------------------------------------------------------------------------------- /LDL/Matrix/A17: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/LDL/Matrix/A17 -------------------------------------------------------------------------------- /LDL/Matrix/A18: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/LDL/Matrix/A18 -------------------------------------------------------------------------------- /LDL/Matrix/A19: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/LDL/Matrix/A19 -------------------------------------------------------------------------------- /LDL/Matrix/A20: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/LDL/Matrix/A20 -------------------------------------------------------------------------------- /LDL/Matrix/A21: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/LDL/Matrix/A21 -------------------------------------------------------------------------------- /LDL/Matrix/A22: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/LDL/Matrix/A22 -------------------------------------------------------------------------------- /LDL/Matrix/A23: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/LDL/Matrix/A23 -------------------------------------------------------------------------------- /LDL/Matrix/A24: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/LDL/Matrix/A24 -------------------------------------------------------------------------------- /LDL/Matrix/A25: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/LDL/Matrix/A25 -------------------------------------------------------------------------------- /LDL/Matrix/A26: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/LDL/Matrix/A26 -------------------------------------------------------------------------------- /LDL/Matrix/A27: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/LDL/Matrix/A27 -------------------------------------------------------------------------------- /LDL/Matrix/A28: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/LDL/Matrix/A28 -------------------------------------------------------------------------------- /LDL/Matrix/A29: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/LDL/Matrix/A29 -------------------------------------------------------------------------------- /LDL/Matrix/A30: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/LDL/Matrix/A30 -------------------------------------------------------------------------------- /LDL/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/LDL/README.txt -------------------------------------------------------------------------------- /LDL/Source/ldl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/LDL/Source/ldl.c -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE.suitesparse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/LICENSE.suitesparse -------------------------------------------------------------------------------- /MATLAB_Tools/dimacs10/bad6.graph: -------------------------------------------------------------------------------- 1 | % invalid header 2 | -1 0 3 | -------------------------------------------------------------------------------- /MATLAB_Tools/gipper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/MATLAB_Tools/gipper.m -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/Makefile -------------------------------------------------------------------------------- /Mongoose/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/Mongoose/.gitignore -------------------------------------------------------------------------------- /Mongoose/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/Mongoose/.travis.yml -------------------------------------------------------------------------------- /Mongoose/Doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/Mongoose/Doc/Makefile -------------------------------------------------------------------------------- /Mongoose/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/Mongoose/Makefile -------------------------------------------------------------------------------- /Mongoose/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/Mongoose/README.md -------------------------------------------------------------------------------- /Mongoose/codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/Mongoose/codecov.yml -------------------------------------------------------------------------------- /RBio/Demo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/RBio/Demo/Makefile -------------------------------------------------------------------------------- /RBio/Demo/RBdemo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/RBio/Demo/RBdemo.c -------------------------------------------------------------------------------- /RBio/Demo/RBdemo.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/RBio/Demo/RBdemo.out -------------------------------------------------------------------------------- /RBio/Doc/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/RBio/Doc/ChangeLog -------------------------------------------------------------------------------- /RBio/Doc/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/RBio/Doc/License.txt -------------------------------------------------------------------------------- /RBio/Doc/gpl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/RBio/Doc/gpl.txt -------------------------------------------------------------------------------- /RBio/Include/RBio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/RBio/Include/RBio.h -------------------------------------------------------------------------------- /RBio/Lib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/RBio/Lib/Makefile -------------------------------------------------------------------------------- /RBio/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/RBio/Makefile -------------------------------------------------------------------------------- /RBio/RBio/Contents.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/RBio/RBio/Contents.m -------------------------------------------------------------------------------- /RBio/RBio/RBerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/RBio/RBio/RBerror.c -------------------------------------------------------------------------------- /RBio/RBio/RBfix.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/RBio/RBio/RBfix.m -------------------------------------------------------------------------------- /RBio/RBio/RBinstall.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/RBio/RBio/RBinstall.m -------------------------------------------------------------------------------- /RBio/RBio/RBmake.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/RBio/RBio/RBmake.m -------------------------------------------------------------------------------- /RBio/RBio/RBraw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/RBio/RBio/RBraw.c -------------------------------------------------------------------------------- /RBio/RBio/RBraw.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/RBio/RBio/RBraw.m -------------------------------------------------------------------------------- /RBio/RBio/RBread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/RBio/RBio/RBread.c -------------------------------------------------------------------------------- /RBio/RBio/RBread.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/RBio/RBio/RBread.m -------------------------------------------------------------------------------- /RBio/RBio/RBreade.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/RBio/RBio/RBreade.m -------------------------------------------------------------------------------- /RBio/RBio/RBtype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/RBio/RBio/RBtype.c -------------------------------------------------------------------------------- /RBio/RBio/RBtype.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/RBio/RBio/RBtype.m -------------------------------------------------------------------------------- /RBio/RBio/RBwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/RBio/RBio/RBwrite.c -------------------------------------------------------------------------------- /RBio/RBio/RBwrite.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/RBio/RBio/RBwrite.m -------------------------------------------------------------------------------- /RBio/RBio/mywest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/RBio/RBio/mywest -------------------------------------------------------------------------------- /RBio/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/RBio/README.txt -------------------------------------------------------------------------------- /RBio/Source/RBio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/RBio/Source/RBio.c -------------------------------------------------------------------------------- /RBio/Tcov/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/RBio/Tcov/Makefile -------------------------------------------------------------------------------- /RBio/Tcov/RBtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/RBio/Tcov/RBtest.c -------------------------------------------------------------------------------- /RBio/Tcov/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/RBio/Tcov/README.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/README.md -------------------------------------------------------------------------------- /README.md.suitesparse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/README.md.suitesparse -------------------------------------------------------------------------------- /SLIP_LU/Demo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/SLIP_LU/Demo/Makefile -------------------------------------------------------------------------------- /SLIP_LU/Demo/SLIPLU.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/SLIP_LU/Demo/SLIPLU.c -------------------------------------------------------------------------------- /SLIP_LU/Demo/demos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/SLIP_LU/Demo/demos.c -------------------------------------------------------------------------------- /SLIP_LU/Demo/demos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/SLIP_LU/Demo/demos.h -------------------------------------------------------------------------------- /SLIP_LU/Doc/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/SLIP_LU/Doc/ChangeLog -------------------------------------------------------------------------------- /SLIP_LU/Doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/SLIP_LU/Doc/Makefile -------------------------------------------------------------------------------- /SLIP_LU/ExampleMats/test_rhs.txt: -------------------------------------------------------------------------------- 1 | 2 2 2 | 5 5 3 | 10 10 4 | -------------------------------------------------------------------------------- /SLIP_LU/Lib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/SLIP_LU/Lib/Makefile -------------------------------------------------------------------------------- /SLIP_LU/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/SLIP_LU/Makefile -------------------------------------------------------------------------------- /SLIP_LU/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/SLIP_LU/README.md -------------------------------------------------------------------------------- /SLIP_LU/Tcov/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/SLIP_LU/Tcov/Makefile -------------------------------------------------------------------------------- /SLIP_LU/Tcov/cov.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/SLIP_LU/Tcov/cov.awk -------------------------------------------------------------------------------- /SLIP_LU/Tcov/covall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/SLIP_LU/Tcov/covall -------------------------------------------------------------------------------- /SLIP_LU/Tcov/cover: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/SLIP_LU/Tcov/cover -------------------------------------------------------------------------------- /SLIP_LU/Tcov/covs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/SLIP_LU/Tcov/covs -------------------------------------------------------------------------------- /SLIP_LU/Tcov/gcovs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/SLIP_LU/Tcov/gcovs -------------------------------------------------------------------------------- /SPQR/Demo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/SPQR/Demo/Makefile -------------------------------------------------------------------------------- /SPQR/Demo/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/SPQR/Demo/README.txt -------------------------------------------------------------------------------- /SPQR/Demo/demo_colamd.sh: -------------------------------------------------------------------------------- 1 | ./qrdemo_gpu A.mtx 2 2 | -------------------------------------------------------------------------------- /SPQR/Demo/demo_colamd2.sh: -------------------------------------------------------------------------------- 1 | ./qrdemo_gpu2 A.mtx 2 > o_colamd_withgpu 2 | -------------------------------------------------------------------------------- /SPQR/Demo/demo_colamd3.sh: -------------------------------------------------------------------------------- 1 | ./qrdemo_gpu3 A.mtx 2 > o_colamd_nogpu 2 | -------------------------------------------------------------------------------- /SPQR/Demo/demo_metis.sh: -------------------------------------------------------------------------------- 1 | ./qrdemo_gpu A.mtx 6 2 | -------------------------------------------------------------------------------- /SPQR/Demo/demo_metis2.sh: -------------------------------------------------------------------------------- 1 | ./qrdemo_gpu2 A.mtx 6 > o_metis_withgpu 2 | -------------------------------------------------------------------------------- /SPQR/Demo/demo_metis3.sh: -------------------------------------------------------------------------------- 1 | ./qrdemo_gpu3 A.mtx 6 > o_metis_nogpu 2 | -------------------------------------------------------------------------------- /SPQR/Demo/go4.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/SPQR/Demo/go4.m -------------------------------------------------------------------------------- /SPQR/Demo/go5.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/SPQR/Demo/go5.m -------------------------------------------------------------------------------- /SPQR/Demo/qrdemo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/SPQR/Demo/qrdemo.cpp -------------------------------------------------------------------------------- /SPQR/Demo/qrdemo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/SPQR/Demo/qrdemo.m -------------------------------------------------------------------------------- /SPQR/Demo/qrdemoc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/SPQR/Demo/qrdemoc.c -------------------------------------------------------------------------------- /SPQR/Demo/qrsimplec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/SPQR/Demo/qrsimplec.c -------------------------------------------------------------------------------- /SPQR/Demo/spqr_gpu.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/SPQR/Demo/spqr_gpu.m -------------------------------------------------------------------------------- /SPQR/Demo/spqr_gpu2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/SPQR/Demo/spqr_gpu2.m -------------------------------------------------------------------------------- /SPQR/Demo/spqr_gpu3.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/SPQR/Demo/spqr_gpu3.m -------------------------------------------------------------------------------- /SPQR/Doc/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/SPQR/Doc/ChangeLog -------------------------------------------------------------------------------- /SPQR/Doc/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/SPQR/Doc/License.txt -------------------------------------------------------------------------------- /SPQR/Doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/SPQR/Doc/Makefile -------------------------------------------------------------------------------- /SPQR/Doc/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/SPQR/Doc/README.txt -------------------------------------------------------------------------------- /SPQR/Doc/gpl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/SPQR/Doc/gpl.txt -------------------------------------------------------------------------------- /SPQR/Doc/spqr.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/SPQR/Doc/spqr.pdf -------------------------------------------------------------------------------- /SPQR/Include/spqr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/SPQR/Include/spqr.hpp -------------------------------------------------------------------------------- /SPQR/Lib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/SPQR/Lib/Makefile -------------------------------------------------------------------------------- /SPQR/MATLAB/spqr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/SPQR/MATLAB/spqr.cpp -------------------------------------------------------------------------------- /SPQR/MATLAB/spqr.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/SPQR/MATLAB/spqr.m -------------------------------------------------------------------------------- /SPQR/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/SPQR/Makefile -------------------------------------------------------------------------------- /SPQR/Matrix/LFAT5.mtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/SPQR/Matrix/LFAT5.mtx -------------------------------------------------------------------------------- /SPQR/Matrix/a0.mtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/SPQR/Matrix/a0.mtx -------------------------------------------------------------------------------- /SPQR/Matrix/a04.mtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/SPQR/Matrix/a04.mtx -------------------------------------------------------------------------------- /SPQR/Matrix/a1.mtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/SPQR/Matrix/a1.mtx -------------------------------------------------------------------------------- /SPQR/Matrix/a2.mtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/SPQR/Matrix/a2.mtx -------------------------------------------------------------------------------- /SPQR/Matrix/a4.mtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/SPQR/Matrix/a4.mtx -------------------------------------------------------------------------------- /SPQR/Matrix/arrow.mtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/SPQR/Matrix/arrow.mtx -------------------------------------------------------------------------------- /SPQR/Matrix/b1_ss.mtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/SPQR/Matrix/b1_ss.mtx -------------------------------------------------------------------------------- /SPQR/Matrix/c2.mtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/SPQR/Matrix/c2.mtx -------------------------------------------------------------------------------- /SPQR/Matrix/c32.mtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/SPQR/Matrix/c32.mtx -------------------------------------------------------------------------------- /SPQR/Matrix/r2.mtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/SPQR/Matrix/r2.mtx -------------------------------------------------------------------------------- /SPQR/Matrix/s32.mtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/SPQR/Matrix/s32.mtx -------------------------------------------------------------------------------- /SPQR/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/SPQR/README.txt -------------------------------------------------------------------------------- /SPQR/Tcov/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/SPQR/Tcov/Makefile -------------------------------------------------------------------------------- /SPQR/Tcov/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/SPQR/Tcov/README.txt -------------------------------------------------------------------------------- /SPQR/Tcov/cov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/SPQR/Tcov/cov -------------------------------------------------------------------------------- /SPQR/Tcov/matrix1.txt: -------------------------------------------------------------------------------- 1 | 1 ../Matrix/west0067.mtx 2 | -------------------------------------------------------------------------------- /SPQR/Tcov/qrtest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/SPQR/Tcov/qrtest.cpp -------------------------------------------------------------------------------- /SPQR/Tcov/qrtestc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/SPQR/Tcov/qrtestc.c -------------------------------------------------------------------------------- /SuiteSparse_demo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/SuiteSparse_demo.m -------------------------------------------------------------------------------- /SuiteSparse_install.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/SuiteSparse_install.m -------------------------------------------------------------------------------- /SuiteSparse_paths.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/SuiteSparse_paths.m -------------------------------------------------------------------------------- /SuiteSparse_test.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/SuiteSparse_test.m -------------------------------------------------------------------------------- /UMFPACK/Demo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/UMFPACK/Demo/Makefile -------------------------------------------------------------------------------- /UMFPACK/Demo/dospd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/UMFPACK/Demo/dospd -------------------------------------------------------------------------------- /UMFPACK/Demo/readhb.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/UMFPACK/Demo/readhb.f -------------------------------------------------------------------------------- /UMFPACK/Demo/umf4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/UMFPACK/Demo/umf4.c -------------------------------------------------------------------------------- /UMFPACK/Demo/umf4.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/UMFPACK/Demo/umf4.out -------------------------------------------------------------------------------- /UMFPACK/Demo/umf4hb.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/UMFPACK/Demo/umf4hb.f -------------------------------------------------------------------------------- /UMFPACK/Doc/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/UMFPACK/Doc/ChangeLog -------------------------------------------------------------------------------- /UMFPACK/Doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/UMFPACK/Doc/Makefile -------------------------------------------------------------------------------- /UMFPACK/Doc/gpl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/UMFPACK/Doc/gpl.txt -------------------------------------------------------------------------------- /UMFPACK/Lib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/UMFPACK/Lib/Makefile -------------------------------------------------------------------------------- /UMFPACK/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/UMFPACK/Makefile -------------------------------------------------------------------------------- /UMFPACK/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/UMFPACK/README.txt -------------------------------------------------------------------------------- /UMFPACK/Tcov/DO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/UMFPACK/Tcov/DO -------------------------------------------------------------------------------- /UMFPACK/Tcov/DO.all: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/UMFPACK/Tcov/DO.all -------------------------------------------------------------------------------- /UMFPACK/Tcov/Make.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/UMFPACK/Tcov/Make.1 -------------------------------------------------------------------------------- /UMFPACK/Tcov/Make.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/UMFPACK/Tcov/Make.2 -------------------------------------------------------------------------------- /UMFPACK/Tcov/Make.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/UMFPACK/Tcov/Make.3 -------------------------------------------------------------------------------- /UMFPACK/Tcov/Make.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/UMFPACK/Tcov/Make.4 -------------------------------------------------------------------------------- /UMFPACK/Tcov/Make.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/UMFPACK/Tcov/Make.5 -------------------------------------------------------------------------------- /UMFPACK/Tcov/Make.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/UMFPACK/Tcov/Make.6 -------------------------------------------------------------------------------- /UMFPACK/Tcov/Make.7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/UMFPACK/Tcov/Make.7 -------------------------------------------------------------------------------- /UMFPACK/Tcov/Make.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/UMFPACK/Tcov/Make.8 -------------------------------------------------------------------------------- /UMFPACK/Tcov/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/UMFPACK/Tcov/Makefile -------------------------------------------------------------------------------- /UMFPACK/Tcov/acov.di: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/UMFPACK/Tcov/acov.di -------------------------------------------------------------------------------- /UMFPACK/Tcov/acov.dl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/UMFPACK/Tcov/acov.dl -------------------------------------------------------------------------------- /UMFPACK/Tcov/acov.zi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/UMFPACK/Tcov/acov.zi -------------------------------------------------------------------------------- /UMFPACK/Tcov/acov.zl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/UMFPACK/Tcov/acov.zl -------------------------------------------------------------------------------- /UMFPACK/Tcov/badnum2.umf: -------------------------------------------------------------------------------- 1 | badnum2 2 | -------------------------------------------------------------------------------- /UMFPACK/Tcov/badsym2.umf: -------------------------------------------------------------------------------- 1 | badsym2 2 | -------------------------------------------------------------------------------- /UMFPACK/Tcov/cov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/UMFPACK/Tcov/cov -------------------------------------------------------------------------------- /UMFPACK/Tcov/covall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/UMFPACK/Tcov/covall -------------------------------------------------------------------------------- /UMFPACK/Tcov/debug.amd: -------------------------------------------------------------------------------- 1 | -5 2 | -------------------------------------------------------------------------------- /UMFPACK/Tcov/debug.umf: -------------------------------------------------------------------------------- 1 | -5 2 | -------------------------------------------------------------------------------- /UMFPACK/Tcov/ucov.di: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/UMFPACK/Tcov/ucov.di -------------------------------------------------------------------------------- /UMFPACK/Tcov/ucov.dl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/UMFPACK/Tcov/ucov.dl -------------------------------------------------------------------------------- /UMFPACK/Tcov/ucov.zi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/UMFPACK/Tcov/ucov.zi -------------------------------------------------------------------------------- /UMFPACK/Tcov/ucov.zl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/UMFPACK/Tcov/ucov.zl -------------------------------------------------------------------------------- /UMFPACK/Tcov/ut.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/UMFPACK/Tcov/ut.c -------------------------------------------------------------------------------- /cmake/FindMETIS.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/cmake/FindMETIS.cmake -------------------------------------------------------------------------------- /cmake/FindPatch.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/cmake/FindPatch.cmake -------------------------------------------------------------------------------- /ssget/Contents.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/ssget/Contents.m -------------------------------------------------------------------------------- /ssget/Doc/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/ssget/Doc/ChangeLog -------------------------------------------------------------------------------- /ssget/Doc/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/ssget/Doc/License.txt -------------------------------------------------------------------------------- /ssget/Doc/hb.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/ssget/Doc/hb.pdf -------------------------------------------------------------------------------- /ssget/Doc/nep.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/ssget/Doc/nep.pdf -------------------------------------------------------------------------------- /ssget/Doc/rb.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/ssget/Doc/rb.pdf -------------------------------------------------------------------------------- /ssget/MM/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/ssget/MM/.gitignore -------------------------------------------------------------------------------- /ssget/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/ssget/Makefile -------------------------------------------------------------------------------- /ssget/RB/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/ssget/RB/.gitignore -------------------------------------------------------------------------------- /ssget/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/ssget/README.txt -------------------------------------------------------------------------------- /ssget/UFget.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/ssget/UFget.m -------------------------------------------------------------------------------- /ssget/UFkinds.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/ssget/UFkinds.m -------------------------------------------------------------------------------- /ssget/files/Li/li.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/ssget/files/Li/li.png -------------------------------------------------------------------------------- /ssget/mat/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/ssget/mat/.gitignore -------------------------------------------------------------------------------- /ssget/ssget.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/ssget/ssget.m -------------------------------------------------------------------------------- /ssget/ssget_example.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/ssget/ssget_example.m -------------------------------------------------------------------------------- /ssget/ssget_lookup.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/ssget/ssget_lookup.m -------------------------------------------------------------------------------- /ssget/ssgrep.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/ssget/ssgrep.m -------------------------------------------------------------------------------- /ssget/ssgui.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/ssget/ssgui.jar -------------------------------------------------------------------------------- /ssget/ssgui.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/ssget/ssgui.java -------------------------------------------------------------------------------- /ssget/sshelp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/ssget/sshelp.html -------------------------------------------------------------------------------- /ssget/sskinds.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/ssget/sskinds.m -------------------------------------------------------------------------------- /ssget/sssvd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/ssget/sssvd.m -------------------------------------------------------------------------------- /ssget/ssweb.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/ssget/ssweb.m -------------------------------------------------------------------------------- /ssget/svd/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiud/SuiteSparse/HEAD/ssget/svd/.gitignore --------------------------------------------------------------------------------