├── .gitignore ├── LICENSE ├── README.md ├── __init__.py ├── compute-bounds.py ├── parse_matpower.py ├── power_data.py └── qc_lib.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccoffrin/ac-opf-bounds/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccoffrin/ac-opf-bounds/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccoffrin/ac-opf-bounds/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /compute-bounds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccoffrin/ac-opf-bounds/HEAD/compute-bounds.py -------------------------------------------------------------------------------- /parse_matpower.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccoffrin/ac-opf-bounds/HEAD/parse_matpower.py -------------------------------------------------------------------------------- /power_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccoffrin/ac-opf-bounds/HEAD/power_data.py -------------------------------------------------------------------------------- /qc_lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccoffrin/ac-opf-bounds/HEAD/qc_lib.py --------------------------------------------------------------------------------