├── .gitignore ├── AUTHORS.rst ├── COPYING ├── MANIFEST.in ├── Makefile ├── README.rst ├── doc ├── Makefile ├── README ├── _templates │ ├── class.rst │ └── function.rst ├── api │ ├── modules.rst │ ├── pyprox.rst │ └── pyprox.tests.rst ├── conf.py ├── images │ └── blank_image.png ├── index.rst ├── make.bat ├── overview.rst ├── sphinxext │ ├── numpy_ext │ │ ├── __init__.py │ │ ├── docscrape.py │ │ ├── docscrape_sphinx.py │ │ └── numpydoc.py │ └── sphinx_gallery │ │ ├── __init__.py │ │ ├── _static │ │ ├── broken_example.png │ │ ├── gallery.css │ │ └── no_image.png │ │ ├── backreferences.py │ │ ├── docs_resolv.py │ │ ├── downloads.py │ │ ├── gen_gallery.py │ │ ├── gen_rst.py │ │ ├── notebook.py │ │ └── py_source_parser.py └── user_guide.rst ├── examples ├── README.txt ├── plot_l1_constraints_dr.py ├── plot_l1_lagrangian_fb.py └── plot_tv_denoising_lena.py ├── pyprox ├── __init__.py ├── algorithms.py ├── context.py ├── operators.py ├── tests │ ├── __init__.py │ ├── test_admm.py │ ├── test_douglas_rachford.py │ ├── test_forward_backward.py │ └── test_forward_backward_dual.py └── utils.py └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svaiter/pyprox/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svaiter/pyprox/HEAD/AUTHORS.rst -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svaiter/pyprox/HEAD/COPYING -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svaiter/pyprox/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svaiter/pyprox/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svaiter/pyprox/HEAD/README.rst -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svaiter/pyprox/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svaiter/pyprox/HEAD/doc/README -------------------------------------------------------------------------------- /doc/_templates/class.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svaiter/pyprox/HEAD/doc/_templates/class.rst -------------------------------------------------------------------------------- /doc/_templates/function.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svaiter/pyprox/HEAD/doc/_templates/function.rst -------------------------------------------------------------------------------- /doc/api/modules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svaiter/pyprox/HEAD/doc/api/modules.rst -------------------------------------------------------------------------------- /doc/api/pyprox.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svaiter/pyprox/HEAD/doc/api/pyprox.rst -------------------------------------------------------------------------------- /doc/api/pyprox.tests.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svaiter/pyprox/HEAD/doc/api/pyprox.tests.rst -------------------------------------------------------------------------------- /doc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svaiter/pyprox/HEAD/doc/conf.py -------------------------------------------------------------------------------- /doc/images/blank_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svaiter/pyprox/HEAD/doc/images/blank_image.png -------------------------------------------------------------------------------- /doc/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svaiter/pyprox/HEAD/doc/index.rst -------------------------------------------------------------------------------- /doc/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svaiter/pyprox/HEAD/doc/make.bat -------------------------------------------------------------------------------- /doc/overview.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svaiter/pyprox/HEAD/doc/overview.rst -------------------------------------------------------------------------------- /doc/sphinxext/numpy_ext/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/sphinxext/numpy_ext/docscrape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svaiter/pyprox/HEAD/doc/sphinxext/numpy_ext/docscrape.py -------------------------------------------------------------------------------- /doc/sphinxext/numpy_ext/docscrape_sphinx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svaiter/pyprox/HEAD/doc/sphinxext/numpy_ext/docscrape_sphinx.py -------------------------------------------------------------------------------- /doc/sphinxext/numpy_ext/numpydoc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svaiter/pyprox/HEAD/doc/sphinxext/numpy_ext/numpydoc.py -------------------------------------------------------------------------------- /doc/sphinxext/sphinx_gallery/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svaiter/pyprox/HEAD/doc/sphinxext/sphinx_gallery/__init__.py -------------------------------------------------------------------------------- /doc/sphinxext/sphinx_gallery/_static/broken_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svaiter/pyprox/HEAD/doc/sphinxext/sphinx_gallery/_static/broken_example.png -------------------------------------------------------------------------------- /doc/sphinxext/sphinx_gallery/_static/gallery.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svaiter/pyprox/HEAD/doc/sphinxext/sphinx_gallery/_static/gallery.css -------------------------------------------------------------------------------- /doc/sphinxext/sphinx_gallery/_static/no_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svaiter/pyprox/HEAD/doc/sphinxext/sphinx_gallery/_static/no_image.png -------------------------------------------------------------------------------- /doc/sphinxext/sphinx_gallery/backreferences.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svaiter/pyprox/HEAD/doc/sphinxext/sphinx_gallery/backreferences.py -------------------------------------------------------------------------------- /doc/sphinxext/sphinx_gallery/docs_resolv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svaiter/pyprox/HEAD/doc/sphinxext/sphinx_gallery/docs_resolv.py -------------------------------------------------------------------------------- /doc/sphinxext/sphinx_gallery/downloads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svaiter/pyprox/HEAD/doc/sphinxext/sphinx_gallery/downloads.py -------------------------------------------------------------------------------- /doc/sphinxext/sphinx_gallery/gen_gallery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svaiter/pyprox/HEAD/doc/sphinxext/sphinx_gallery/gen_gallery.py -------------------------------------------------------------------------------- /doc/sphinxext/sphinx_gallery/gen_rst.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svaiter/pyprox/HEAD/doc/sphinxext/sphinx_gallery/gen_rst.py -------------------------------------------------------------------------------- /doc/sphinxext/sphinx_gallery/notebook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svaiter/pyprox/HEAD/doc/sphinxext/sphinx_gallery/notebook.py -------------------------------------------------------------------------------- /doc/sphinxext/sphinx_gallery/py_source_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svaiter/pyprox/HEAD/doc/sphinxext/sphinx_gallery/py_source_parser.py -------------------------------------------------------------------------------- /doc/user_guide.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svaiter/pyprox/HEAD/doc/user_guide.rst -------------------------------------------------------------------------------- /examples/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svaiter/pyprox/HEAD/examples/README.txt -------------------------------------------------------------------------------- /examples/plot_l1_constraints_dr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svaiter/pyprox/HEAD/examples/plot_l1_constraints_dr.py -------------------------------------------------------------------------------- /examples/plot_l1_lagrangian_fb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svaiter/pyprox/HEAD/examples/plot_l1_lagrangian_fb.py -------------------------------------------------------------------------------- /examples/plot_tv_denoising_lena.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svaiter/pyprox/HEAD/examples/plot_tv_denoising_lena.py -------------------------------------------------------------------------------- /pyprox/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svaiter/pyprox/HEAD/pyprox/__init__.py -------------------------------------------------------------------------------- /pyprox/algorithms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svaiter/pyprox/HEAD/pyprox/algorithms.py -------------------------------------------------------------------------------- /pyprox/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svaiter/pyprox/HEAD/pyprox/context.py -------------------------------------------------------------------------------- /pyprox/operators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svaiter/pyprox/HEAD/pyprox/operators.py -------------------------------------------------------------------------------- /pyprox/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyprox/tests/test_admm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svaiter/pyprox/HEAD/pyprox/tests/test_admm.py -------------------------------------------------------------------------------- /pyprox/tests/test_douglas_rachford.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svaiter/pyprox/HEAD/pyprox/tests/test_douglas_rachford.py -------------------------------------------------------------------------------- /pyprox/tests/test_forward_backward.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svaiter/pyprox/HEAD/pyprox/tests/test_forward_backward.py -------------------------------------------------------------------------------- /pyprox/tests/test_forward_backward_dual.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svaiter/pyprox/HEAD/pyprox/tests/test_forward_backward_dual.py -------------------------------------------------------------------------------- /pyprox/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svaiter/pyprox/HEAD/pyprox/utils.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svaiter/pyprox/HEAD/setup.py --------------------------------------------------------------------------------