├── .gitignore ├── LICENSE ├── README.md ├── __init__.py ├── benchmarks └── random_qps.py ├── examples └── reluqpth-simple.py ├── reluqp ├── __init__.py ├── classes.py ├── reluqpth.py └── utils.py ├── results └── random_qp_benchmark copy.png └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboticExplorationLab/ReLUQP-py/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboticExplorationLab/ReLUQP-py/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboticExplorationLab/ReLUQP-py/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /benchmarks/random_qps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboticExplorationLab/ReLUQP-py/HEAD/benchmarks/random_qps.py -------------------------------------------------------------------------------- /examples/reluqpth-simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboticExplorationLab/ReLUQP-py/HEAD/examples/reluqpth-simple.py -------------------------------------------------------------------------------- /reluqp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /reluqp/classes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboticExplorationLab/ReLUQP-py/HEAD/reluqp/classes.py -------------------------------------------------------------------------------- /reluqp/reluqpth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboticExplorationLab/ReLUQP-py/HEAD/reluqp/reluqpth.py -------------------------------------------------------------------------------- /reluqp/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboticExplorationLab/ReLUQP-py/HEAD/reluqp/utils.py -------------------------------------------------------------------------------- /results/random_qp_benchmark copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboticExplorationLab/ReLUQP-py/HEAD/results/random_qp_benchmark copy.png -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboticExplorationLab/ReLUQP-py/HEAD/setup.py --------------------------------------------------------------------------------