├── README.md ├── bayesian ├── LICENSE ├── README.md ├── bayesian.go ├── bayesian_test.go └── todo.txt ├── blas ├── .gitignore ├── LICENSE ├── README.md ├── common.go ├── d_test.go ├── dasum.go ├── daxpy.go ├── dcopy.go ├── ddot.go ├── dgemv.go ├── dnrm2.go ├── doc.go ├── drot.go ├── drotg.go ├── drotmg.go ├── dscal.go ├── dswap.go ├── idamax.go ├── isamax.go ├── s_test.go ├── sasum.go ├── saxpy.go ├── scopy.go ├── sdot.go ├── sdsdot.go ├── snrm2.go ├── srot.go ├── srotg.go ├── sscal.go ├── sswap.go └── stubs.bash ├── cartconvert ├── .godir ├── LICENSE ├── Procfile ├── README.md ├── cartconvert │ ├── README.md │ ├── bmn │ │ ├── README.md │ │ ├── bmn.go │ │ └── bmn_test.go │ ├── cartconvert.go │ ├── cartconvert_test.go │ ├── lv03p │ │ ├── lv03p.go │ │ └── lv03p_test.go │ └── osgb36 │ │ ├── README.md │ │ ├── osgb36.go │ │ └── osgb36_test.go ├── cartconvserv │ ├── README.md │ ├── cartconvserv.go │ ├── config.go │ ├── config.json │ ├── docserv.go │ ├── main.go │ ├── static │ │ ├── css │ │ │ └── styles.css │ │ ├── images │ │ │ ├── accept_bc2s_100x35.png │ │ │ └── favicon.png │ │ └── js │ │ │ └── cartconvserv.js │ └── template │ │ ├── api │ │ └── index.tpl │ │ ├── doc │ │ ├── bmn.tpl │ │ ├── default.tpl │ │ ├── geohash.tpl │ │ ├── index.tpl │ │ ├── latlong.tpl │ │ ├── osgb.tpl │ │ └── utm.tpl │ │ └── index.tpl └── conv │ ├── README.md │ ├── bmntest.dat │ ├── conv.go │ └── osgbtest.dat ├── chinaid ├── README.md ├── china_id.go └── chinaid_test.go ├── cvx ├── .gitignore ├── COPYING ├── COPYING.GPL ├── README.md ├── checkpnt │ ├── ckp.go │ └── ckp_test.go ├── conelp.go ├── conelp_test.go ├── coneqp.go ├── coneqp_test.go ├── cp.go ├── cp_test.go ├── cpl.go ├── cvx.go ├── cvx_test.go ├── doc.go ├── gp.go ├── gp_test.go ├── interfaces.go ├── kkt.go ├── mcsdp_test.go ├── misc.go ├── sets │ └── sets.go ├── simple_test.go └── solvers.go ├── dice ├── .gitignore ├── LICENSE ├── README.md ├── dice.go ├── dice_test.go ├── rng.go └── throwdice │ ├── doc.go │ └── throwdice.go ├── evaler ├── .gitignore ├── .travis.yml ├── LICENSE.txt ├── README.md ├── evaler.go ├── evaler_test.go └── stack │ ├── stack.go │ └── stack_test.go ├── fixed ├── README └── fixed.go ├── ga ├── README.markdown ├── breeder.go ├── example │ ├── floating.go │ ├── floating_parallel.go │ ├── ordered_int.go │ └── subset_sum.go ├── ga.go ├── ga_parallel.go ├── genome.go ├── genome_fixed_bitstring.go ├── genome_float64.go ├── genome_ordered_int.go ├── initializer.go ├── mutator.go ├── mutator_gaussian.go ├── mutator_multi.go ├── mutator_shift.go ├── mutator_switch.go └── selector.go ├── geom ├── .gitignore ├── LICENSE ├── README ├── coord.go ├── debug.go ├── geom.go ├── line.go ├── line_test.go ├── path.go ├── point_test.go ├── poly.go ├── poly_test.go ├── qtree │ ├── overlap_test.go │ ├── qtree.go │ └── qtree_test.go ├── rect.go ├── rect_test.go ├── segment.go ├── tri.go └── util.go ├── go-humanize ├── .gitignore ├── LICENSE ├── README.markdown ├── big.go ├── bigbytes.go ├── bigbytes_test.go ├── bytes.go ├── bytes_test.go ├── comma.go ├── comma_test.go ├── common_test.go ├── ftoa.go ├── ftoa_test.go ├── humanize.go ├── number.go ├── number_test.go ├── ordinals.go ├── ordinals_test.go ├── si.go ├── si_test.go ├── times.go └── times_test.go ├── go-lm ├── .gitignore ├── LICENSE ├── README.md ├── interfaceBLAS-LAPACK.c ├── interfaceBLAS-LAPACK.h ├── lm.go ├── lmT.c ├── lmT.h ├── lm_test.go ├── wls.c └── wls.h ├── go-symexpr ├── LICENSE.md ├── README.md ├── compare.go ├── convert.go ├── deriv.go ├── eval.go ├── expr.go ├── expr_test.go ├── getset.go ├── has.go ├── lexer.go ├── lexer_test.go ├── parse.go ├── print.go ├── simp.go ├── simp_test.go ├── stats.go └── types.go ├── go.mahalanobis ├── .gitignore ├── IDEA.txt ├── LICENSE ├── README.txt ├── mahalanobis.go └── mahalanobis_test.go ├── go.matrix ├── AUTHORS ├── LICENSE ├── README ├── arithmetic.go ├── dense.go ├── dense_arithmetic.go ├── dense_basic.go ├── dense_data.go ├── dense_decomp.go ├── dense_eigen.go ├── dense_svd.go ├── dense_test.go ├── densebench_test.go ├── error.go ├── matrix.go ├── matrix_test.go ├── pivot.go ├── pivot_arithmetic.go ├── pivot_basic.go ├── pivot_test.go ├── sparse.go ├── sparse_arithmetic.go ├── sparse_basic.go ├── sparse_test.go └── util.go ├── linalg ├── .gitignore ├── COPYING ├── COPYING.GPL ├── README ├── README.md ├── blas │ ├── all_complex.go │ ├── all_float.go │ ├── blas.h │ ├── blas_test.go │ ├── cgo_complex.go │ ├── cgo_double.go │ ├── doc.go │ ├── indexcheck.go │ ├── level1.go │ ├── level2.go │ └── level3.go ├── consts.go ├── indexes.go └── lapack │ └── acent_test.go ├── mathutil ├── AUTHORS ├── CONTRIBUTORS ├── LICENSE ├── Makefile ├── README ├── all_test.go ├── bits.go ├── envelope.go ├── example │ ├── .gitignore │ └── example.go ├── example2 │ ├── .gitignore │ └── example2.go ├── example3 │ ├── .gitignore │ └── example3.go ├── example4 │ ├── main.go │ └── results ├── ff │ └── main.go ├── mathutil.go ├── mersenne │ ├── AUTHORS │ ├── CONTRIBUTORS │ ├── LICENSE │ ├── Makefile │ ├── README │ ├── all_test.go │ └── mersenne.go ├── nist-sts-2-1-1-report ├── permute.go ├── primes.go ├── rat.go ├── rnd.go ├── tables.go └── test_deps.go ├── matops ├── .gitignore ├── COPYING ├── COPYING.GPL ├── README.md ├── banded.go ├── calgo │ ├── calgo_test.go │ ├── cmops.go │ ├── cmops.h │ ├── colcpy.h │ ├── dmmat_gemm.c │ ├── dmmat_plus.c │ ├── dmmat_rank.c │ ├── dmmat_solve.c │ ├── dmmat_symm.c │ ├── dmmat_trid.c │ ├── dmvec_gemv.c │ ├── dmvec_rank.c │ ├── dmvec_solve.c │ ├── dmvec_trid.c │ ├── dvec_util.c │ ├── inner_axpy.h │ ├── inner_ddot.h │ ├── inner_ddot_trans.h │ ├── inner_dot.h │ ├── inner_vec_axpy.h │ ├── inner_vec_dot.h │ ├── removed.go │ ├── tmult_test.go │ ├── trank_test.go │ ├── tsolve_test.go │ ├── ttrm_test.go │ └── vec_scale.c ├── chol.go ├── chol_test.go ├── decomp_test.go ├── deprec.go ├── diag.go ├── house.go ├── ldl.go ├── ldl_test.go ├── ldlbk.go ├── ldlbkl_test.go ├── ldlbks.go ├── ldlbku_test.go ├── ldlnp.go ├── lu.go ├── lu_test.go ├── mmult.go ├── mvec.go ├── norm.go ├── partition.go ├── pivot.go ├── qr_test.go ├── qrwy.go ├── qrwyk.go ├── qrwym.go ├── simple_test.go ├── test │ ├── mmperf.go │ ├── mvperf.go │ ├── notrans.png │ ├── parallel.png │ ├── perf.py │ ├── perf_chol.go │ ├── perf_ldl.go │ ├── perf_ldlbk.go │ ├── perf_lu.go │ ├── perf_qr.go │ ├── symperf.go │ └── transa.png ├── tri.go ├── trinv.go └── trinv_test.go ├── matrix ├── .gitignore ├── COPYING ├── COPYING.GPL ├── README.md ├── bool.go ├── calgo │ ├── calgo_test.go │ ├── cmult.go │ └── matmult.c ├── cdense.go ├── cdense_bool.go ├── cdense_math.go ├── cdense_string.go ├── cdense_test.go ├── cmath │ ├── math.go │ └── math_test.go ├── dense.go ├── dense_bool.go ├── dense_depreceated.go ├── dense_math.go ├── dense_string.go ├── dense_test.go ├── error.go ├── math.go └── matrix.go ├── mt19937_64 ├── README.md └── mt19937_64.go ├── paicehusk ├── .gitignore ├── LICENSE ├── README.md ├── stemmer.go └── stemmer_test.go ├── polyclip-go ├── .travis.yml ├── README.md ├── bugs_test.go ├── clipper.go ├── connector.go ├── connector_test.go ├── endpoint.go ├── endpoint_test.go ├── eventqueue.go ├── geom.go ├── geom_test.go ├── pointchain.go ├── pointchain_test.go ├── polyutil │ ├── draw.go │ ├── draw_test.go │ ├── encdec.go │ └── encdec_test.go ├── sweepline.go ├── sweepline_test.go └── test │ └── drawpolys.go ├── porterstemmer ├── LICENSE ├── README.md ├── porterstemmer.go ├── porterstemmer_contains_vowel_test.go ├── porterstemmer_fixes_test.go ├── porterstemmer_has_repeat_double_consonant_suffix_test.go ├── porterstemmer_has_suffix.go ├── porterstemmer_is_consontant_test.go ├── porterstemmer_measure_test.go ├── porterstemmer_stem_string_test.go ├── porterstemmer_stem_without_lower_casing_test.go ├── porterstemmer_step1a_test.go ├── porterstemmer_step1b_test.go ├── porterstemmer_step1c_test.go ├── porterstemmer_step2_test.go ├── porterstemmer_step3_test.go ├── porterstemmer_step4_test.go ├── porterstemmer_step5a_test.go └── porterstemmer_step5b_test.go ├── pso-go ├── LICENSE ├── README.md ├── particle.go ├── pso_test.go └── solver.go ├── schoolcalc ├── .godir ├── LICENSE ├── Procfile ├── Procfile.dev ├── README.md ├── TODO.txt ├── schoolcalc │ ├── README.md │ ├── schoolcalc.go │ └── schoolcalc_test.go ├── sdivcon │ └── sdivcon.go └── webzapfen │ ├── config.go │ ├── config.live.json │ ├── main.go │ ├── pages │ └── en.about.html │ ├── static │ ├── css │ │ └── styles.css │ └── images │ │ ├── bg.png │ │ ├── favicon.png │ │ ├── footer.png │ │ └── logo.png │ ├── templates │ ├── en.division.tpl │ ├── en.excercise.tpl │ ├── en.index.tpl │ ├── en.zapfen.tpl │ └── root.tpl │ └── webzapfen.go ├── sortutil ├── AUTHORS ├── CONTRIBUTORS ├── LICENSE ├── Makefile ├── README ├── all_test.go └── sortutil.go ├── stat ├── .travis.yml ├── COPYING ├── README.md ├── absdev.go ├── benchmark_test.go ├── covariance.go ├── example_test.go ├── float64_test.go ├── int_test.go ├── kurtosis.go ├── lag-1.go ├── main_test.go ├── mean.go ├── median.go ├── minmax.go ├── nist_test.go ├── pvariance.go ├── quantiles.go ├── skew.go ├── ttest.go ├── types.go ├── variance.go ├── wabsdev.go ├── wkurtosis.go ├── wmean.go ├── wskew.go └── wvariance.go ├── units ├── .gitignore ├── LICENSE ├── README.md ├── angle.go ├── angular_velocity.go ├── coordinate.go ├── distance.go ├── units.go ├── units_test.go └── velocity.go └── vector ├── .gitignore ├── COPYING ├── README.md ├── errors.go ├── header ├── vector.go └── vector_test.go /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/README.md -------------------------------------------------------------------------------- /bayesian/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/bayesian/LICENSE -------------------------------------------------------------------------------- /bayesian/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/bayesian/README.md -------------------------------------------------------------------------------- /bayesian/bayesian.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/bayesian/bayesian.go -------------------------------------------------------------------------------- /bayesian/bayesian_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/bayesian/bayesian_test.go -------------------------------------------------------------------------------- /bayesian/todo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/bayesian/todo.txt -------------------------------------------------------------------------------- /blas/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/blas/.gitignore -------------------------------------------------------------------------------- /blas/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/blas/LICENSE -------------------------------------------------------------------------------- /blas/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/blas/README.md -------------------------------------------------------------------------------- /blas/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/blas/common.go -------------------------------------------------------------------------------- /blas/d_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/blas/d_test.go -------------------------------------------------------------------------------- /blas/dasum.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/blas/dasum.go -------------------------------------------------------------------------------- /blas/daxpy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/blas/daxpy.go -------------------------------------------------------------------------------- /blas/dcopy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/blas/dcopy.go -------------------------------------------------------------------------------- /blas/ddot.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/blas/ddot.go -------------------------------------------------------------------------------- /blas/dgemv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/blas/dgemv.go -------------------------------------------------------------------------------- /blas/dnrm2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/blas/dnrm2.go -------------------------------------------------------------------------------- /blas/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/blas/doc.go -------------------------------------------------------------------------------- /blas/drot.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/blas/drot.go -------------------------------------------------------------------------------- /blas/drotg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/blas/drotg.go -------------------------------------------------------------------------------- /blas/drotmg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/blas/drotmg.go -------------------------------------------------------------------------------- /blas/dscal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/blas/dscal.go -------------------------------------------------------------------------------- /blas/dswap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/blas/dswap.go -------------------------------------------------------------------------------- /blas/idamax.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/blas/idamax.go -------------------------------------------------------------------------------- /blas/isamax.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/blas/isamax.go -------------------------------------------------------------------------------- /blas/s_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/blas/s_test.go -------------------------------------------------------------------------------- /blas/sasum.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/blas/sasum.go -------------------------------------------------------------------------------- /blas/saxpy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/blas/saxpy.go -------------------------------------------------------------------------------- /blas/scopy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/blas/scopy.go -------------------------------------------------------------------------------- /blas/sdot.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/blas/sdot.go -------------------------------------------------------------------------------- /blas/sdsdot.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/blas/sdsdot.go -------------------------------------------------------------------------------- /blas/snrm2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/blas/snrm2.go -------------------------------------------------------------------------------- /blas/srot.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/blas/srot.go -------------------------------------------------------------------------------- /blas/srotg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/blas/srotg.go -------------------------------------------------------------------------------- /blas/sscal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/blas/sscal.go -------------------------------------------------------------------------------- /blas/sswap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/blas/sswap.go -------------------------------------------------------------------------------- /blas/stubs.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/blas/stubs.bash -------------------------------------------------------------------------------- /cartconvert/.godir: -------------------------------------------------------------------------------- 1 | github.com/the42/cartconvert 2 | -------------------------------------------------------------------------------- /cartconvert/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/cartconvert/LICENSE -------------------------------------------------------------------------------- /cartconvert/Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/cartconvert/Procfile -------------------------------------------------------------------------------- /cartconvert/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/cartconvert/README.md -------------------------------------------------------------------------------- /cartconvert/cartconvert/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/cartconvert/cartconvert/README.md -------------------------------------------------------------------------------- /cartconvert/cartconvert/bmn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/cartconvert/cartconvert/bmn/README.md -------------------------------------------------------------------------------- /cartconvert/cartconvert/bmn/bmn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/cartconvert/cartconvert/bmn/bmn.go -------------------------------------------------------------------------------- /cartconvert/cartconvert/bmn/bmn_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/cartconvert/cartconvert/bmn/bmn_test.go -------------------------------------------------------------------------------- /cartconvert/cartconvert/cartconvert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/cartconvert/cartconvert/cartconvert.go -------------------------------------------------------------------------------- /cartconvert/cartconvert/cartconvert_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/cartconvert/cartconvert/cartconvert_test.go -------------------------------------------------------------------------------- /cartconvert/cartconvert/lv03p/lv03p.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/cartconvert/cartconvert/lv03p/lv03p.go -------------------------------------------------------------------------------- /cartconvert/cartconvert/lv03p/lv03p_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/cartconvert/cartconvert/lv03p/lv03p_test.go -------------------------------------------------------------------------------- /cartconvert/cartconvert/osgb36/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/cartconvert/cartconvert/osgb36/README.md -------------------------------------------------------------------------------- /cartconvert/cartconvert/osgb36/osgb36.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/cartconvert/cartconvert/osgb36/osgb36.go -------------------------------------------------------------------------------- /cartconvert/cartconvert/osgb36/osgb36_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/cartconvert/cartconvert/osgb36/osgb36_test.go -------------------------------------------------------------------------------- /cartconvert/cartconvserv/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/cartconvert/cartconvserv/README.md -------------------------------------------------------------------------------- /cartconvert/cartconvserv/cartconvserv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/cartconvert/cartconvserv/cartconvserv.go -------------------------------------------------------------------------------- /cartconvert/cartconvserv/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/cartconvert/cartconvserv/config.go -------------------------------------------------------------------------------- /cartconvert/cartconvserv/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/cartconvert/cartconvserv/config.json -------------------------------------------------------------------------------- /cartconvert/cartconvserv/docserv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/cartconvert/cartconvserv/docserv.go -------------------------------------------------------------------------------- /cartconvert/cartconvserv/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/cartconvert/cartconvserv/main.go -------------------------------------------------------------------------------- /cartconvert/cartconvserv/static/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/cartconvert/cartconvserv/static/css/styles.css -------------------------------------------------------------------------------- /cartconvert/cartconvserv/static/images/accept_bc2s_100x35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/cartconvert/cartconvserv/static/images/accept_bc2s_100x35.png -------------------------------------------------------------------------------- /cartconvert/cartconvserv/static/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/cartconvert/cartconvserv/static/images/favicon.png -------------------------------------------------------------------------------- /cartconvert/cartconvserv/static/js/cartconvserv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/cartconvert/cartconvserv/static/js/cartconvserv.js -------------------------------------------------------------------------------- /cartconvert/cartconvserv/template/api/index.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/cartconvert/cartconvserv/template/api/index.tpl -------------------------------------------------------------------------------- /cartconvert/cartconvserv/template/doc/bmn.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/cartconvert/cartconvserv/template/doc/bmn.tpl -------------------------------------------------------------------------------- /cartconvert/cartconvserv/template/doc/default.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/cartconvert/cartconvserv/template/doc/default.tpl -------------------------------------------------------------------------------- /cartconvert/cartconvserv/template/doc/geohash.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/cartconvert/cartconvserv/template/doc/geohash.tpl -------------------------------------------------------------------------------- /cartconvert/cartconvserv/template/doc/index.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/cartconvert/cartconvserv/template/doc/index.tpl -------------------------------------------------------------------------------- /cartconvert/cartconvserv/template/doc/latlong.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/cartconvert/cartconvserv/template/doc/latlong.tpl -------------------------------------------------------------------------------- /cartconvert/cartconvserv/template/doc/osgb.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/cartconvert/cartconvserv/template/doc/osgb.tpl -------------------------------------------------------------------------------- /cartconvert/cartconvserv/template/doc/utm.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/cartconvert/cartconvserv/template/doc/utm.tpl -------------------------------------------------------------------------------- /cartconvert/cartconvserv/template/index.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/cartconvert/cartconvserv/template/index.tpl -------------------------------------------------------------------------------- /cartconvert/conv/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/cartconvert/conv/README.md -------------------------------------------------------------------------------- /cartconvert/conv/bmntest.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/cartconvert/conv/bmntest.dat -------------------------------------------------------------------------------- /cartconvert/conv/conv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/cartconvert/conv/conv.go -------------------------------------------------------------------------------- /cartconvert/conv/osgbtest.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/cartconvert/conv/osgbtest.dat -------------------------------------------------------------------------------- /chinaid/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/chinaid/README.md -------------------------------------------------------------------------------- /chinaid/china_id.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/chinaid/china_id.go -------------------------------------------------------------------------------- /chinaid/chinaid_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/chinaid/chinaid_test.go -------------------------------------------------------------------------------- /cvx/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/cvx/.gitignore -------------------------------------------------------------------------------- /cvx/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/cvx/COPYING -------------------------------------------------------------------------------- /cvx/COPYING.GPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/cvx/COPYING.GPL -------------------------------------------------------------------------------- /cvx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/cvx/README.md -------------------------------------------------------------------------------- /cvx/checkpnt/ckp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/cvx/checkpnt/ckp.go -------------------------------------------------------------------------------- /cvx/checkpnt/ckp_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/cvx/checkpnt/ckp_test.go -------------------------------------------------------------------------------- /cvx/conelp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/cvx/conelp.go -------------------------------------------------------------------------------- /cvx/conelp_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/cvx/conelp_test.go -------------------------------------------------------------------------------- /cvx/coneqp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/cvx/coneqp.go -------------------------------------------------------------------------------- /cvx/coneqp_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/cvx/coneqp_test.go -------------------------------------------------------------------------------- /cvx/cp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/cvx/cp.go -------------------------------------------------------------------------------- /cvx/cp_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/cvx/cp_test.go -------------------------------------------------------------------------------- /cvx/cpl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/cvx/cpl.go -------------------------------------------------------------------------------- /cvx/cvx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/cvx/cvx.go -------------------------------------------------------------------------------- /cvx/cvx_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/cvx/cvx_test.go -------------------------------------------------------------------------------- /cvx/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/cvx/doc.go -------------------------------------------------------------------------------- /cvx/gp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/cvx/gp.go -------------------------------------------------------------------------------- /cvx/gp_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/cvx/gp_test.go -------------------------------------------------------------------------------- /cvx/interfaces.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/cvx/interfaces.go -------------------------------------------------------------------------------- /cvx/kkt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/cvx/kkt.go -------------------------------------------------------------------------------- /cvx/mcsdp_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/cvx/mcsdp_test.go -------------------------------------------------------------------------------- /cvx/misc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/cvx/misc.go -------------------------------------------------------------------------------- /cvx/sets/sets.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/cvx/sets/sets.go -------------------------------------------------------------------------------- /cvx/simple_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/cvx/simple_test.go -------------------------------------------------------------------------------- /cvx/solvers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/cvx/solvers.go -------------------------------------------------------------------------------- /dice/.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | *.iml 3 | -------------------------------------------------------------------------------- /dice/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/dice/LICENSE -------------------------------------------------------------------------------- /dice/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/dice/README.md -------------------------------------------------------------------------------- /dice/dice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/dice/dice.go -------------------------------------------------------------------------------- /dice/dice_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/dice/dice_test.go -------------------------------------------------------------------------------- /dice/rng.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/dice/rng.go -------------------------------------------------------------------------------- /dice/throwdice/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/dice/throwdice/doc.go -------------------------------------------------------------------------------- /dice/throwdice/throwdice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/dice/throwdice/throwdice.go -------------------------------------------------------------------------------- /evaler/.gitignore: -------------------------------------------------------------------------------- 1 | .*.sw* 2 | *.orig 3 | -------------------------------------------------------------------------------- /evaler/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/evaler/.travis.yml -------------------------------------------------------------------------------- /evaler/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/evaler/LICENSE.txt -------------------------------------------------------------------------------- /evaler/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/evaler/README.md -------------------------------------------------------------------------------- /evaler/evaler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/evaler/evaler.go -------------------------------------------------------------------------------- /evaler/evaler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/evaler/evaler_test.go -------------------------------------------------------------------------------- /evaler/stack/stack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/evaler/stack/stack.go -------------------------------------------------------------------------------- /evaler/stack/stack_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/evaler/stack/stack_test.go -------------------------------------------------------------------------------- /fixed/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/fixed/README -------------------------------------------------------------------------------- /fixed/fixed.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/fixed/fixed.go -------------------------------------------------------------------------------- /ga/README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/ga/README.markdown -------------------------------------------------------------------------------- /ga/breeder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/ga/breeder.go -------------------------------------------------------------------------------- /ga/example/floating.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/ga/example/floating.go -------------------------------------------------------------------------------- /ga/example/floating_parallel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/ga/example/floating_parallel.go -------------------------------------------------------------------------------- /ga/example/ordered_int.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/ga/example/ordered_int.go -------------------------------------------------------------------------------- /ga/example/subset_sum.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/ga/example/subset_sum.go -------------------------------------------------------------------------------- /ga/ga.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/ga/ga.go -------------------------------------------------------------------------------- /ga/ga_parallel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/ga/ga_parallel.go -------------------------------------------------------------------------------- /ga/genome.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/ga/genome.go -------------------------------------------------------------------------------- /ga/genome_fixed_bitstring.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/ga/genome_fixed_bitstring.go -------------------------------------------------------------------------------- /ga/genome_float64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/ga/genome_float64.go -------------------------------------------------------------------------------- /ga/genome_ordered_int.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/ga/genome_ordered_int.go -------------------------------------------------------------------------------- /ga/initializer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/ga/initializer.go -------------------------------------------------------------------------------- /ga/mutator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/ga/mutator.go -------------------------------------------------------------------------------- /ga/mutator_gaussian.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/ga/mutator_gaussian.go -------------------------------------------------------------------------------- /ga/mutator_multi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/ga/mutator_multi.go -------------------------------------------------------------------------------- /ga/mutator_shift.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/ga/mutator_shift.go -------------------------------------------------------------------------------- /ga/mutator_switch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/ga/mutator_switch.go -------------------------------------------------------------------------------- /ga/selector.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/ga/selector.go -------------------------------------------------------------------------------- /geom/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | _obj 3 | *.6 4 | -------------------------------------------------------------------------------- /geom/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/geom/LICENSE -------------------------------------------------------------------------------- /geom/README: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /geom/coord.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/geom/coord.go -------------------------------------------------------------------------------- /geom/debug.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/geom/debug.go -------------------------------------------------------------------------------- /geom/geom.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/geom/geom.go -------------------------------------------------------------------------------- /geom/line.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/geom/line.go -------------------------------------------------------------------------------- /geom/line_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/geom/line_test.go -------------------------------------------------------------------------------- /geom/path.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/geom/path.go -------------------------------------------------------------------------------- /geom/point_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/geom/point_test.go -------------------------------------------------------------------------------- /geom/poly.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/geom/poly.go -------------------------------------------------------------------------------- /geom/poly_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/geom/poly_test.go -------------------------------------------------------------------------------- /geom/qtree/overlap_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/geom/qtree/overlap_test.go -------------------------------------------------------------------------------- /geom/qtree/qtree.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/geom/qtree/qtree.go -------------------------------------------------------------------------------- /geom/qtree/qtree_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/geom/qtree/qtree_test.go -------------------------------------------------------------------------------- /geom/rect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/geom/rect.go -------------------------------------------------------------------------------- /geom/rect_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/geom/rect_test.go -------------------------------------------------------------------------------- /geom/segment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/geom/segment.go -------------------------------------------------------------------------------- /geom/tri.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/geom/tri.go -------------------------------------------------------------------------------- /geom/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/geom/util.go -------------------------------------------------------------------------------- /go-humanize/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/go-humanize/.gitignore -------------------------------------------------------------------------------- /go-humanize/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/go-humanize/LICENSE -------------------------------------------------------------------------------- /go-humanize/README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/go-humanize/README.markdown -------------------------------------------------------------------------------- /go-humanize/big.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/go-humanize/big.go -------------------------------------------------------------------------------- /go-humanize/bigbytes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/go-humanize/bigbytes.go -------------------------------------------------------------------------------- /go-humanize/bigbytes_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/go-humanize/bigbytes_test.go -------------------------------------------------------------------------------- /go-humanize/bytes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/go-humanize/bytes.go -------------------------------------------------------------------------------- /go-humanize/bytes_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/go-humanize/bytes_test.go -------------------------------------------------------------------------------- /go-humanize/comma.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/go-humanize/comma.go -------------------------------------------------------------------------------- /go-humanize/comma_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/go-humanize/comma_test.go -------------------------------------------------------------------------------- /go-humanize/common_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/go-humanize/common_test.go -------------------------------------------------------------------------------- /go-humanize/ftoa.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/go-humanize/ftoa.go -------------------------------------------------------------------------------- /go-humanize/ftoa_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/go-humanize/ftoa_test.go -------------------------------------------------------------------------------- /go-humanize/humanize.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/go-humanize/humanize.go -------------------------------------------------------------------------------- /go-humanize/number.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/go-humanize/number.go -------------------------------------------------------------------------------- /go-humanize/number_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/go-humanize/number_test.go -------------------------------------------------------------------------------- /go-humanize/ordinals.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/go-humanize/ordinals.go -------------------------------------------------------------------------------- /go-humanize/ordinals_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/go-humanize/ordinals_test.go -------------------------------------------------------------------------------- /go-humanize/si.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/go-humanize/si.go -------------------------------------------------------------------------------- /go-humanize/si_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/go-humanize/si_test.go -------------------------------------------------------------------------------- /go-humanize/times.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/go-humanize/times.go -------------------------------------------------------------------------------- /go-humanize/times_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/go-humanize/times_test.go -------------------------------------------------------------------------------- /go-lm/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/go-lm/.gitignore -------------------------------------------------------------------------------- /go-lm/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/go-lm/LICENSE -------------------------------------------------------------------------------- /go-lm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/go-lm/README.md -------------------------------------------------------------------------------- /go-lm/interfaceBLAS-LAPACK.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/go-lm/interfaceBLAS-LAPACK.c -------------------------------------------------------------------------------- /go-lm/interfaceBLAS-LAPACK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/go-lm/interfaceBLAS-LAPACK.h -------------------------------------------------------------------------------- /go-lm/lm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/go-lm/lm.go -------------------------------------------------------------------------------- /go-lm/lmT.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/go-lm/lmT.c -------------------------------------------------------------------------------- /go-lm/lmT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/go-lm/lmT.h -------------------------------------------------------------------------------- /go-lm/lm_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/go-lm/lm_test.go -------------------------------------------------------------------------------- /go-lm/wls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/go-lm/wls.c -------------------------------------------------------------------------------- /go-lm/wls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/go-lm/wls.h -------------------------------------------------------------------------------- /go-symexpr/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/go-symexpr/LICENSE.md -------------------------------------------------------------------------------- /go-symexpr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/go-symexpr/README.md -------------------------------------------------------------------------------- /go-symexpr/compare.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/go-symexpr/compare.go -------------------------------------------------------------------------------- /go-symexpr/convert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/go-symexpr/convert.go -------------------------------------------------------------------------------- /go-symexpr/deriv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/go-symexpr/deriv.go -------------------------------------------------------------------------------- /go-symexpr/eval.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/go-symexpr/eval.go -------------------------------------------------------------------------------- /go-symexpr/expr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/go-symexpr/expr.go -------------------------------------------------------------------------------- /go-symexpr/expr_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/go-symexpr/expr_test.go -------------------------------------------------------------------------------- /go-symexpr/getset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/go-symexpr/getset.go -------------------------------------------------------------------------------- /go-symexpr/has.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/go-symexpr/has.go -------------------------------------------------------------------------------- /go-symexpr/lexer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/go-symexpr/lexer.go -------------------------------------------------------------------------------- /go-symexpr/lexer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/go-symexpr/lexer_test.go -------------------------------------------------------------------------------- /go-symexpr/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/go-symexpr/parse.go -------------------------------------------------------------------------------- /go-symexpr/print.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/go-symexpr/print.go -------------------------------------------------------------------------------- /go-symexpr/simp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/go-symexpr/simp.go -------------------------------------------------------------------------------- /go-symexpr/simp_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/go-symexpr/simp_test.go -------------------------------------------------------------------------------- /go-symexpr/stats.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/go-symexpr/stats.go -------------------------------------------------------------------------------- /go-symexpr/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/go-symexpr/types.go -------------------------------------------------------------------------------- /go.mahalanobis/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /go.mahalanobis/IDEA.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/go.mahalanobis/IDEA.txt -------------------------------------------------------------------------------- /go.mahalanobis/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/go.mahalanobis/LICENSE -------------------------------------------------------------------------------- /go.mahalanobis/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/go.mahalanobis/README.txt -------------------------------------------------------------------------------- /go.mahalanobis/mahalanobis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/go.mahalanobis/mahalanobis.go -------------------------------------------------------------------------------- /go.mahalanobis/mahalanobis_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/go.mahalanobis/mahalanobis_test.go -------------------------------------------------------------------------------- /go.matrix/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/go.matrix/AUTHORS -------------------------------------------------------------------------------- /go.matrix/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/go.matrix/LICENSE -------------------------------------------------------------------------------- /go.matrix/README: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /go.matrix/arithmetic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/go.matrix/arithmetic.go -------------------------------------------------------------------------------- /go.matrix/dense.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/go.matrix/dense.go -------------------------------------------------------------------------------- /go.matrix/dense_arithmetic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/go.matrix/dense_arithmetic.go -------------------------------------------------------------------------------- /go.matrix/dense_basic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/go.matrix/dense_basic.go -------------------------------------------------------------------------------- /go.matrix/dense_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/go.matrix/dense_data.go -------------------------------------------------------------------------------- /go.matrix/dense_decomp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/go.matrix/dense_decomp.go -------------------------------------------------------------------------------- /go.matrix/dense_eigen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/go.matrix/dense_eigen.go -------------------------------------------------------------------------------- /go.matrix/dense_svd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/go.matrix/dense_svd.go -------------------------------------------------------------------------------- /go.matrix/dense_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/go.matrix/dense_test.go -------------------------------------------------------------------------------- /go.matrix/densebench_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/go.matrix/densebench_test.go -------------------------------------------------------------------------------- /go.matrix/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/go.matrix/error.go -------------------------------------------------------------------------------- /go.matrix/matrix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/go.matrix/matrix.go -------------------------------------------------------------------------------- /go.matrix/matrix_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/go.matrix/matrix_test.go -------------------------------------------------------------------------------- /go.matrix/pivot.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/go.matrix/pivot.go -------------------------------------------------------------------------------- /go.matrix/pivot_arithmetic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/go.matrix/pivot_arithmetic.go -------------------------------------------------------------------------------- /go.matrix/pivot_basic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/go.matrix/pivot_basic.go -------------------------------------------------------------------------------- /go.matrix/pivot_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/go.matrix/pivot_test.go -------------------------------------------------------------------------------- /go.matrix/sparse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/go.matrix/sparse.go -------------------------------------------------------------------------------- /go.matrix/sparse_arithmetic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/go.matrix/sparse_arithmetic.go -------------------------------------------------------------------------------- /go.matrix/sparse_basic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/go.matrix/sparse_basic.go -------------------------------------------------------------------------------- /go.matrix/sparse_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/go.matrix/sparse_test.go -------------------------------------------------------------------------------- /go.matrix/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/go.matrix/util.go -------------------------------------------------------------------------------- /linalg/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/linalg/.gitignore -------------------------------------------------------------------------------- /linalg/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/linalg/COPYING -------------------------------------------------------------------------------- /linalg/COPYING.GPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/linalg/COPYING.GPL -------------------------------------------------------------------------------- /linalg/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/linalg/README -------------------------------------------------------------------------------- /linalg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/linalg/README.md -------------------------------------------------------------------------------- /linalg/blas/all_complex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/linalg/blas/all_complex.go -------------------------------------------------------------------------------- /linalg/blas/all_float.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/linalg/blas/all_float.go -------------------------------------------------------------------------------- /linalg/blas/blas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/linalg/blas/blas.h -------------------------------------------------------------------------------- /linalg/blas/blas_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/linalg/blas/blas_test.go -------------------------------------------------------------------------------- /linalg/blas/cgo_complex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/linalg/blas/cgo_complex.go -------------------------------------------------------------------------------- /linalg/blas/cgo_double.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/linalg/blas/cgo_double.go -------------------------------------------------------------------------------- /linalg/blas/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/linalg/blas/doc.go -------------------------------------------------------------------------------- /linalg/blas/indexcheck.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/linalg/blas/indexcheck.go -------------------------------------------------------------------------------- /linalg/blas/level1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/linalg/blas/level1.go -------------------------------------------------------------------------------- /linalg/blas/level2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/linalg/blas/level2.go -------------------------------------------------------------------------------- /linalg/blas/level3.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/linalg/blas/level3.go -------------------------------------------------------------------------------- /linalg/consts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/linalg/consts.go -------------------------------------------------------------------------------- /linalg/indexes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/linalg/indexes.go -------------------------------------------------------------------------------- /linalg/lapack/acent_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/linalg/lapack/acent_test.go -------------------------------------------------------------------------------- /mathutil/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/mathutil/AUTHORS -------------------------------------------------------------------------------- /mathutil/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/mathutil/CONTRIBUTORS -------------------------------------------------------------------------------- /mathutil/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/mathutil/LICENSE -------------------------------------------------------------------------------- /mathutil/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/mathutil/Makefile -------------------------------------------------------------------------------- /mathutil/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/mathutil/README -------------------------------------------------------------------------------- /mathutil/all_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/mathutil/all_test.go -------------------------------------------------------------------------------- /mathutil/bits.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/mathutil/bits.go -------------------------------------------------------------------------------- /mathutil/envelope.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/mathutil/envelope.go -------------------------------------------------------------------------------- /mathutil/example/.gitignore: -------------------------------------------------------------------------------- 1 | example 2 | Makefile 3 | -------------------------------------------------------------------------------- /mathutil/example/example.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/mathutil/example/example.go -------------------------------------------------------------------------------- /mathutil/example2/.gitignore: -------------------------------------------------------------------------------- 1 | example2 2 | Makefile 3 | -------------------------------------------------------------------------------- /mathutil/example2/example2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/mathutil/example2/example2.go -------------------------------------------------------------------------------- /mathutil/example3/.gitignore: -------------------------------------------------------------------------------- 1 | example3 2 | Makefile 3 | -------------------------------------------------------------------------------- /mathutil/example3/example3.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/mathutil/example3/example3.go -------------------------------------------------------------------------------- /mathutil/example4/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/mathutil/example4/main.go -------------------------------------------------------------------------------- /mathutil/example4/results: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/mathutil/example4/results -------------------------------------------------------------------------------- /mathutil/ff/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/mathutil/ff/main.go -------------------------------------------------------------------------------- /mathutil/mathutil.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/mathutil/mathutil.go -------------------------------------------------------------------------------- /mathutil/mersenne/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/mathutil/mersenne/AUTHORS -------------------------------------------------------------------------------- /mathutil/mersenne/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/mathutil/mersenne/CONTRIBUTORS -------------------------------------------------------------------------------- /mathutil/mersenne/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/mathutil/mersenne/LICENSE -------------------------------------------------------------------------------- /mathutil/mersenne/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/mathutil/mersenne/Makefile -------------------------------------------------------------------------------- /mathutil/mersenne/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/mathutil/mersenne/README -------------------------------------------------------------------------------- /mathutil/mersenne/all_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/mathutil/mersenne/all_test.go -------------------------------------------------------------------------------- /mathutil/mersenne/mersenne.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/mathutil/mersenne/mersenne.go -------------------------------------------------------------------------------- /mathutil/nist-sts-2-1-1-report: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/mathutil/nist-sts-2-1-1-report -------------------------------------------------------------------------------- /mathutil/permute.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/mathutil/permute.go -------------------------------------------------------------------------------- /mathutil/primes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/mathutil/primes.go -------------------------------------------------------------------------------- /mathutil/rat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/mathutil/rat.go -------------------------------------------------------------------------------- /mathutil/rnd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/mathutil/rnd.go -------------------------------------------------------------------------------- /mathutil/tables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/mathutil/tables.go -------------------------------------------------------------------------------- /mathutil/test_deps.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/mathutil/test_deps.go -------------------------------------------------------------------------------- /matops/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/matops/.gitignore -------------------------------------------------------------------------------- /matops/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/matops/COPYING -------------------------------------------------------------------------------- /matops/COPYING.GPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/matops/COPYING.GPL -------------------------------------------------------------------------------- /matops/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/matops/README.md -------------------------------------------------------------------------------- /matops/banded.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/matops/banded.go -------------------------------------------------------------------------------- /matops/calgo/calgo_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/matops/calgo/calgo_test.go -------------------------------------------------------------------------------- /matops/calgo/cmops.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/matops/calgo/cmops.go -------------------------------------------------------------------------------- /matops/calgo/cmops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/matops/calgo/cmops.h -------------------------------------------------------------------------------- /matops/calgo/colcpy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/matops/calgo/colcpy.h -------------------------------------------------------------------------------- /matops/calgo/dmmat_gemm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/matops/calgo/dmmat_gemm.c -------------------------------------------------------------------------------- /matops/calgo/dmmat_plus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/matops/calgo/dmmat_plus.c -------------------------------------------------------------------------------- /matops/calgo/dmmat_rank.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/matops/calgo/dmmat_rank.c -------------------------------------------------------------------------------- /matops/calgo/dmmat_solve.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/matops/calgo/dmmat_solve.c -------------------------------------------------------------------------------- /matops/calgo/dmmat_symm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/matops/calgo/dmmat_symm.c -------------------------------------------------------------------------------- /matops/calgo/dmmat_trid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/matops/calgo/dmmat_trid.c -------------------------------------------------------------------------------- /matops/calgo/dmvec_gemv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/matops/calgo/dmvec_gemv.c -------------------------------------------------------------------------------- /matops/calgo/dmvec_rank.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/matops/calgo/dmvec_rank.c -------------------------------------------------------------------------------- /matops/calgo/dmvec_solve.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/matops/calgo/dmvec_solve.c -------------------------------------------------------------------------------- /matops/calgo/dmvec_trid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/matops/calgo/dmvec_trid.c -------------------------------------------------------------------------------- /matops/calgo/dvec_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/matops/calgo/dvec_util.c -------------------------------------------------------------------------------- /matops/calgo/inner_axpy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/matops/calgo/inner_axpy.h -------------------------------------------------------------------------------- /matops/calgo/inner_ddot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/matops/calgo/inner_ddot.h -------------------------------------------------------------------------------- /matops/calgo/inner_ddot_trans.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/matops/calgo/inner_ddot_trans.h -------------------------------------------------------------------------------- /matops/calgo/inner_dot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/matops/calgo/inner_dot.h -------------------------------------------------------------------------------- /matops/calgo/inner_vec_axpy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/matops/calgo/inner_vec_axpy.h -------------------------------------------------------------------------------- /matops/calgo/inner_vec_dot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/matops/calgo/inner_vec_dot.h -------------------------------------------------------------------------------- /matops/calgo/removed.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/matops/calgo/removed.go -------------------------------------------------------------------------------- /matops/calgo/tmult_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/matops/calgo/tmult_test.go -------------------------------------------------------------------------------- /matops/calgo/trank_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/matops/calgo/trank_test.go -------------------------------------------------------------------------------- /matops/calgo/tsolve_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/matops/calgo/tsolve_test.go -------------------------------------------------------------------------------- /matops/calgo/ttrm_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/matops/calgo/ttrm_test.go -------------------------------------------------------------------------------- /matops/calgo/vec_scale.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/matops/calgo/vec_scale.c -------------------------------------------------------------------------------- /matops/chol.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/matops/chol.go -------------------------------------------------------------------------------- /matops/chol_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/matops/chol_test.go -------------------------------------------------------------------------------- /matops/decomp_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/matops/decomp_test.go -------------------------------------------------------------------------------- /matops/deprec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/matops/deprec.go -------------------------------------------------------------------------------- /matops/diag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/matops/diag.go -------------------------------------------------------------------------------- /matops/house.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/matops/house.go -------------------------------------------------------------------------------- /matops/ldl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/matops/ldl.go -------------------------------------------------------------------------------- /matops/ldl_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/matops/ldl_test.go -------------------------------------------------------------------------------- /matops/ldlbk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/matops/ldlbk.go -------------------------------------------------------------------------------- /matops/ldlbkl_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/matops/ldlbkl_test.go -------------------------------------------------------------------------------- /matops/ldlbks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/matops/ldlbks.go -------------------------------------------------------------------------------- /matops/ldlbku_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/matops/ldlbku_test.go -------------------------------------------------------------------------------- /matops/ldlnp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/matops/ldlnp.go -------------------------------------------------------------------------------- /matops/lu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/matops/lu.go -------------------------------------------------------------------------------- /matops/lu_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/matops/lu_test.go -------------------------------------------------------------------------------- /matops/mmult.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/matops/mmult.go -------------------------------------------------------------------------------- /matops/mvec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/matops/mvec.go -------------------------------------------------------------------------------- /matops/norm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/matops/norm.go -------------------------------------------------------------------------------- /matops/partition.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/matops/partition.go -------------------------------------------------------------------------------- /matops/pivot.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/matops/pivot.go -------------------------------------------------------------------------------- /matops/qr_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/matops/qr_test.go -------------------------------------------------------------------------------- /matops/qrwy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/matops/qrwy.go -------------------------------------------------------------------------------- /matops/qrwyk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/matops/qrwyk.go -------------------------------------------------------------------------------- /matops/qrwym.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/matops/qrwym.go -------------------------------------------------------------------------------- /matops/simple_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/matops/simple_test.go -------------------------------------------------------------------------------- /matops/test/mmperf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/matops/test/mmperf.go -------------------------------------------------------------------------------- /matops/test/mvperf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/matops/test/mvperf.go -------------------------------------------------------------------------------- /matops/test/notrans.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/matops/test/notrans.png -------------------------------------------------------------------------------- /matops/test/parallel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/matops/test/parallel.png -------------------------------------------------------------------------------- /matops/test/perf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/matops/test/perf.py -------------------------------------------------------------------------------- /matops/test/perf_chol.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/matops/test/perf_chol.go -------------------------------------------------------------------------------- /matops/test/perf_ldl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/matops/test/perf_ldl.go -------------------------------------------------------------------------------- /matops/test/perf_ldlbk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/matops/test/perf_ldlbk.go -------------------------------------------------------------------------------- /matops/test/perf_lu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/matops/test/perf_lu.go -------------------------------------------------------------------------------- /matops/test/perf_qr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/matops/test/perf_qr.go -------------------------------------------------------------------------------- /matops/test/symperf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/matops/test/symperf.go -------------------------------------------------------------------------------- /matops/test/transa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/matops/test/transa.png -------------------------------------------------------------------------------- /matops/tri.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/matops/tri.go -------------------------------------------------------------------------------- /matops/trinv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/matops/trinv.go -------------------------------------------------------------------------------- /matops/trinv_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/matops/trinv_test.go -------------------------------------------------------------------------------- /matrix/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/matrix/.gitignore -------------------------------------------------------------------------------- /matrix/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/matrix/COPYING -------------------------------------------------------------------------------- /matrix/COPYING.GPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/matrix/COPYING.GPL -------------------------------------------------------------------------------- /matrix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/matrix/README.md -------------------------------------------------------------------------------- /matrix/bool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/matrix/bool.go -------------------------------------------------------------------------------- /matrix/calgo/calgo_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/matrix/calgo/calgo_test.go -------------------------------------------------------------------------------- /matrix/calgo/cmult.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/matrix/calgo/cmult.go -------------------------------------------------------------------------------- /matrix/calgo/matmult.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/matrix/calgo/matmult.c -------------------------------------------------------------------------------- /matrix/cdense.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/matrix/cdense.go -------------------------------------------------------------------------------- /matrix/cdense_bool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/matrix/cdense_bool.go -------------------------------------------------------------------------------- /matrix/cdense_math.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/matrix/cdense_math.go -------------------------------------------------------------------------------- /matrix/cdense_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/matrix/cdense_string.go -------------------------------------------------------------------------------- /matrix/cdense_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/matrix/cdense_test.go -------------------------------------------------------------------------------- /matrix/cmath/math.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/matrix/cmath/math.go -------------------------------------------------------------------------------- /matrix/cmath/math_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/matrix/cmath/math_test.go -------------------------------------------------------------------------------- /matrix/dense.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/matrix/dense.go -------------------------------------------------------------------------------- /matrix/dense_bool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/matrix/dense_bool.go -------------------------------------------------------------------------------- /matrix/dense_depreceated.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/matrix/dense_depreceated.go -------------------------------------------------------------------------------- /matrix/dense_math.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/matrix/dense_math.go -------------------------------------------------------------------------------- /matrix/dense_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/matrix/dense_string.go -------------------------------------------------------------------------------- /matrix/dense_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/matrix/dense_test.go -------------------------------------------------------------------------------- /matrix/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/matrix/error.go -------------------------------------------------------------------------------- /matrix/math.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/matrix/math.go -------------------------------------------------------------------------------- /matrix/matrix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/matrix/matrix.go -------------------------------------------------------------------------------- /mt19937_64/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/mt19937_64/README.md -------------------------------------------------------------------------------- /mt19937_64/mt19937_64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/mt19937_64/mt19937_64.go -------------------------------------------------------------------------------- /paicehusk/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /paicehusk/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/paicehusk/LICENSE -------------------------------------------------------------------------------- /paicehusk/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/paicehusk/README.md -------------------------------------------------------------------------------- /paicehusk/stemmer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/paicehusk/stemmer.go -------------------------------------------------------------------------------- /paicehusk/stemmer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/paicehusk/stemmer_test.go -------------------------------------------------------------------------------- /polyclip-go/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | notifications: 3 | email: false 4 | -------------------------------------------------------------------------------- /polyclip-go/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/polyclip-go/README.md -------------------------------------------------------------------------------- /polyclip-go/bugs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/polyclip-go/bugs_test.go -------------------------------------------------------------------------------- /polyclip-go/clipper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/polyclip-go/clipper.go -------------------------------------------------------------------------------- /polyclip-go/connector.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/polyclip-go/connector.go -------------------------------------------------------------------------------- /polyclip-go/connector_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/polyclip-go/connector_test.go -------------------------------------------------------------------------------- /polyclip-go/endpoint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/polyclip-go/endpoint.go -------------------------------------------------------------------------------- /polyclip-go/endpoint_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/polyclip-go/endpoint_test.go -------------------------------------------------------------------------------- /polyclip-go/eventqueue.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/polyclip-go/eventqueue.go -------------------------------------------------------------------------------- /polyclip-go/geom.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/polyclip-go/geom.go -------------------------------------------------------------------------------- /polyclip-go/geom_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/polyclip-go/geom_test.go -------------------------------------------------------------------------------- /polyclip-go/pointchain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/polyclip-go/pointchain.go -------------------------------------------------------------------------------- /polyclip-go/pointchain_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/polyclip-go/pointchain_test.go -------------------------------------------------------------------------------- /polyclip-go/polyutil/draw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/polyclip-go/polyutil/draw.go -------------------------------------------------------------------------------- /polyclip-go/polyutil/draw_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/polyclip-go/polyutil/draw_test.go -------------------------------------------------------------------------------- /polyclip-go/polyutil/encdec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/polyclip-go/polyutil/encdec.go -------------------------------------------------------------------------------- /polyclip-go/polyutil/encdec_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/polyclip-go/polyutil/encdec_test.go -------------------------------------------------------------------------------- /polyclip-go/sweepline.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/polyclip-go/sweepline.go -------------------------------------------------------------------------------- /polyclip-go/sweepline_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/polyclip-go/sweepline_test.go -------------------------------------------------------------------------------- /polyclip-go/test/drawpolys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/polyclip-go/test/drawpolys.go -------------------------------------------------------------------------------- /porterstemmer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/porterstemmer/LICENSE -------------------------------------------------------------------------------- /porterstemmer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/porterstemmer/README.md -------------------------------------------------------------------------------- /porterstemmer/porterstemmer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/porterstemmer/porterstemmer.go -------------------------------------------------------------------------------- /porterstemmer/porterstemmer_contains_vowel_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/porterstemmer/porterstemmer_contains_vowel_test.go -------------------------------------------------------------------------------- /porterstemmer/porterstemmer_fixes_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/porterstemmer/porterstemmer_fixes_test.go -------------------------------------------------------------------------------- /porterstemmer/porterstemmer_has_repeat_double_consonant_suffix_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/porterstemmer/porterstemmer_has_repeat_double_consonant_suffix_test.go -------------------------------------------------------------------------------- /porterstemmer/porterstemmer_has_suffix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/porterstemmer/porterstemmer_has_suffix.go -------------------------------------------------------------------------------- /porterstemmer/porterstemmer_is_consontant_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/porterstemmer/porterstemmer_is_consontant_test.go -------------------------------------------------------------------------------- /porterstemmer/porterstemmer_measure_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/porterstemmer/porterstemmer_measure_test.go -------------------------------------------------------------------------------- /porterstemmer/porterstemmer_stem_string_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/porterstemmer/porterstemmer_stem_string_test.go -------------------------------------------------------------------------------- /porterstemmer/porterstemmer_stem_without_lower_casing_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/porterstemmer/porterstemmer_stem_without_lower_casing_test.go -------------------------------------------------------------------------------- /porterstemmer/porterstemmer_step1a_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/porterstemmer/porterstemmer_step1a_test.go -------------------------------------------------------------------------------- /porterstemmer/porterstemmer_step1b_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/porterstemmer/porterstemmer_step1b_test.go -------------------------------------------------------------------------------- /porterstemmer/porterstemmer_step1c_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/porterstemmer/porterstemmer_step1c_test.go -------------------------------------------------------------------------------- /porterstemmer/porterstemmer_step2_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/porterstemmer/porterstemmer_step2_test.go -------------------------------------------------------------------------------- /porterstemmer/porterstemmer_step3_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/porterstemmer/porterstemmer_step3_test.go -------------------------------------------------------------------------------- /porterstemmer/porterstemmer_step4_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/porterstemmer/porterstemmer_step4_test.go -------------------------------------------------------------------------------- /porterstemmer/porterstemmer_step5a_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/porterstemmer/porterstemmer_step5a_test.go -------------------------------------------------------------------------------- /porterstemmer/porterstemmer_step5b_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/porterstemmer/porterstemmer_step5b_test.go -------------------------------------------------------------------------------- /pso-go/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/pso-go/LICENSE -------------------------------------------------------------------------------- /pso-go/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/pso-go/README.md -------------------------------------------------------------------------------- /pso-go/particle.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/pso-go/particle.go -------------------------------------------------------------------------------- /pso-go/pso_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/pso-go/pso_test.go -------------------------------------------------------------------------------- /pso-go/solver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/pso-go/solver.go -------------------------------------------------------------------------------- /schoolcalc/.godir: -------------------------------------------------------------------------------- 1 | github.com/the42/schoolcalc 2 | -------------------------------------------------------------------------------- /schoolcalc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/schoolcalc/LICENSE -------------------------------------------------------------------------------- /schoolcalc/Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/schoolcalc/Procfile -------------------------------------------------------------------------------- /schoolcalc/Procfile.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/schoolcalc/Procfile.dev -------------------------------------------------------------------------------- /schoolcalc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/schoolcalc/README.md -------------------------------------------------------------------------------- /schoolcalc/TODO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/schoolcalc/TODO.txt -------------------------------------------------------------------------------- /schoolcalc/schoolcalc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/schoolcalc/schoolcalc/README.md -------------------------------------------------------------------------------- /schoolcalc/schoolcalc/schoolcalc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/schoolcalc/schoolcalc/schoolcalc.go -------------------------------------------------------------------------------- /schoolcalc/schoolcalc/schoolcalc_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/schoolcalc/schoolcalc/schoolcalc_test.go -------------------------------------------------------------------------------- /schoolcalc/sdivcon/sdivcon.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/schoolcalc/sdivcon/sdivcon.go -------------------------------------------------------------------------------- /schoolcalc/webzapfen/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/schoolcalc/webzapfen/config.go -------------------------------------------------------------------------------- /schoolcalc/webzapfen/config.live.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/schoolcalc/webzapfen/config.live.json -------------------------------------------------------------------------------- /schoolcalc/webzapfen/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/schoolcalc/webzapfen/main.go -------------------------------------------------------------------------------- /schoolcalc/webzapfen/pages/en.about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/schoolcalc/webzapfen/pages/en.about.html -------------------------------------------------------------------------------- /schoolcalc/webzapfen/static/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/schoolcalc/webzapfen/static/css/styles.css -------------------------------------------------------------------------------- /schoolcalc/webzapfen/static/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/schoolcalc/webzapfen/static/images/bg.png -------------------------------------------------------------------------------- /schoolcalc/webzapfen/static/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/schoolcalc/webzapfen/static/images/favicon.png -------------------------------------------------------------------------------- /schoolcalc/webzapfen/static/images/footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/schoolcalc/webzapfen/static/images/footer.png -------------------------------------------------------------------------------- /schoolcalc/webzapfen/static/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/schoolcalc/webzapfen/static/images/logo.png -------------------------------------------------------------------------------- /schoolcalc/webzapfen/templates/en.division.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/schoolcalc/webzapfen/templates/en.division.tpl -------------------------------------------------------------------------------- /schoolcalc/webzapfen/templates/en.excercise.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/schoolcalc/webzapfen/templates/en.excercise.tpl -------------------------------------------------------------------------------- /schoolcalc/webzapfen/templates/en.index.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/schoolcalc/webzapfen/templates/en.index.tpl -------------------------------------------------------------------------------- /schoolcalc/webzapfen/templates/en.zapfen.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/schoolcalc/webzapfen/templates/en.zapfen.tpl -------------------------------------------------------------------------------- /schoolcalc/webzapfen/templates/root.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/schoolcalc/webzapfen/templates/root.tpl -------------------------------------------------------------------------------- /schoolcalc/webzapfen/webzapfen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/schoolcalc/webzapfen/webzapfen.go -------------------------------------------------------------------------------- /sortutil/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/sortutil/AUTHORS -------------------------------------------------------------------------------- /sortutil/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/sortutil/CONTRIBUTORS -------------------------------------------------------------------------------- /sortutil/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/sortutil/LICENSE -------------------------------------------------------------------------------- /sortutil/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/sortutil/Makefile -------------------------------------------------------------------------------- /sortutil/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/sortutil/README -------------------------------------------------------------------------------- /sortutil/all_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/sortutil/all_test.go -------------------------------------------------------------------------------- /sortutil/sortutil.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/sortutil/sortutil.go -------------------------------------------------------------------------------- /stat/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | go: 1.1 3 | 4 | script: 5 | - go test -v 6 | -------------------------------------------------------------------------------- /stat/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/stat/COPYING -------------------------------------------------------------------------------- /stat/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/stat/README.md -------------------------------------------------------------------------------- /stat/absdev.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/stat/absdev.go -------------------------------------------------------------------------------- /stat/benchmark_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/stat/benchmark_test.go -------------------------------------------------------------------------------- /stat/covariance.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/stat/covariance.go -------------------------------------------------------------------------------- /stat/example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/stat/example_test.go -------------------------------------------------------------------------------- /stat/float64_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/stat/float64_test.go -------------------------------------------------------------------------------- /stat/int_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/stat/int_test.go -------------------------------------------------------------------------------- /stat/kurtosis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/stat/kurtosis.go -------------------------------------------------------------------------------- /stat/lag-1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/stat/lag-1.go -------------------------------------------------------------------------------- /stat/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/stat/main_test.go -------------------------------------------------------------------------------- /stat/mean.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/stat/mean.go -------------------------------------------------------------------------------- /stat/median.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/stat/median.go -------------------------------------------------------------------------------- /stat/minmax.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/stat/minmax.go -------------------------------------------------------------------------------- /stat/nist_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/stat/nist_test.go -------------------------------------------------------------------------------- /stat/pvariance.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/stat/pvariance.go -------------------------------------------------------------------------------- /stat/quantiles.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/stat/quantiles.go -------------------------------------------------------------------------------- /stat/skew.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/stat/skew.go -------------------------------------------------------------------------------- /stat/ttest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/stat/ttest.go -------------------------------------------------------------------------------- /stat/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/stat/types.go -------------------------------------------------------------------------------- /stat/variance.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/stat/variance.go -------------------------------------------------------------------------------- /stat/wabsdev.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/stat/wabsdev.go -------------------------------------------------------------------------------- /stat/wkurtosis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/stat/wkurtosis.go -------------------------------------------------------------------------------- /stat/wmean.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/stat/wmean.go -------------------------------------------------------------------------------- /stat/wskew.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/stat/wskew.go -------------------------------------------------------------------------------- /stat/wvariance.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/stat/wvariance.go -------------------------------------------------------------------------------- /units/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/units/.gitignore -------------------------------------------------------------------------------- /units/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/units/LICENSE -------------------------------------------------------------------------------- /units/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/units/README.md -------------------------------------------------------------------------------- /units/angle.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/units/angle.go -------------------------------------------------------------------------------- /units/angular_velocity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/units/angular_velocity.go -------------------------------------------------------------------------------- /units/coordinate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/units/coordinate.go -------------------------------------------------------------------------------- /units/distance.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/units/distance.go -------------------------------------------------------------------------------- /units/units.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/units/units.go -------------------------------------------------------------------------------- /units/units_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/units/units_test.go -------------------------------------------------------------------------------- /units/velocity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/units/velocity.go -------------------------------------------------------------------------------- /vector/.gitignore: -------------------------------------------------------------------------------- 1 | *.sw[po] 2 | -------------------------------------------------------------------------------- /vector/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/vector/COPYING -------------------------------------------------------------------------------- /vector/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/vector/README.md -------------------------------------------------------------------------------- /vector/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/vector/errors.go -------------------------------------------------------------------------------- /vector/header: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/vector/header -------------------------------------------------------------------------------- /vector/vector.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/vector/vector.go -------------------------------------------------------------------------------- /vector/vector_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/algorithm/HEAD/vector/vector_test.go --------------------------------------------------------------------------------