Pinned Repositories
election-checker
Scripts to retrieve and validate lists of registered voters in the US.
election-fraud-national
Compares the voter turnout vs. age curves from various states.
election-fraud-nevada
election-fraud-oklahoma
fast-k-opt
Fast quadtree-based k-opt for the symmetric Euclidean traveling salesman problem. Faster than state-of-the-art best-improvement k-opt.
forward-k-opt
Lin-Kernighan-style k-opt TSP solver that uses a quad tree for dynamic search. Only "forward swaps" (a subset of typical LK moves) are implemented.
lbm_matlab
Lattice Boltzmann Method (LBM) codes in MATLAB for educational purposes, based on codes in the textbook by A. A. Mohamad.
lbmpp
lbmpp_old
A C++ LBM code.
nmf
C++ implementation of non-negative matrix factorization.
rlee32's Repositories
rlee32/election-fraud-national
Compares the voter turnout vs. age curves from various states.
rlee32/forward-k-opt
Lin-Kernighan-style k-opt TSP solver that uses a quad tree for dynamic search. Only "forward swaps" (a subset of typical LK moves) are implemented.
rlee32/election-fraud-nevada
rlee32/election-fraud-oklahoma
rlee32/election-fraud-pennsylvania
Proof of voting machine fraud in Pennsylvania by exposing the relationship between voter turnout and age.
rlee32/lkhq
A Lin-Kernighan-Helsgaun-style TSP solver, with quadtrees for efficiency.
rlee32/lkl
Lin-Kernighan-Lee: a Lin-Kernighan-style TSP solver with a quadtree-based dynamic candidate set.
rlee32/election-fraud-alaska
rlee32/election-fraud-colorado
rlee32/election-fraud-florida
rlee32/election-fraud-idaho
rlee32/election-fraud-missouri
rlee32/election-fraud-new-york
rlee32/election-fraud-north-carolina
rlee32/election-fraud-ohio
Manually reproducible proof of voter fraud in the state of Ohio.
rlee32/fraud-finder-pa
rlee32/multicopter-print
OpenSCAD implementation of a multicopter. Configurable design.
rlee32/point-quadtree
C++ implementation of a quadtree that holds points.
rlee32/router
rlee32/segment-builder
Python test implementation for discerning line segments in images.
rlee32/segment-quadtree
c++ implementation of a quadtree that holds line segments.
rlee32/shenanigans-2020
rlee32/tsp-fast-2-opt-geo
Fast 2-Opt TSP solver for geographic (lat, lon) instances. Uses the google S2 library to improve efficiency.
rlee32/tsp-min-ch
A construction heuristic (CH) that tries to introduce minimally-sized edges first.
rlee32/tsp-mst-2d
Creates a minimum spanning tree in the style of Kruskal, but using a quadtree to improve efficiency.
rlee32/tsp-mst-naive
Standard minimum spanning tree for TSP instances implemented in python. Meant for experimentation and visualization of small instances.
rlee32/tsp-mst-opt
An experimental tsp solver utilizing MSTs as a base for specialized k-opt moves.
rlee32/tsp-mst-plotter
Plots TSP tours and MST graphs.
rlee32/tsp-python
Monorepo for Euclidean, symmetric Traveling Salesman Problem solvers written in Python.
rlee32/tsp-tour-inflation
Utility to add points into a tour that do not increase overall tour length. Intended for tour perturbation in local optimization schemes.