├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── da.c ├── da.h ├── example_2frame.py ├── example_3frame.py ├── example_multiview.py ├── example_simplest.py ├── mhtdaClink.py ├── murtysplitDense.c ├── murtysplitDense.h ├── murtysplitSparse.c ├── murtysplitSparse.h ├── otherimplementations ├── __init__.py ├── daGibbs.py └── slowmurty.py ├── previous python implementation ├── README.md ├── daDense.py ├── daSparse.py ├── example_2frame.py ├── example_3frame.py ├── heap.py ├── murtysplitLookaheadDense.py ├── murtysplitLookaheadSparse.py ├── murtysplitSimple.py ├── outputSimple.py ├── sparsity.py ├── sspDense.py └── sspSparse.py ├── queue.c ├── queue.h ├── sparsematrix.h ├── sspDense.c ├── sspDense.h ├── sspSparse.c ├── sspSparse.h ├── subproblem.c └── subproblem.h /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | *.so 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motrom/fastmurty/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motrom/fastmurty/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motrom/fastmurty/HEAD/README.md -------------------------------------------------------------------------------- /da.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motrom/fastmurty/HEAD/da.c -------------------------------------------------------------------------------- /da.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motrom/fastmurty/HEAD/da.h -------------------------------------------------------------------------------- /example_2frame.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motrom/fastmurty/HEAD/example_2frame.py -------------------------------------------------------------------------------- /example_3frame.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motrom/fastmurty/HEAD/example_3frame.py -------------------------------------------------------------------------------- /example_multiview.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motrom/fastmurty/HEAD/example_multiview.py -------------------------------------------------------------------------------- /example_simplest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motrom/fastmurty/HEAD/example_simplest.py -------------------------------------------------------------------------------- /mhtdaClink.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motrom/fastmurty/HEAD/mhtdaClink.py -------------------------------------------------------------------------------- /murtysplitDense.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motrom/fastmurty/HEAD/murtysplitDense.c -------------------------------------------------------------------------------- /murtysplitDense.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motrom/fastmurty/HEAD/murtysplitDense.h -------------------------------------------------------------------------------- /murtysplitSparse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motrom/fastmurty/HEAD/murtysplitSparse.c -------------------------------------------------------------------------------- /murtysplitSparse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motrom/fastmurty/HEAD/murtysplitSparse.h -------------------------------------------------------------------------------- /otherimplementations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motrom/fastmurty/HEAD/otherimplementations/__init__.py -------------------------------------------------------------------------------- /otherimplementations/daGibbs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motrom/fastmurty/HEAD/otherimplementations/daGibbs.py -------------------------------------------------------------------------------- /otherimplementations/slowmurty.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motrom/fastmurty/HEAD/otherimplementations/slowmurty.py -------------------------------------------------------------------------------- /previous python implementation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motrom/fastmurty/HEAD/previous python implementation/README.md -------------------------------------------------------------------------------- /previous python implementation/daDense.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motrom/fastmurty/HEAD/previous python implementation/daDense.py -------------------------------------------------------------------------------- /previous python implementation/daSparse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motrom/fastmurty/HEAD/previous python implementation/daSparse.py -------------------------------------------------------------------------------- /previous python implementation/example_2frame.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motrom/fastmurty/HEAD/previous python implementation/example_2frame.py -------------------------------------------------------------------------------- /previous python implementation/example_3frame.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motrom/fastmurty/HEAD/previous python implementation/example_3frame.py -------------------------------------------------------------------------------- /previous python implementation/heap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motrom/fastmurty/HEAD/previous python implementation/heap.py -------------------------------------------------------------------------------- /previous python implementation/murtysplitLookaheadDense.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motrom/fastmurty/HEAD/previous python implementation/murtysplitLookaheadDense.py -------------------------------------------------------------------------------- /previous python implementation/murtysplitLookaheadSparse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motrom/fastmurty/HEAD/previous python implementation/murtysplitLookaheadSparse.py -------------------------------------------------------------------------------- /previous python implementation/murtysplitSimple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motrom/fastmurty/HEAD/previous python implementation/murtysplitSimple.py -------------------------------------------------------------------------------- /previous python implementation/outputSimple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motrom/fastmurty/HEAD/previous python implementation/outputSimple.py -------------------------------------------------------------------------------- /previous python implementation/sparsity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motrom/fastmurty/HEAD/previous python implementation/sparsity.py -------------------------------------------------------------------------------- /previous python implementation/sspDense.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motrom/fastmurty/HEAD/previous python implementation/sspDense.py -------------------------------------------------------------------------------- /previous python implementation/sspSparse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motrom/fastmurty/HEAD/previous python implementation/sspSparse.py -------------------------------------------------------------------------------- /queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motrom/fastmurty/HEAD/queue.c -------------------------------------------------------------------------------- /queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motrom/fastmurty/HEAD/queue.h -------------------------------------------------------------------------------- /sparsematrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motrom/fastmurty/HEAD/sparsematrix.h -------------------------------------------------------------------------------- /sspDense.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motrom/fastmurty/HEAD/sspDense.c -------------------------------------------------------------------------------- /sspDense.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motrom/fastmurty/HEAD/sspDense.h -------------------------------------------------------------------------------- /sspSparse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motrom/fastmurty/HEAD/sspSparse.c -------------------------------------------------------------------------------- /sspSparse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motrom/fastmurty/HEAD/sspSparse.h -------------------------------------------------------------------------------- /subproblem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motrom/fastmurty/HEAD/subproblem.c -------------------------------------------------------------------------------- /subproblem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motrom/fastmurty/HEAD/subproblem.h --------------------------------------------------------------------------------